亚洲一级电影在线观看,九九精品无码专区免费,亚洲AV无码资源在线观看 ,欧美国产高清

EIGRP帶寬實例配置

時間:2024-09-19 21:12:41 網(wǎng)絡技術(shù) 我要投稿
  • 相關(guān)推薦

EIGRP帶寬實例配置

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

  

  修改帶寬占用比:

  R1(config)# interface s0/0

  R1(config-if)# bandwidth 128 //注意,這里的單位是KB/s

  R1(config-if)# ip bandwidth-percent eigrp 100 40 //修改EIGRP 路由信息占用帶寬的百分比為40

  R1(config-if)# end

  R2(config)# interface s0/0

  R2(config-if)# bandwidth 64 //注意,這里的單位是KB/s

  R2(config-if)# end

  R3(config)# interface s0/0

  R3(config-if)# bandwidth 64 //注意,這里的單位是KB/s

  R3(config-if)# end

  驗證:

  R1#show interfaces serial 0/0 | include BW

  MTU 1500 bytes, BW 128 Kbit, DLY 20000 usec,

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

  點對點子接口方式:

  R1(config)#default interface Serial 0/0 //將接口的配置還原為默認值

  Building configuration…

  Interface Serial0/0 set to default configuration

  R1(config)#

  *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

  *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

  *Mar 1 01:45:30.779: %DUAL-5-NBRCHANGE: IP-EIGRP(0) 100: Neighbor 192.168.1.3 (Serial0/0) is down: interface down

  *Mar 1 01:45:30.787: %DUAL-5-NBRCHANGE: IP-EIGRP(0) 100: Neighbor 192.168.1.2 (Serial0/0) is down: interface down

  *Mar 1 01:45:31.483: %LINEPROTO-5-UPDOWN: Line protocol on Interface Serial0/0, changed state to down

  *Mar 1 01:45:33.499: %LINEPROTO-5-UPDOWN: Line protocol on Interface Serial0/0, changed state to up

  R1(config)#interface Serial 0/0

  R1(config-if)#encapsulation fram  //封裝為幀中繼模式

  R1(config-if)#no fram inv //關(guān)閉自動獲取

  R1(config-if)#no sh

  R1(config-if)#ip split eigrp 100 //打開水平分割

  R1(config-if)#int s0/0.1 point //設置點對點子接口

  R1(config-subif)#ip add 192.168.1.1 255.255.255.252

  R1(config-subif)#fram interface-dlci 102 //指定接口DLCI 號

  R1(config-fr-dlci)#int s0/0.2 point //配置R1 和R3 之間的子接口

  R1(config-subif)#ip add 192.168.1.5 255.255.255.252

  R1(config-subif)#fram interface-dlci 103

  *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

  *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

  R1(config-fr-dlci)#end

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

  R2(config)#int s0/0

  R2(config-if)#ip add 192.168.1.2 255.255.255.252

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

  R3(config)#int s0/0

  R3(config-if)#ip add 192.168.1.6 255.255.255.252

  *Mar 1 01:47:51.331: %DUAL-5-NBRCHANGE: IP-EIGRP(0) 100: Neighbor 192.168.1.5 (Serial0/0) is down: address changed

  *Mar 1 01:47:51.343: %DUAL-5-NBRCHANGE: IP-EIGRP(0) 100: Neighbor 192.168.1.1 (Serial0/0) is down: address changed

  *Mar 1 01:47:52.463: %DUAL-5-NBRCHANGE: IP-EIGRP(0) 100: Neighbor 192.168.1.5 (Serial0/0) is up: new adjacency

  R3(config-if)#no frame-relay map ip 192.168.1.1 301 broadcas //將之前配置的取消

  R3(config-if)#fram map ip 192.168.1.5 301 br

  驗證配置:

  R1#show ip eigrp neighbors

  IP-EIGRP neighbors for process 100

  H Address Interface Hold Uptime SRTT RTO Q Seq

  (sec) (ms) Cnt Num

  1 192.168.1.6 Se0/0.2 173 00:06:53 117 1053 0 15

  0 192.168.1.2 Se0/0.1 135 00:07:12 1055 5000 0 16

  R3#ping 10.1.1.1

  Type escape sequence to abort.

  Sending 5, 100-byte ICMP Echos to 10.1.1.1, timeout is 2 seconds:

  !!!!!

  Success rate is 100 percent (5/5), round-trip min/avg/max = 20/89/180 ms

【EIGRP帶寬實例配置】相關(guān)文章:

思科DHCP服務器配置實例解析03-31

思科三層交換機配置實例及命令03-04

H3C交換機vlan配置實例03-21

h3c交換機配置telnet實例教程07-04

EIGRP協(xié)議理論詳解02-26

顯示器的帶寬是什么07-08

linux配置dns服務器配置命令03-05

電腦配置知識03-05

ASP編程實例大全05-29

主站蜘蛛池模板: 国产日韩综合一区在线观看| 在线综合亚洲欧洲综合网站| 亚洲最大综合久久网成人| 国产尤物av尤物在线看| 国产精品熟女在线视频| 什邡市| 镇赉县| 一区二区三区高清无马在线| 女人毛片a级大学毛片免费| 色久综合在线| 午夜电影在线观看国产1区| 欧美日韩在线第一页免费观看| 国产成人综合久久精品免费| 欧美日韩不卡合集视频| 国产亚洲精品aaaa片小说| 无码日韩人妻精品久久蜜桃| 八个少妇沟厕小便漂亮各种大屁股| 无码人妻精品中文字幕免费| 亚洲高清国产拍精品熟女| 波多久久夜色精品国产| 亚洲女同精品一区二区| 亚洲国产成人一区二区在线| 免费观看国产小粉嫩喷水精品午.| 深夜福利啪啪片| 仁布县| 久久乐国产精品亚洲综合| 免费无码又爽又刺激成人| 国产99久久亚洲综合精品西瓜tv| 久久99国产精一区二区三区| 亚洲狠狠婷婷综合久久| 克东县| 欧美激情中文字幕在线一区二区| 精品无码美妇视频网站 | 欧洲熟妇色xxxx欧美老妇多毛网站| 中文字幕精品无码一区二区三区| 国产亚洲精品久久久久丝瓜| 日韩激情一区二区无码AV| 99久久国产综合精品五月天| 亚洲中文字幕av无码区| 高清国产精品人妻一区二区| 天干天干天啪啪夜爽爽99|