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

Console commands

removeexternalplatformsipaddress

Command

removeexternalplatformsipaddress <ra-entity> <platform-name> <position>
    Remove SIP address at specified position from an external platform definition
Note This command removes a SIP address from the external platform definition.

Example

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

$ ./sis-console removeexternalplatformsipaddress sis VPN-External 1
Removed SIP address at position 1 from external platform definition foo8

removeexternalplatforminaddress

Command

removeexternalplatforminaddress <ra-entity> <platform-name> <position>
    Remove IN SCCP address at specified position from an external platform
definition
Note This command removes an IN SCCP address from the external platform definition.

Example

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

$ ./sis-console removeexternalplatforminaddress sis VPN-External 0
Removed IN address at position 0 from external platform definition VPN-External

Ant task

removeexternalplatformaddress

Task

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

Examples

To remove the SIP address at position 1 from the external platform definition named VPN-External:

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

To remove the IN address at position 0 from the external platform definition named VPN-External:

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

MBean operations

MBean

removeSIPAddress

Operations

To remove a SIP address from an external platform definition:

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

removeINAddress

Operations

To remove an IN address from an external platform definition:

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