Configuring OSPFv3 Dead Interval
DME
YANG
Copy
POST http://<mgmt0_IP>/api/mo/sys.json
{ "topSystem": { "children": [ { "ospfv3Entity": { "children": [ { "ospfv3Inst": { "attributes": { "name": "Test_1" }, "children": [ { "ospfv3Dom": { "attributes": { "name": "VRF_1" }, "children": [ { "ospfv3Area": { "attributes": { "id": "0.0.0.10" }, "children": [ { "ospfv3Vlink": { "attributes": { "deadIntvl": "63120", "nbrRtrId": "10.1.2.3" } } } ] } } ] } }, { "ospfv3Dom": { "attributes": { "name": "default" } } } ] } } ] } } ] } }
Response
{ imdata:[] }
Copy
<System> <ospfv3-items> <inst-items> <Inst-list> <name>Test_1</name> <dom-items> <Dom-list> <name>VRF_1</name> <area-items> <Area-list> <id>0.0.0.10</id> <vlink-items> <Vlink-list> <nbrRtrId>10.1.2.3</nbrRtrId> <deadIntvl>63120</deadIntvl> </Vlink-list> </vlink-items> </Area-list> </area-items> </Dom-list> <Dom-list> <name>default</name> </Dom-list> </dom-items> </Inst-list> </inst-items> </ospfv3-items> </System>