精品丰满熟女一区二区三区_五月天亚洲欧美综合网_亚洲青青青在线观看_国产一区二区精选

  • <menu id="29e66"></menu>

    <bdo id="29e66"><mark id="29e66"><legend id="29e66"></legend></mark></bdo>

  • <pre id="29e66"><tt id="29e66"><rt id="29e66"></rt></tt></pre>

      <label id="29e66"></label><address id="29e66"><mark id="29e66"><strike id="29e66"></strike></mark></address>
      學習啦>學習電腦>網絡知識>路由器>路由器設置>cisco思科>

      思科路由怎么配置EIGRP

      時間: 權威724 分享

        思科制造的路由器設備、交換機和其他設備承載了全世界80%的互聯網通信,成為硅谷中新經濟的傳奇,那么你知道思科路由怎么配置EIGRP嗎?下面是學習啦小編整理的一些關于思科路由怎么配置EIGRP的相關資料,供你參考。

        思科路由配置EIGRP的方法

        拓撲圖

        接口連接:

        Router1 S0/0 <----> Router2 S0/0

        Router2 S0/1 <----> Router3 S0/0

        Router1 S0/1 <----> Router4 S0/0

        Router3 S0/1 <----> Router4 S0/1

        VPCS V0/1 <----> Router1 E1/0

        VPCS V0/2 <----> Router3 E1/0

        實驗原理:

        在R1\R2\R3\R4上均運行EIGRP路由協議。R4通過S0/1向R3通告一條0.0.0.0 0.0.0.0的匯總路由,并將這條浮動路由的管理距離設置為250,于是在網絡連通的情況下R3上到達200.1.1.0/24網段的路由經過R2,而在R2與R3鏈路故障的時候,通過R3前往200.1.1.0/24的數據包會通過R4(R3拓撲表中,默認路由由A變?yōu)镻)

        關鍵配置:

        R1:

        interface Serial0/0

        ip address 192.168.1.1 255.255.255.0

        serial restart-delay 0

        !

        interface Serial0/1

        ip address 192.168.3.1 255.255.255.0

        serial restart-delay 0

        !

        interface Ethernet1/0

        ip address 200.1.1.254 255.255.255.0

        half-duplex

        !

        router eigrp 100

        network 192.168.1.0

        network 192.168.3.0

        network 200.1.1.0

        no auto-summary

        R2、R3略,參照R1進行接口IP和路由協議的配置

        重點看下R4的配置

        R4:

        interface Serial0/0

        ip address 192.168.3.2 255.255.255.0

        serial restart-delay 0

        !

        interface Serial0/1

        ip address 192.168.4.1 255.255.255.0

        ip summary-address eigrp 100 0.0.0.0 0.0.0.0 250(向R3通過默認路由,管理距離高于EIGRP默認值)!

        router eigrp 100

        network 192.168.3.0

        network 192.168.4.0

        auto-summary

        查看結果:

        1.R2和R3之間鏈路正常時

        a) R3的路由表:

        R3#sh ip route

        Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP

        D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area

        N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2

        E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP

        i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2

        ia - IS-IS inter area, * - candidate default, U - per-user static route

        o - ODR, P - periodic downloaded static route

        Gateway of last resort is 192.168.4.1 to network 0.0.0.0

        D 200.1.1.0/24 [90/2707456] via 192.168.2.1, 00:00:02, Serial0/0

        C 200.1.2.0/24 is directly connected, Ethernet1/0

        C 192.168.4.0/24 is directly connected, Serial0/1

        D 192.168.1.0/24 [90/2681856] via 192.168.2.1, 00:00:02, Serial0/0

        C 192.168.2.0/24 is directly connected, Serial0/0

        D 192.168.3.0/24 [90/3193856] via 192.168.2.1, 00:00:02, Serial0/0

        D* 0.0.0.0/0 [90/2681856] via 192.168.4.1, 00:00:00, Serial0/1

        b)R3的拓撲表:

        R3#sh ip eigrp topology

        IP-EIGRP Topology Table for AS(100)/ID(200.1.2.254)

        Codes: P - Passive, A - Active, U - Update, Q - Query, R - Reply,

        r - reply Status, s - sia Status

        A 0.0.0.0/0, 1 successors, FD is Inaccessible

        1 replies, active 00:00:00, query-origin: Successor Origin

        Remaining replies:

        via 192.168.2.1, r, Serial0/0

        P 192.168.1.0/24, 1 successors, FD is 2681856

        via 192.168.2.1 (2681856/2169856), Serial0/0

        P 192.168.2.0/24, 1 successors, FD is 2169856

        via Connected, Serial0/0

        P 192.168.3.0/24, 1 successors, FD is 3193856

        via 192.168.2.1 (3193856/2681856), Serial0/0

        P 192.168.4.0/24, 1 successors, FD is 2169856

        via Connected, Serial0/1

        P 200.1.1.0/24, 1 successors, FD is 2707456

        via 192.168.2.1 (2707456/2195456), Serial0/0

        P 200.1.2.0/24, 1 successors, FD is 281600

        via Connected, Ethernet1/0

        2.R2的S0/1設置為DOWN,觀察R3路由表和拓撲表

        a)R3路由表:

        R3#sh ip route

        Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP

        D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area

        N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2

        E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP

        i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2

        ia - IS-IS inter area, * - candidate default, U - per-user static route

        o - ODR, P - periodic downloaded static route

        Gateway of last resort is 192.168.4.1 to network 0.0.0.0

        C 200.1.2.0/24 is directly connected, Ethernet1/0

        C 192.168.4.0/24 is directly connected, Serial0/1

        C 192.168.2.0/24 is directly connected, Serial0/0

        D* 0.0.0.0/0 [90/2681856] via 192.168.4.1, 00:00:05, Serial0/1

        b)R3的拓撲表:

        R3#sh ip eigrp topology

        IP-EIGRP Topology Table for AS(100)/ID(200.1.2.254)

        Codes: P - Passive, A - Active, U - Update, Q - Query, R - Reply,

        r - reply Status, s - sia Status

        P 0.0.0.0/0, 1 successors, FD is 2681856

        via 192.168.4.1 (2681856/2169856), Serial0/1

        P 192.168.4.0/24, 1 successors, FD is 2169856

        via Connected, Serial0/1

        P 200.1.2.0/24, 1 successors, FD is 281600

        via Connected, Ethernet1/0

        該實驗說明,當R2和R3鏈路正常是,通過R3去往PC1的數據包不通過R4,只有當R2、R3間鏈路出現故障,默認路由才啟用。

        看過文章“思科路由怎么配置EIGRP”的人還看了:

        1.思科路由器基本配置教程

        2.cisco思科路由器設置

        3.如何查看Cisco路由器的配置信息

        4.思科路由器配置特點詳細介紹

        5.思科Cisco路由器的基礎配置知識

        6.思科如何配置ACE

        7.cisco思科怎么配置無線AP

        8.思科路由器配置命令大全

        9.思科路由器配置命令

        10.思科路由器怎么進入 思科路由器怎么設置

      思科路由怎么配置EIGRP

      思科制造的路由器設備、交換機和其他設備承載了全世界80%的互聯網通信,成為硅谷中新經濟的傳奇,那么你知道思科路由怎么配置EIGRP嗎?下面是學習啦小編整理的一些關于思科路由怎么配置EIGRP的相關資料,供你參考。 思科路由配置EIGRP的
      推薦度:
      點擊下載文檔文檔為doc格式

      精選文章

      • 思科IP-MAC地址綁定怎么配置
        思科IP-MAC地址綁定怎么配置

        cisco制造的路由器設備、交換機和其他設備承載了全世界80%的互聯網通信,成為硅谷中新經濟的傳奇,那么你知道思科IP-MAC地址綁定怎么配置嗎?下面是學習

      • Cisco常用的路由器交換機配置命令
        Cisco常用的路由器交換機配置命令

        cisco制造的路由器設備、交換機和其他設備承載了全世界80%的互聯網通信,成為硅谷中新經濟的傳奇,那么你了解Cisco常用的路由器交換機配置命令嗎?下面

      • 思科策略路由的使用方式
        思科策略路由的使用方式

        思科cisco制造的路由器設備、交換機和其他設備承載了全世界80%的互聯網通信,成為硅谷中新經濟的傳奇,那么你知道思科策略路由的使用方式嗎?下面是學

      • display命令怎么管好網絡
        display命令怎么管好網絡

        思科cisco制造的路由器設備、交換機和其他設備承載了全世界80%的互聯網通信,成為硅谷中新經濟的傳奇,那么你知道display命令怎么管好網絡嗎?下面是學習

      565486