1.實驗需求:(又是這個實驗需求)
①r3為as3,並且為ebgp,建立乙個環迴口為3.3.3.3/24,e0/0為13.1.1.3/24
②r1為as10,並且為ibgp,建立乙個環迴口為1.1.1.1/24,e0/0為124.1.1.1/24
③r2為as10,並且為ibgp,建立乙個環迴口為2.2.2.2/24,e0/0為124.1.1.2/24
④r1與r2之間執行eigrp
⑤r4為as4,並且為ebgp,建立乙個環迴口為4.4.4.4/24,e0/0為124.1.1.4/24
2.bgp的詳細配置:
r3:
router bgp 3
no auto-summary
no synchronization
bgp router-id 3.3.3.3
neighbor 13.1.1.1 remote-as 10
bgp default ipv4-unicast
address-family ipv4 unicast
network 3.3.3.0 mask 255.255.255.0
r1:
router bgp 10
no auto-summary
no synchronization
bgp router-id 1.1.1.1
no bgp default ipv4-unicast
neighbor 13.1.1.3 remote-as 3
address-family ipv4 unicast
neighbor 13.1.1.3 activate
neighbor 2.2.2.2 remote-as 10
neighbor 2.2.2.2 update-source loopback 0
address-family ipv4 unicast
neighbor 2.2.2.2 activate
neighbor 2.2.2.2 next-hop-self
r2:
router bgp 10
no auto-summary
no synchronization
bgp router-id 3.3.3.3
no bgp default ipv4-unicast
neighbor 1.1.1.1 remote-as 10
neighbor 1.1.1.1 update-source loopback 0
address-family ipv4 unicast
neighbor 1.1.1.1 activate
neighbor 124.1.1.4 remote-as 4
address-family ipv4 unicast
neighbor 124.1.1.4 activate
r4:
router bgp 4
no auto-summary
no synchronization
bgp router-id 4.4.4.4
no bgp default ipv4-unicast
neighbor 124.1.1.2 remote-as 10
address-family ipv4 unicast
neighbor 124.1.1.2 activate
network 4.4.4.0 mask 255.255.255.0
3.bgp的inject-map與exist-map的應用:
前提:
現在假設在r3上設定loopback 8為172.16.8.1/24,loopback 9 172.16.9.0/24,現在把r3當做isp,然後在不影響isp裝置的情況下讓isp給我傳彙總路由的同時,我自己能夠根據這個彙總路由來產生一條彙總裡面的明細路由。
①先用字首列表抓彙總路由:
ip prefix-list 1 seq 10 permit 172.16.8.0/23
②再抓彙總路由的傳送者:
ip prefix-list 2 seq 10 permit 13.1.1.3/32
③抓生成的明細路由:
ip prefix-list 3 seq 10 permit 172.16.9.0/24
④做第乙個route-map來產生該彙總路由中的明細路由:
route-map inject permit 10
set ip address prefix-list 3
⑤做第二個route-map來做產生明細路由的條件:
route-map exist permit 10
match ip address prefix-list 1
match ip route-source prefix-list 2
⑥進入bgp呼叫:
bgp inject-map inject exist-map exist copy-attributes
最後呼叫的時候一定要加 copy-attributes引數,不然會導致路由回傳造成超長距離的路由黑洞
沒做之前的效果:
這是做了之後的情況:
開源人物之九 賴霖楓
雨林木風,ylmf。這個人與洪磊的境遇,乙個是天上,乙個是地下。開源是唐僧。等候環境對他的事業完全有利才動手的人,將永遠不會成功。在溫室中想象南極,誰都可以做到!這句話有點向悟空說的,呵呵。賴同學的華麗轉身,給每乙個關注開源的人帶來了許多聯想,他的u盤linux計畫如果真的成功了,將成為作業系統的一...
裝逼打臉之GIT
其實我不會git啊!但是給我建了個倉庫讓我提交。這可怎麼得了。第一步 新建資料夾 第二步 shift 右擊開啟當前資料夾命令列 git init 第三步 把需要提交的專案複製進去 git add 有個空格然後寫個點 第四步 git status檢視狀態 這步其實不需要 第五步 git commit ...
提公升逼格的N種方法之
false true 0 true false 0 true true 1 false false 0 false true false true false false true true true false false false 輸出結果,不再是0和1,而是true和false,同樣可以用來...