You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 5 Next »

Methods

Remember to execute the queue in order to apply this methods to the physical device.

UpPhysicalInterface

This method enables a physical interface which is down.

 ValueDescription
URLhttp://hostname:8888/opennaas/router/{resourceName}/chassis/upPhysicalInterface 
Method

POST

 
Body ParameterLogicalPortLogicalPort representing the interface we want to enable. Only physical interfaces are allowed.
Return- 
Body Example

Following example would enable interface fe-0/2/1

<?xml version="1.0" encoding="UTF-8"?>
<logicalPort>
   <name>fe-0/2/1</name>
</logicalPort>

DownPhysicalInterface

This method disabled a physical interface, marking it as being down, but without removing its configuration.

 ValueDescription
URLhttp://hostname:8888/opennaas/router/{resourceName}/chassis/downPhysicalInterface 
Method

POST

 
Body ParameterLogicalPortLogicalPort representing the interface we want to disable. Only physical interfaces are allowed.
Return- 
Body Example

Following example would disable interface fe-0/2/1

<?xml version="1.0" encoding="UTF-8"?>
<logicalPort>
   <name>fe-0/2/1</name>
</logicalPort>

CreateSubInterface

This method creates a subinterface from an existing physical interface.

 ValueDescription
URLhttp://hostname:8888/opennaas/router/{resourceName}/chassis/createSubInterface 
Method

POST

 
Body ParameterNetworkPortNetworkPort containing the name of the physical interface and the port number used to create the subinterface. It should be either a LogicalTunnel or an EthernetPort
Return- 
Body Example

Following example would create interface fe-0/2/1.2 (that means, a new subinterface in interface fe-0/2/1 with port number 2).

<?xml version="1.0" encoding="UTF-8"?>
<ethernetPort>
   <toAssociations xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="portImplementsEndpoint">
      <to xsi:type="vlanEndpoint">
         <vlanID>2</vlanID>
      </to>
   </toAssociations>
   <name>fe-0/2/1</name>
   <portNumber>2</portNumber>
</ethernetPort>

DeleteSubInterface

This method removes an existing subinterface from a physical interface.

 ValueDescription
URLhttp://hostname:8888/opennaas/router/{resourceName}/chassis/createSubInterface 
Method

POST

 
Body ParameterNetworkPortTODO
Return- 
  • No labels