1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【忘備録】CCIE勉強メモ_20250906

1
Posted at

参考資料・時間

資料:
CCIE Enterprise Infrastructure Foundation lab
BGP lab 3

勉強時間:
約4時間

学習内容

知らなかったこと/忘れてたこと

・BGPではデフォルトルートのみでしか到達できないルートに対してピアを作成しない。

・Route-Reflector-Clientで反射したルートはneighbor [IP]
nexthop-selfでは変更不能。
変更はrout-mapでset ip nexthop [next-hop]を設定し、neighbor [IP] route-map outで変更。

route-map R2 permit 10
 set ip next-hop 12.1.1.1

router bgp 100
 neighbor 12.1.1.2 remote-as 100
 neighbor 12.1.1.2 route-reflector-client
 neighbor 12.1.1.2 route-map R2 out

ルートリフレクタクライアントとルートリフレクタ非クライアントの動作

クライアント から受信したルート -> クライアント・非クライアントに配布

非クライアント から受信したルート -> クライアントに配布

非クライアントから受信したルートは非クライアントへは配布されない!

Cluster-idとORIGINATORについては以下を確認
https://milestone-of-se.nesuke.com/nw-advanced/bgp/route-reflector-client-and-cluster-id/

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?