To
reposition a network route,
use the following sis-console
command, Ant task, or related MBean operations.
Console command
repositionnetworkroute
Command |
repositionnetworkroute <ra-entity> <interface-type> <old-position> <new-position> Move an existing network route in the SIS from one position to another |
---|---|
Example |
To move the network route of type $ ./sis-console repositionnetworkroute sis IN 3 1 Network route repositioned |
Ant task
updatenetworkroute
Task |
<updatenetworkroute type="..." position="..." newPosition="..."/> |
---|---|
Example |
To move a network route of type <sis-management> <updatenetworkroute type=IN" position="3" newPosition="1"/> </sis-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; |
---|