Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
themeEclipse
languagehtml/xml
<?xml version="1.0" encoding="UTF-8"?>
<ospfArea>
   <areaId>0.0.0.0</areaId>
   <ospfProtocolEndpoints>
      <ospfProtocolEndpoint>
         <name>ge-2/0/0.13</name>
         <enabledState>ENABLED</enabledState>
      </ospfProtocolEndpoint>
      <ospfProtocolEndpoint>
         <name>gr-1/1/0.1</name>
         <enabledState>ENABLED</enabledState>
      </ospfProtocolEndpoint>
      <ospfProtocolEndpoint>
         <name>gr-1/1/0.2</name>
         <enabledState>ENABLED</enabledState>
      </ospfProtocolEndpoint>
      <ospfProtocolEndpoint>
         <name>gr-1/1/0.3</name>
         <enabledState>ENABLED</enabledState>
      </ospfProtocolEndpoint>
   </ospfProtocolEndpoints>
</ospfArea>

 

RemoveOSPFv3Area

Removes an existing OSPFArea from the router.

 ValueDescription
URLhttp://hostname:8888/opennaas/router/{resourceName}/ospfv3/area?areaId={areaId} 
MethodDELETE 
QueryParameterareaIdId of the area to be deleted.
Return- 

EnableOSPFv3Interfaces

Enables a list existing OSPFv3 interfaces which are in disable state. It's independent from the area they belong to.

Body Example

Following request would enable interfaces fe-0/3/3.1 and ge-0/1/1.3.

Code Block
themeEclipse
languagehtml/xml
<?xml version="1.0" encoding="UTF-8"?>
<interfaces>
   <interface>fe-0/3/3.1</interface>
   <interface>ge-0/1/1.3</interface>
</interfaces>

DisableOSPv3FInterfaces

Disables a list existing OSPFv3 interfaces which are in enabled state. It's independent from the area they belong to.

Body Example

Following request would disable interface fe-0/3/3.1

Code Block
themeEclipse
languagehtml/xml
<?xml version="1.0" encoding="UTF-8"?>
<interfaces>
   <interface>fe-0/3/3.1</interface>
</interfaces>