自拍偷在线精品自拍偷,亚洲欧美中文日韩v在线观看不卡

EIGRP路由協(xié)議的配置實(shí)例解析

網(wǎng)絡(luò)
因?yàn)閹欣^默認(rèn)為NBMA 模式,也就是非廣播的多路訪問(wèn)模式,它會(huì)阻止廣播數(shù)據(jù)和組播數(shù)據(jù),我們?cè)诮涌谂渲眠^(guò)程中,幀中繼的DLCI號(hào)和IP映射時(shí)也沒(méi)有配置broadcast 參數(shù),這類(lèi)問(wèn)題該如何解決?本文的內(nèi)容回答以上疑問(wèn)。

EIGRP路由協(xié)議的配置拓?fù)鋱D

EIGRP路由協(xié)議的配置實(shí)例解析

  1. R1(config)#router eigrp 100  
  2. R1(config-router)#no auto-summary  //關(guān)閉自動(dòng)匯總  
  3. R1(config-router)#net 192.168.1.0  //宣告路由條目  
  4. R1(config-router)#end  
  5.  
  6. R2(config)#router eigrp 100  
  7. R2(config-router)#no auto-summary  
  8. R2(config-router)#net 192.168.1.0  
  9. R2(config-router)#net 10.1.0.0 0.0.255.255 //宣告路由條目  
  10. R2(config-router)#end  
  11.  
  12. R3(config)#router eigrp 100  
  13. R3(config-router)#no auto-summary  
  14. R3(config-router)#net 192.168.1.0  
  15. R3(config-router)#net 172.16.0.0 0.0.255.255  
  16. R3(config-router)#end 

檢查:

  1. R1#show ip eigrp neighbors  //查看eigrp 鄰居表,發(fā)現(xiàn)并沒(méi)有鄰居  
  2. IP-EIGRP neighbors for process 100  
  3.  
  4. R1#show ip eigrp topology //查看EIGRP 拓?fù)浔?,并沒(méi)有學(xué)習(xí)到任何的路由  
  5. IP-EIGRP Topology Table for AS(100)/ID(192.168.1.1)  
  6.  
  7. Codes: P – Passive, A – Active, U – Update, Q – Query, R – Reply,  
  8.        r – reply Status, s – sia Status  
  9.  
  10. P 192.168.1.0/24, 1 successors, FD is 2169856  
  11.         via Connected, Serial0/0 

因?yàn)?strong>幀中繼默認(rèn)為NBMA 模式,也就是非廣播的多路訪問(wèn)模式,它會(huì)阻止廣播數(shù)據(jù)和組播數(shù)據(jù),我們?cè)诮涌谂渲眠^(guò)程中,幀中繼的DLCI 號(hào)和IP 映射時(shí)也沒(méi)有配置broadcast 參數(shù),而EIGRP 路由協(xié)議通過(guò)組播地址224.0.0.10 來(lái)發(fā)送相應(yīng)的路由信息(比如hello、update 等數(shù)據(jù)包),所以R1 并沒(méi)有發(fā)現(xiàn)任何的鄰居路由器。

為了能讓EIGRP的路由信息通過(guò)幀中繼傳播,在沒(méi)有配置broadcast 參數(shù)的情況下,我們可以通過(guò)單播的形式來(lái)發(fā)送EIGRP 數(shù)據(jù)包,我們對(duì)以上的配置進(jìn)行改進(jìn):

  1. R1(config)#router eigrp 100  
  2. R1(config-router)#neighbor 192.168.1.2 serial 0/0  //手工指定鄰居,實(shí)現(xiàn)單播方式  
  3. R1(config-router)#neighbor 192.168.1.3 serial 0/0  
  4. R1(config-router)#end  
  5.  
  6. R2(config)#router eigrp 100  
  7. R2(config-router)#neighbor 192.168.1.1 serial 0/0 //手工指定鄰居,實(shí)現(xiàn)單播方式  
  8. R2(config-router)#end  
  9.  
  10. R3(config)#router eigrp 100  
  11. R3(config-router)#neighbor 192.168.1.1 serial 0/0 //手工指定鄰居,實(shí)現(xiàn)單播方式  
  12. R3(config-router)#end 

驗(yàn)證:

  1. *Mar  1 00:29:18.955: %DUAL-5-NBRCHANGE: IP-EIGRP(0) 100: Neighbor 192.168.1.2 (Serial0/0) is up: new adjacency  
  2. *Mar  1 00:29:19.115: %DUAL-5-NBRCHANGE: IP-EIGRP(0) 100: Neighbor 192.168.1.3 (Serial0/0) is up: new adjacency  
  3. R1#show ip eigrp neighbors  
  4. IP-EIGRP neighbors for process 100  
  5. H   Address                 Interface       Hold Uptime   SRTT   RTO  Q  Seq  
  6.                                             (sec)         (ms)       Cnt Num  
  7. 1   192.168.1.3             Se0/0            156 00:01:19   99   594  0  3  
  8. 0   192.168.1.2             Se0/0            154 00:01:19  137   822  0  3  
  9.  
  10. R2#  
  11. *Mar  1 00:29:18.979: %DUAL-5-NBRCHANGE: IP-EIGRP(0) 100: Neighbor 192.168.1.1 (Serial0/0) is up: new adjacency  
  12. R2#  
  13. R2#show ip eigrp neighbor  
  14. IP-EIGRP neighbors for process 100  
  15. H   Address                 Interface       Hold Uptime   SRTT   RTO  Q  Seq  
  16.                                             (sec)         (ms)       Cnt Num  
  17. 0   192.168.1.1             Se0/0            138 00:02:31  171  1026  0  7 

R1#show ip route eigrp 100 //查看路由表,可以看到R1 能夠?qū)W習(xí)到R2 和R3 相應(yīng)的網(wǎng)絡(luò)

  1.      172.16.0.0/24 is subnetted, 4 subnets  
  2. D       172.16.0.0 [90/2297856] via 192.168.1.3, 00:03:45, Serial0/0  
  3. D       172.16.1.0 [90/2297856] via 192.168.1.3, 00:03:45, Serial0/0  
  4. D       172.16.2.0 [90/2297856] via 192.168.1.3, 00:03:45, Serial0/0  
  5. D       172.16.3.0 [90/2297856] via 192.168.1.3, 00:03:45, Serial0/0  
  6.      10.0.0.0/24 is subnetted, 4 subnets  
  7. D       10.1.3.0 [90/2297856] via 192.168.1.2, 00:03:45, Serial0/0  
  8. D       10.1.2.0 [90/2297856] via 192.168.1.2, 00:03:45, Serial0/0  
  9. D       10.1.1.0 [90/2297856] via 192.168.1.2, 00:03:45, Serial0/0  
  10. D       10.1.0.0 [90/2297856] via 192.168.1.2, 00:03:45, Serial0/0 

R1#ping 10.1.0.1  //驗(yàn)證是否可以訪問(wèn)R2 的網(wǎng)絡(luò)

  1. Type escape sequence to abort.  
  2. Sending 5, 100-byte ICMP Echos to 10.1.0.1, timeout is 2 seconds:  
  3. !!!!!  
  4. Success rate is 100 percent (5/5), round-trip min/avg/max = 20/56/104 ms  
  5. R1#ping 172.16.0.1  //驗(yàn)證是否可以訪問(wèn)R3 的網(wǎng)絡(luò)  
  6.  
  7. Type escape sequence to abort.  
  8. Sending 5, 100-byte ICMP Echos to 172.16.0.1, timeout is 2 seconds:  
  9. !!!!!  
  10. Success rate is 100 percent (5/5), round-trip min/avg/max = 8/52/124 ms 

查看R2 的路由表:

  1. R2#show ip route  
  2. Codes: C – connected, S – static, R – RIP, M – mobile, B – BGP  
  3.        D – EIGRP, EX – EIGRP external, O – OSPF, IA – OSPF inter area  
  4.        N1 – OSPF NSSA external type 1, N2 – OSPF NSSA external type 2  
  5.        E1 – OSPF external type 1, E2 – OSPF external type 2  
  6.        i – IS-IS, su – IS-IS summary, L1 – IS-IS level-1, L2 – IS-IS level-2  
  7.        ia – IS-IS inter area, * – candidate default, U – per-user static route  
  8.        o – ODR, P – periodic downloaded static route  
  9.  
  10. Gateway of last resort is not set  
  11.  
  12.      10.0.0.0/24 is subnetted, 4 subnets  
  13. C       10.1.3.0 is directly connected, Loopback3  
  14. C       10.1.2.0 is directly connected, Loopback2  
  15. C       10.1.1.0 is directly connected, Loopback1  
  16. C       10.1.0.0 is directly connected, Loopback0  
  17. C    192.168.1.0/24 is directly connected, Serial0/0 

#p#

發(fā)現(xiàn)R2 并沒(méi)有學(xué)習(xí)到R3 的172.16.0.0 網(wǎng)絡(luò), R1 通過(guò)S0/0 接口學(xué)習(xí)到R3 宣告的172.16.0.0網(wǎng)絡(luò),因?yàn)镽1 s0/0 接口的水平分割機(jī)制導(dǎo)致R1 不會(huì)再由這個(gè)接口S0/0 發(fā)布出去,所以R2無(wú)法學(xué)習(xí)到R3 宣告的網(wǎng)絡(luò),同理,R3 也無(wú)法學(xué)習(xí)到R2 宣告的網(wǎng)絡(luò)。

對(duì)幀中繼配置進(jìn)行修正,使用broadcast 參數(shù):

  1. R1(config)#router eigrp 100  
  2. R1(config-router)#no neighbor 192.168.1.2 s0/0 //取消手工指定鄰居  
  3. *Mar  1 00:42:29.807: %DUAL-5-NBRCHANGE: IP-EIGRP(0) 100: Neighbor 192.168.1.2 (Serial0/0) is down:  
  4. R1(config-router)#no neighbor 192.168.1.3 s0/0  
  5. *Mar  1 00:42:32.623: %DUAL-5-NBRCHANGE: IP-EIGRP(0) 100: Neighbor 192.168.1.3 (Serial0/0) is down:  
  6. R1(config-router)#exit  
  7. R1(config)#int s0/0  
  8. R1(config-if)#no fram map ip 192.168.1.2 102 //取消之前不帶broadcast 參數(shù)的靜態(tài)映射  
  9. R1(config-if)#no fram map ip 192.168.1.3 103  
  10. R1(config-if)#frame map ip 192.168.1.2 102 broadcast  
  11. R1(config-if)#frame map ip 192.168.1.3 103 broadcast  
  12. R1(config-if)#end  
  13.  
  14. R2(config)#router eigrp 100  
  15. R2(config-router)#no  neighbor 192.168.1.1 Serial0/0  
  16. R2(config-router)#int s0/0  
  17. R2(config-if)#no frame-relay map ip 192.168.1.1 201  
  18. R2(config-if)# frame-relay map ip 192.168.1.1 201 broadcast  
  19.  
  20. R3(config)#router eigrp 100  
  21. R3(config-router)#no neighbor 192.168.1.1 Serial0/0  
  22. R3(config-router)#int s0/0  
  23. R3(config-if)#no  
  24. *Mar  1 00:47:58.943: %DUAL-5-NBRCHANGE: IP-EIGRP(0) 100: Neighbor 192.168.1.1 (Serial0/0) is up: new adjacency  
  25. R3(config-if)#no frame-relay map ip 192.168.1.1 301  
  26. R3(config-if)#frame-relay map ip 192.168.1.1 301 broadcast  
  27. R3(config-if)#end 

驗(yàn)證結(jié)果:

可以看到添加了broadcast 后,幀中繼可以正常的傳遞組播數(shù)據(jù)了,R1 就可以和R2 和R3 建立鄰居關(guān)系并正常學(xué)習(xí)到路由。

  1. R1#show ip eigrp neighbors  
  2. IP-EIGRP neighbors for process 100  
  3. H   Address                 Interface       Hold Uptime   SRTT   RTO  Q  Seq  
  4.                                             (sec)         (ms)       Cnt Num  
  5. 1   192.168.1.3             Se0/0            178 00:00:03  906  5000  0  7  
  6. 0   192.168.1.2             Se0/0            178 00:01:57 1040  5000  0  6  
  7. R1#show ip route eigrp 100  
  8.      172.16.0.0/24 is subnetted, 4 subnets  
  9. D       172.16.0.0 [90/2297856] via 192.168.1.3, 00:00:53, Serial0/0  
  10. D       172.16.1.0 [90/2297856] via 192.168.1.3, 00:00:53, Serial0/0  
  11. D       172.16.2.0 [90/2297856] via 192.168.1.3, 00:00:53, Serial0/0  
  12. D       172.16.3.0 [90/2297856] via 192.168.1.3, 00:00:53, Serial0/0  
  13.      10.0.0.0/24 is subnetted, 4 subnets  
  14. D       10.1.3.0 [90/2297856] via 192.168.1.2, 00:02:46, Serial0/0  
  15. D       10.1.2.0 [90/2297856] via 192.168.1.2, 00:02:46, Serial0/0  
  16. D       10.1.1.0 [90/2297856] via 192.168.1.2, 00:02:46, Serial0/0  
  17. D       10.1.0.0 [90/2297856] via 192.168.1.2, 00:02:46, Serial0/0 

查看R3 的路由表,發(fā)現(xiàn)R3 并沒(méi)有學(xué)習(xí)到R2 的網(wǎng)絡(luò),這是因?yàn)镽1 默認(rèn)情況下接口有水平。

  1. R3#show ip route  
  2. Codes: C – connected, S – static, R – RIP, M – mobile, B – BGP  
  3.        D – EIGRP, EX – EIGRP external, O – OSPF, IA – OSPF inter area  
  4.        N1 – OSPF NSSA external type 1, N2 – OSPF NSSA external type 2  
  5.        E1 – OSPF external type 1, E2 – OSPF external type 2  
  6.        i – IS-IS, su – IS-IS summary, L1 – IS-IS level-1, L2 – IS-IS level-2  
  7.        ia – IS-IS inter area, * – candidate default, U – per-user static route  
  8.        o – ODR, P – periodic downloaded static route  
  9.  
  10. Gateway of last resort is not set  
  11.  
  12.      172.16.0.0/24 is subnetted, 4 subnets  
  13. C       172.16.0.0 is directly connected, Loopback0  
  14. C       172.16.1.0 is directly connected, Loopback1  
  15. C       172.16.2.0 is directly connected, Loopback2  
  16. C       172.16.3.0 is directly connected, Loopback3  
  17. C    192.168.1.0/24 is directly connected, Serial0/0 

將R1 接口的水平分割關(guān)閉:

  1. R1(config)#interface serial 0/0  
  2. R1(config-if)#no ip split-horizon eigrp 100  
  3. R1(config-if)#end 

當(dāng)R1 的水平分割關(guān)閉后,EIGRP 進(jìn)程會(huì)出現(xiàn)相應(yīng)提示:

  1. *Mar  1 00:52:25.055: %DUAL-5-NBRCHANGE: IP-EIGRP(0) 100: Neighbor 192.168.1.3 (Serial0/0) is resync: split horizon changed  
  2. *Mar  1 00:52:25.055: %DUAL-5-NBRCHANGE: IP-EIGRP(0) 100: Neighbor 192.168.1.2 (Serial0/0) is resync: split horizon changed 

查看R1 接口S0/0 的情況:

  1. R1#show ip int s0/0 | include Split  
  2.   Split horizon is disabled 

查看R2 的路由表:

  1. R2#show ip route eigrp 100  
  2.      172.16.0.0/24 is subnetted, 4 subnets  
  3. D       172.16.0.0 [90/2809856] via 192.168.1.1, 00:08:03, Serial0/0  
  4. D       172.16.1.0 [90/2809856] via 192.168.1.1, 00:08:03, Serial0/0  
  5. D       172.16.2.0 [90/2809856] via 192.168.1.1, 00:08:03, Serial0/0  
  6. D       172.16.3.0 [90/2809856] via 192.168.1.1, 00:08:03, Serial0/0 

雖然R2 路由表中有172.16.2.0/24 網(wǎng)絡(luò),但R2 并沒(méi)有ping 通,這是什么原因?

因?yàn)镽3 的串行口幀中繼配置時(shí),只做了IP 192.168.1.1 和DLCI 號(hào)的對(duì)應(yīng),沒(méi)有做IP 192。168.1.2 和DLCI 號(hào)的映射,所以R2 ping 172.16.2.1 時(shí),采用的源地址為192.168.1.2,通過(guò)路由表發(fā)現(xiàn)目的地址172.16.2.1 具有符合的條目,轉(zhuǎn)發(fā)接口為192.168.1.1,于是由R1 轉(zhuǎn)發(fā)到R3,R3 在回包過(guò)程時(shí),源地址為172.16.2.1,而目標(biāo)地址為192.168.1.2,但它不知道這個(gè)地址怎么轉(zhuǎn)發(fā)于是就丟棄。

  1. R3(config)#int s0/0  
  2. R3(config-if)#frame-relay map ip 192.168.1.2 301 broadcast  
  3. R2(config-if)#end  
  4.  
  5. R2(config)#int s0/0  
  6. R2(config-if)#frame-relay map ip 192.168.1.3 201 broadcast  
  7. R2(config-if)#end 

驗(yàn)證結(jié)果:

  1. R2#ping 172.16.1.1  
  2.  
  3. Type escape sequence to abort.  
  4. Sending 5, 100-byte ICMP Echos to 172.16.1.1, timeout is 2 seconds:  
  5. !!!!!  
  6. Success rate is 100 percent (5/5), round-trip min/avg/max = 44/88/160 ms 

 幀中繼的配置結(jié)束了,驗(yàn)證結(jié)果大家已經(jīng)清楚地看到,所以如上所述內(nèi)容是一個(gè)很有說(shuō)明力度的實(shí)例,對(duì)于讀者了解EIGRP路由協(xié)議的配置是很有幫助的。更多內(nèi)容請(qǐng)讀者閱讀:

幀中繼交換機(jī)和路由器模擬配置CCNP:EIGRP帶寬實(shí)例配置解析

責(zé)任編輯:佚名 來(lái)源: 咦哇噢博客
相關(guān)推薦

2011-04-13 11:27:28

EIGRP路由

2011-08-16 11:37:27

EIGRP帶寬

2010-06-11 17:09:27

EIGRP路由協(xié)議

2010-06-11 17:12:28

EIGRP路由協(xié)議

2009-11-11 16:49:41

路由選擇協(xié)議

2010-06-21 14:46:30

EIGRP路由協(xié)議

2010-08-06 10:55:50

配置RIP路由協(xié)議

2011-04-13 13:14:41

EIGRP STUB

2010-06-11 17:45:09

路由協(xié)議IGRPEIGRP

2013-05-30 10:42:53

路由技術(shù)路由表網(wǎng)絡(luò)管理

2010-06-25 15:03:54

路由選擇協(xié)議

2011-09-15 13:56:35

2009-12-02 10:34:04

華為路由器配置實(shí)例

2011-08-11 15:14:30

2010-06-17 23:13:10

路由信息協(xié)議

2011-08-03 09:18:39

RIP路由協(xié)議RIP

2009-11-11 17:02:44

MPLS路由協(xié)議

2011-08-16 10:50:35

DHCP路由器配置

2009-09-10 16:14:00

路由器的故障

2010-07-08 14:51:34

路由選擇協(xié)議
點(diǎn)贊
收藏

51CTO技術(shù)棧公眾號(hào)