To
remove an external address from an external platform definition,
use the following sis-console
commands, Ant task, or related MBean operations.
Console commands
removeexternalplatformaddress
Command |
removeexternalplatformaddress <ra-entity> <platform-name> <position> Remove the address at specified position from an external platform definition |
---|---|
Example |
To remove the address at position $ ./sis-console removeexternalplatformaddress sis VPN-External 1 Removed address at position 1 from external platform definition VPN-External |
Ant task
removeexternalplatformaddress
Task |
<removeexternalplatformaddress extPlatformName="..." position="..."/> |
---|---|
Examples |
To remove the SIP address at position <sis-sip-management> <removeexternalplatformaddress extPlatformName="VPN-External" position="1"/> </sis-sip-management> To remove the IN address at position <sis-in-management> <removeexternalplatformaddress extPlatformName="VPN-External" position="0"/> </sis-in-management> |
MBean operations
MBean |
---|
removeAddress
Operations |
To remove the address at the specified position from an external platform definition: public void removeAddress(int position) throws InvalidArgumentException, ManagementException; |
---|