Service Manual

Following is the current configurations applied on the system:
Dell#show config
!
router bgp 100
neighbor 11.1.1.2 remote-as 200
neighbor 11.1.1.2 no shutdown
neighbor 11.1.1.3 remote-as 200
neighbor 11.1.1.3 no shutdown
Dell#
The following configuration retrieves the BGPrunning-config via REST API:
curl -u admin:admin http://10.16.151.159:8008/api/running/dell/router/bgp\?deep
<collection xmlns:y="http://tail-f.com/ns/rest">
<bgp>
<as-name>100</as-name>
<timers>
<bgp>
<keepalive>60</keepalive>
<hold-time>180</hold-time>
</bgp>
</timers>
<maximum-paths>
<ebgp>1</ebgp>
<ibgp1>1</ibgp>
</maximum-paths>
<bgp>
<dmzlink-bw>false</dmzlink-bw>
</bgp>
<neighbor>
<neighbor-router>11.1.1.2</neighbor-router>
<remote-as>200</remote-as>
<dmzlink-bw>false</dmzlink-bw>
<shutdown>false</shutdown>
</neighbor>
<neighbor>
<neighbor-router>11.1.1.3</neighbor-router>
<remote-as>200</remote-as>
<dmzlink-bw>false</dmzlink-bw>
<shutdown>false</shutdown>
</neighbor>
</bgp>
</collection
* Connection #0 to host 10.16.151.159 left intact
* Closing connection #0
The following configuration is to fetch the operational data for the BGP NLRI table via REST API (Router
1):
curl -u admin:admin http://10.16.151.159:8008/api/operational/mib/bgp4-v2/
dellNetBgpM2NlriTable\?deep
<collection xmlns:y="http://tail-f.com/ns/rest">
<dellNetBgpM2NlriTable>
<dellNetBgpM2PeerIndex>1</dellNetBgpM2PeerIndex?
<dellNetBgpM2NlriAfi>1</dellNetBgpM2NlriAfi>
<dellNetBgpM2NlriSafi>1</dellNetBgpM2NlriSafi>
<dellNetBgpM2NlriPrefix>5.0.0.0</dellNetBgpM2NlriPrefix>
<dellNetBgpM2NlriPrefixLen>24</dellNetBgpM2NlriPrefixLen>
<dellNetBgpM2NlriIndex>0</dellNetBgpM2NlriIndex>
<dellNetBgpM2NlriBest>true</dellNetBgpM2NlriBest>
REST API
145