BGP ネイバーの削除
この使用例では、YANG モデルを使用して BGP ネイバーを削除します。
-
標準の YANG ツールを使用して、YANG 形式で NETCONF <get-config> 操作を使用して設定を取得します。 <get-config> <source> <running/> </source> <config xmlns:xc="urn:ietf:params:xml:ns:netconf:base:1.0"> <bgp xmlns="http://openconfig.net/yang/bgp"> </get-config> router bgp 1000 bgp confederation peers 65002 ! bgp confederation identifier 102 bgp router-id 1.1.1.1 bgp graceful-restart restart-time 30 bgp graceful-restart stalepath-time 30 bgp graceful-restart address-family ipv4 unicast distance bgp 200 20 200 maximum-paths ebgp 30 maximum-paths ibgp 30 ! address-family ipv4 multicast distance bgp 200 20 200 maximum-paths ebgp 30 maximum-paths ibgp 30 ! address-family ipv6 unicast distance bgp 200 20 200 maximum-paths ebgp 30 maximum-paths ibgp 30 ! address-family ipv6 multicast distance bgp 200 20 200 maximum-paths ebgp 30 maximum-paths ibgp 30 ! !router bgp 1000 bgp confederation peers 65002 ! bgp confederation identifier 102 bgp router-id 1.1.1.1 bgp graceful-restart restart-time 30 bgp graceful-restart stalepath-time 30 bgp graceful-restart address-family ipv4 unicast distance bgp 200 20 200 maximum-paths ebgp 30 maximum-paths ibgp 30 ! address-family ipv4 multicast distance bgp 200 20 200 maximum-paths ebgp 30 maximum-paths ibgp 30 ! address-family ipv6 unicast distance bgp 200 20 200 maximum-paths ebgp 30 maximum-paths ibgp 30 ! address-family ipv6 multicast distance bgp 200 20 200 maximum-paths ebgp 30 maximum-paths ibgp 30 ! !
-
設定 <edit-config> 操作を変更します。 <edit-config> <target> <candidate/> </target> <config xmlns:xc="urn:ietf:params:xml:ns:netconf:base:1.0"> <bgp xmlns="http://openconfig.net/yang/bgp"> <global> <config> <as xc:operation="delete">1000</as> </config> </global> </bgp> </config> </edit-config>
-
NETCONF SSH からルータに <edit-config> 要求を送信します。
-
設定の変更が成功し、BGP ネイバーが削除されていることを確認します。
(注) |
|