To add an external address to an external platform definition, use the following sis-console commands, Ant task, or related MBean operations.

Console commands

addexternalplatformsipaddress

Command

addexternalplatformsipaddress <ra-entity> <platform-name> <address> [insert-pos]
    Add a SIP address to an external platform definition, optionally
    inserting the address at a specified position
Note This command adds an external SIP address to the external platform definition. The address must be a valid SIP URI string.

Example

To add the external address sip:vpn2.mycompany.com:5060;transport=tcp at position 1 for the external platform definition named VPN-External in the SIS instance named sis:

$ ./sis-console addexternalplatformsipaddress sis VPN-External sip:vpn2.mycompany.com:5060;transport=tcp 1
Added SIP address sip:vpn2.mycompany.com:5060;transport=tcp to external platform definition VPN-External at position 1

addexternalplatforminaddress

Command

addexternalplatforminaddress <ra-entity> <platform-name> <address> [insert-pos]
    Add an IN SCCP address to an external platform definition, optionally
    inserting the address at a specified position
Note This command adds an external IN SCCP address to the external platform definition. The specified address must be described using the correct format.

Example

To add the external address type=c7,ri=pcssn,pc=7,ssn=146 to the end of the current list of IN addresses for the external platform definition named VPN-External in the SIS instance named sis:

$ ./sis-console addexternalplatforminaddress sis VPN-External type=c7,ri=pcssn,pc=7,ssn=146
Added IN address type=c7,ri=pcssn,pc=7,ssn=146 to external platform definition VPN-External

Ant task

addexternalplatformaddress

Task

<addexternalplatformaddress extPlatformName="..." type="..." address="..." position="..."/>

Example

To add the external address sip:vpn2.mycompany.com:5060;transport=tcp at position 1 for the external platform definition named VPN-External:

<sis-management>
    <addexternalplatformaddress
          extPlatformName="VPN-External"
          type="sip"
          address="sip:vpn2.mycompany.com:5060;transport=tcp"
          position="1"/>
</sis-management>

To add the external address type=c7,ri=pcssn,pc=7,ssn=146 to the end of the current list of IN addresses for the external platform definition named VPN-External:

<sis-management>
    <addexternalplatformaddress
        extPlatformName="VPN-External"
        type="in"
        address="type=c7,ri=pcssn,pc=7,ssn=146"/>
</sis-management>

Mbean operations

MBean

addSIPAddress

Operations

To add a SIP address to an external platform definition:

public void addSIPAddress(String address)
    throws NullPointerException, InvalidArgumentException,
           DuplicateAddressException, ManagementException;
Note This operation adds the new address to the end of the current list of SIP addresses.
public void addSIPAddress(String address, int position)
    throws NullPointerException, InvalidArgumentException,
           DuplicateAddressException, ManagementException;
Note This operation adds the new address to the current list of SIP addresses at the specified position.

addINAddress

Operations

To add an IN SCCP address to an external platform definition:

public void addINAddress(String address)
    throws NullPointerException, InvalidArgumentException,
           DuplicateAddressException, ManagementException;
Note This operation adds the new address to the end of the current list of IN addresses.
public void addINAddress(String address, int position)
    throws NullPointerException, InvalidArgumentException,
           DuplicateAddressException, ManagementException;
Note This operation adds the new address to the current list of IN addresses at the specified position.
Previous page Next page
SIS Version 2.5.4