💬

JANOG50 NETCON問題解説Level1-5

2022/07/20に公開

問題文

NWエンジニア1年目の勝男君はBGPの勉強をするために、vEOS2台に
BGPのconfigを設定してみましたがなぜかBGPテーブル上でupになりません。
upにならない原因を特定して勝男君に教えてあげましょう

構成図

制限事項/注意事項

特に無し

解説

この問題ではeBGPでpeerの設定を入れているが、お互いloopbackのIPでpeerを設定しているため、TTLでpeerが上がっていません。
ebgp-multihopを増やせばPeerが上がります。

Router-01

問題開始時点のConfig(抜粋)

router bgp 65501
   neighbor 10.0.0.2 remote-as 65502
   neighbor 10.0.0.2 update-source Loopback0
   neighbor 10.0.0.2 description Router-02
   neighbor 10.0.0.2 rib-in pre-policy retain all
   !
   address-family ipv4
      neighbor 10.0.0.2 activate
!

修正Config

router bgp 65501
   neighbor 10.0.0.2 remote-as 65502
   neighbor 10.0.0.2 description Router-02
   neighbor 10.0.0.2 rib-in pre-policy retain all
   neighbor 10.0.0.2 ebgp-multihop 2
   !
   address-family ipv4
      neighbor 10.0.0.2 activate
!

Router-02

問題開始時点のConfig(抜粋)

router bgp 65502
   neighbor 10.0.0.1 remote-as 65501
   neighbor 10.0.0.1 update-source Loopback0
   neighbor 10.0.0.1 description Router-01
   neighbor 10.0.0.1 rib-in pre-policy retain all
   !
   address-family ipv4
      neighbor 10.0.0.1 activate
!

修正Config

router bgp 65502
   neighbor 10.0.0.1 remote-as 65501
   neighbor 10.0.0.1 description Router-01
   neighbor 10.0.0.1 rib-in pre-policy retain all
   neighbor 10.0.0.1 ebgp-multihop 2
   !
   address-family ipv4
      neighbor 10.0.0.1 activate
!

Discussion