成人免费xxxxx在线视频软件_久久精品久久久_亚洲国产精品久久久_天天色天天色_亚洲人成一区_欧美一级欧美三级在线观看

CCNP:EIGRP帶寬實例配置解析

網絡
EIGRP在幀中繼網絡中使用點對點子接口的方式。第下文配置中,可以看到路由器互相學習到對方宣告的網絡,必須將接口水平分割關閉才可以。這里我們使用幀中繼網絡點對點子接口的方法來完成。

EIGRP路由信息在默認情況下占用接口帶寬的50%,而串行接口默認的帶寬為T1(1.544M),但在實際上串行接口的帶寬并不是默認值,這里我們按照需求修改接口的帶寬并修改EIGRP 占用帶寬的百分比例。拓撲圖如下:

CCNP:EIGRP帶寬實例配置解析

修改帶寬占用比:

  1. R1(config)# interface s0/0  
  2. R1(config-if)# bandwidth 128  //注意,這里的單位是KB/s  
  3. R1(config-if)# ip bandwidth-percent eigrp 100 40  //修改EIGRP 路由信息占用帶寬的百分比為40  
  4. R1(config-if)# end  
  5.  
  6. R2(config)# interface s0/0  
  7. R2(config-if)# bandwidth 64 //注意,這里的單位是KB/s  
  8. R2(config-if)# end  
  9.  
  10. R3(config)# interface s0/0  
  11. R3(config-if)# bandwidth 64 //注意,這里的單位是KB/s  
  12. R3(config-if)# end 

驗證:

  1. R1#show interfaces serial 0/0 | include BW  
  2.   MTU 1500 bytes, BW 128 Kbit, DLY 20000 usec, 

EIGRP 在幀中繼網絡中使用點對點子接口的方式。第4 步配置中,可以看到R2 和R3 想要通過R1 學習到對方宣告的網絡,必須將R1 的接口S0/0 水平分割關閉才可以。這里我們使用幀中繼網絡點對點子接口的方法來完成。

點對點子接口方式:

  1. R1(config)#default interface Serial 0/0 //將接口的配置還原為默認值  
  2. Building configuration…  
  3.  
  4. Interface Serial0/0 set to default configuration  
  5. R1(config)#  
  6. *Mar  1 01:45:30.363: %DUAL-5-NBRCHANGE: IP-EIGRP(0) 100: Neighbor 192.168.1.3 (Serial0/0) is resync: split horizon changed  
  7. *Mar  1 01:45:30.367: %DUAL-5-NBRCHANGE: IP-EIGRP(0) 100: Neighbor 192.168.1.2 (Serial0/0) is resync: split horizon changed  
  8. *Mar  1 01:45:30.779: %DUAL-5-NBRCHANGE: IP-EIGRP(0) 100: Neighbor 192.168.1.3 (Serial0/0) is down: interface down  
  9. *Mar  1 01:45:30.787: %DUAL-5-NBRCHANGE: IP-EIGRP(0) 100: Neighbor 192.168.1.2 (Serial0/0) is down: interface down  
  10. *Mar  1 01:45:31.483: %LINEPROTO-5-UPDOWN: Line protocol on Interface Serial0/0, changed state to down  
  11. *Mar  1 01:45:33.499: %LINEPROTO-5-UPDOWN: Line protocol on Interface Serial0/0, changed state to up  
  12. R1(config)#interface Serial 0/0  
  13. R1(config-if)#encapsulation fram  //封裝為幀中繼模式  
  14. R1(config-if)#no fram inv //關閉自動獲取  
  15. R1(config-if)#no sh  
  16. R1(config-if)#ip split eigrp 100 //打開水平分割  
  17. R1(config-if)#int s0/0.1 point  //設置點對點子接口  
  18. R1(config-subif)#ip add 192.168.1.1 255.255.255.252  
  19. R1(config-subif)#fram interface-dlci 102 //指定接口DLCI 號  
  20. R1(config-fr-dlci)#int s0/0.2 point  //配置R1 和R3 之間的子接口  
  21. R1(config-subif)#ip add 192.168.1.5 255.255.255.252  
  22. R1(config-subif)#fram interface-dlci 103            
  23. *Mar  1 01:47:05.767: %DUAL-5-NBRCHANGE: IP-EIGRP(0) 100: Neighbor 192.168.1.2 (Serial0/0.1) is up: new adjacency  
  24. *Mar  1 01:47:06.651: IP-EIGRP(Default-IP-Routing-Table:100): Neighbor 192.168.1.3 not on common subnet for Serial0/0.2  
  25. R1(config-fr-dlci)#end 

因為R1 和R2 相連的子接口IP 地址和子網掩碼有所變化必須修改

  1. R2(config)#int s0/0  
  2. R2(config-if)#ip add 192.168.1.2 255.255.255.252 

因為R1 和R3 相連的子接口IP 地址和子網掩碼有所變化必須修改

  1. R3(config)#int s0/0  
  2. R3(config-if)#ip add 192.168.1.6 255.255.255.252  
  3. *Mar  1 01:47:51.331: %DUAL-5-NBRCHANGE: IP-EIGRP(0) 100: Neighbor 192.168.1.5 (Serial0/0) is down: address changed  
  4. *Mar  1 01:47:51.343: %DUAL-5-NBRCHANGE: IP-EIGRP(0) 100: Neighbor 192.168.1.1 (Serial0/0) is down: address changed  
  5. *Mar  1 01:47:52.463: %DUAL-5-NBRCHANGE: IP-EIGRP(0) 100: Neighbor 192.168.1.5 (Serial0/0) is up: new adjacency  
  6. R3(config-if)#no frame-relay map ip 192.168.1.1 301 broadcas  //將之前配置的取消  
  7. R3(config-if)#fram map ip 192.168.1.5 301 br 

驗證配置:

  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.6             Se0/0.2          173 00:06:53  117  1053  0  15  
  6. 0   192.168.1.2             Se0/0.1          135 00:07:12 1055  5000  0  16  
  7.  
  8. R3#ping 10.1.1.1  
  9.  
  10. Type escape sequence to abort.  
  11. Sending 5, 100-byte ICMP Echos to 10.1.1.1, timeout is 2 seconds:  
  12. !!!!!  
  13. Success rate is 100 percent (5/5), round-trip min/avg/max = 20/89/180 ms 

 EIGRP和幀中繼的配置實例說明請閱讀:幀中繼交換機和路由器模擬配置EIGRP路由協議的配置實例解析

責任編輯:佚名 來源: 咦哇噢博客
相關推薦

2011-08-16 11:22:09

EIGRP幀中繼

2011-04-13 11:27:28

EIGRP路由

2011-04-13 13:14:41

EIGRP STUB

2009-05-05 10:39:10

CCNP數據包路由

2011-04-02 16:36:52

NAT

2009-09-02 16:24:44

CCNP配置實驗MPLS

2010-08-17 12:09:24

CCNP認證

2011-09-07 10:44:36

DHCP服務器配置

2009-12-02 10:34:04

華為路由器配置實例

2011-09-15 13:56:35

2011-04-13 11:16:10

路由器WCCPWeb

2009-09-10 10:29:53

交換機背板帶寬

2010-09-17 16:54:26

Java運行環境

2011-08-16 11:06:12

幀中繼

2011-08-16 10:50:35

DHCP路由器配置

2009-05-13 10:50:59

CCNPHSRP路由

2010-08-02 09:43:00

Flex應用

2013-12-19 09:43:43

2009-09-23 15:12:41

Hibernate視圖

2011-04-02 11:02:24

點贊
收藏

51CTO技術棧公眾號

主站蜘蛛池模板: 国产一区二区 | 国产久| 精品美女在线观看视频在线观看 | 国产一区91精品张津瑜 | 在线免费中文字幕 | 在线视频国产一区 | 一区二区三区欧美 | 91精品久久久久久久久久入口 | 欧美精品首页 | 中文字幕亚洲视频 | 欧美激情欧美激情在线五月 | 精品福利在线 | 亚洲精品久久视频 | 亚洲视频欧美视频 | 国产成人精品一区二 | 欧美国产日韩在线 | 黄a大片| 欧美video| 国产黄色在线 | 久久69精品久久久久久久电影好 | 欧美一区在线视频 | 日韩欧美在线播放 | 青娱乐国产 | 欧美区在线 | 成年人免费看 | 国产日本精品视频 | 好姑娘影视在线观看高清 | 亚洲精品日韩综合观看成人91 | 精品国产18久久久久久二百 | 亚洲精美视频 | 午夜精品久久久久久久久久久久久 | 欧美激情视频一区二区三区在线播放 | 人人干人人干人人 | 国产精品mv在线观看 | 涩涩导航 | 国产一区二区三区四区三区四 | 精品国产乱码久久久久久蜜柚 | 91精品一区 | 爱草视频 | a级大片免费观看 | 国产精品久久久久久久久久久久久 |