<dfn id="w48us"></dfn><ul id="w48us"></ul>
  • <ul id="w48us"></ul>
  • <del id="w48us"></del>
    <ul id="w48us"></ul>
  • EIGRP帶寬實例配置詳解

    時間:2024-10-07 16:12:44 網絡技術 我要投稿
    • 相關推薦

    EIGRP帶寬實例配置詳解

      實際上串行接口的帶寬并不是默認值,這里我們按照需求修改接口的帶寬并修改EIGRP 占用帶寬的百分比例。拓撲圖如下:

      CCNP:

      修改帶寬占用比:

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

      點對點子接口方式:

      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 //關閉自動獲取

      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 地址和子網掩碼有所變化必須修改

      R2(config)#int s0/0

      R2(config-if)#ip add 192.168.1.2 255.255.255.252

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

      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帶寬實例配置詳解】相關文章:

    EIGRP帶寬實例配置09-19

    EIGRP協議理論詳解06-28

    思科ACE的基本配置實例08-14

    植物景觀配置詳解05-20

    思科路由器配置端口帶寬限制教程06-17

    JQuery菜單效果實例詳解08-29

    word 文檔域應用實例詳解05-19

    思科交換機劃分vlan配置實例09-15

    思科DHCP服務器配置實例解析07-25

    H3C配置三層交換機配置實例09-12

    主站蜘蛛池模板: 亚洲国产精品自在拍在线播放 | 亚洲日韩国产精品第一页一区| 亚洲国产精品无码av| 国产精品无码素人福利| 99久久人妻无码精品系列| 综合国产精品第一页| 精品一区二区三区在线观看| 四虎成人精品免费影院| 国产在线精品一区二区中文| 一本一道精品欧美中文字幕 | 国产精品福利在线播放| 久久久无码精品亚洲日韩蜜臀浪潮| 欧美日韩精品一区二区三区不卡 | 9re热国产这里只有精品| 久久精品www| 99精品免费视频| 国产精品网站在线观看免费传媒 | 精品国产乱码久久久久久1区2区| 亚洲精品无码AV人在线播放| 欧美日韩在线精品一区二区三区激情综合| 99久久伊人精品综合观看| 精品精品国产自在久久高清| 999精品视频这里只有精品| 国产成人精品2021| 国产91久久精品一区二区| 国内精品伊人久久久久av一坑| 无码精品黑人一区二区三区| 亚洲精品乱码久久久久久按摩| 亚洲精品无码成人片在线观看 | 久久se这里只有精品| 国产精品一区12p| 国产精品二区观看| 国产观看精品一区二区三区| 99久久伊人精品综合观看| 国产精品国产高清国产专区| 国产成人精品久久亚洲高清不卡| 丝袜美腿国产精品视频一区| 69堂午夜精品视频在线| 国产精品理论片在线观看| 国产精品成人99久久久久| 精品无码专区亚洲|