To
reposition a network route,
use the following sis-console
command, Ant task, or related MBean operations.
Console command
repositionnetworkroute
Command |
repositionnetworkroute <ra-entity> <old-position> <new-position> Move an existing network route in the SIS from one position to another |
---|---|
Example |
To move the network route from position $ ./sis-console repositionnetworkroute sis 3 1 Network route repositioned |
Ant task
updatenetworkroute
Task |
<updatenetworkroute position="..." newPosition="..."/> |
---|---|
Example |
To move a network route from position <sis-in-management> <updatenetworkroute position="3" newPosition="1"/> </sis-in-management> or <sis-sip-management> <updatenetworkroute position="3" newPosition="1"/> </sis-sip-management> |
MBean operations
MBean |
---|
getPosition
Operation |
To get the network route position: public int getPosition() throws ManagementException; |
---|
reposition
Operation |
To move the network route to a new position: public void reposition(int newPosition) throws ManagementException; |
---|