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

Console commands

activateexternalplatformsipaddress

Command

activateexternalplatformsipaddress <ra-entity> <platform-name> <position>
    Activate SIP address at specified position in an external platform definition
Note This command activates a SIP address in the external platform definition.

Example

To activate the SIP address at position 1 in the external platform definition named VPN-External in the SIS instance named sis:

$ ./sis-console activateexternalplatformsipaddress sis VPN-External 1
Activated SIP address at position 1 in external platform definition VPN-External

activateexternalplatforminaddress

Command

activateexternalplatforminaddress <ra-entity> <platform-name> <position>
    Activate IN SCCP address at specified position in an external platform
definition
Note This command activates an IN address in the external platform definition.

Example

To activate the IN address at position 0 in the external platform definition named VPN-External in the SIS instance name sis:

$ ./sis-console activatexternalplatforminaddress sis VPN-External 0
Activated IN address at position 0 in external platform definition VPN-External

Ant task

activateexternalplatformaddress

Task

<activateexternalplatformaddress extPlatformName="..." type="..." position="..."/>

Examples

To activate the SIP address at position 1 in the external platform definition named VPN-External:

<sis-management>
    <activateexternalplatformaddress extPlatformName="VPN-External" type="sip" position="1"/>
</sis-management>

To activate the IN address at position 0 in the external platform definition named VPN-External:

<sis-management>
    <activateexternalplatformaddress extPlatformName="VPN-External" type="in" position="0"/>
</sis-management>

MBean operations

MBean

activateSIPAddress

Operations

To activate a SIP address in an external platform definition:

public void activateSIPAddress(int position)
    throws InvalidArgumentException, InvalidStateException,
           ManagementException;
Note This operation activates the address at the specified position, from the current list of SIP addresses.

activateINAddress

Operations

To activate an IN address in an external platform definition:

public void activateINAddress(int position)
    throws InvalidArgumentException, InvalidStateException,
           ManagementException;
Note This operation activates the address at the specified position, from the current list of IN addresses.
Previous page Next page
SIS Version 2.5.4