<R2> / \ / \ / \ / \ / \ / \ / \ <R1>---------------<R3>
Tegyük fel, hogy R1, R2 és R3 között soros interfész van. A bandwidth parancs arra használatos, hogy megváltoztassuk az alapértelmezett sávszélességet, ami 1544 kb/s.
A show running-config paranccsal ellenőrizhetjük az aktuális sávszélességet:
R1#show running-config
Alapértelmezett beállítások esetén a parancs kimenetében nincs sávszélesség.
Egyébként megtekinthető:
R3#show int s0/0/0 ... ... BW 1544 Kbit ... ...
R1# show ip protocols ... Automatic Summarization: disabled
Legyen például a három hálózat amit összevonhatunk, amit a következő kimenetben láthatunk is:
R3# show ip route eigrp ... 172.16.0.0/16 is vaariably subnetted, 3 subnets, 2 masks D 172.16.1.0/24 ... D 172.16.2.0/24 ... D 172.16.3.0/24 ... ...
Az automatikus Összevonás beállítása:
R1(config)# router eigrp 1 R1(config-rotuer)# auto-summary
Ellenőrzés:
R1# show ip protocols ... Automatic Summarization. enabled 192.168.10.0/24 for Gi0/0, Se0/0/0 ... 172.16.0.0/16 for Se0/0/1 ...
Legyen a példa kedvéért a következő 4 útvonal összevonva:
$ netmask -b 172.16.1.0 172.16.2.0 172.16.3.0 172.16.4.0 10101100 00010000 00000001 00000000 / 11111111 11111111 11111111 11111111 10101100 00010000 00000010 00000000 / 11111111 11111111 11111111 11111111 10101100 00010000 00000011 00000000 / 11111111 11111111 11111111 11111111 10101100 00010000 00000100 00000000 / 11111111 11111111 11111111 11111111
21 darab egyezés.
Ezek után manuális összevonás:
R3(config)# int s0/0/0 R3(config-if)# ip summary-address eigrp 1 172.16.0.0 255.255.248.0
R3(config)# int s0/0/1 R3(config-if)# ipv6 summary-address eigrp 2 2001:db8:def::/48
R2(config)# ip route 0.0.0.0 0.0.0.0 s/0/0/0 R2(config)# router eigrp 1 R2(config-router)# redistribute static
Ellenőrzés:
R2# show ip route ... S* 0.0.0.0/0 is directly connected Serial0/1/0
R1(config)# ipv6 route ::/0 s0/1/0 R1(config)# ipv6 router eigrp 2 R1(config-rtr)# redistribute static
R1# show ipv6 route
IPv4:
R1(config)# int s0/0/0 R1(config-if)# ip bandwidth-percent eigrp 1 40
R2(config)# int s0/0/0 R2(config-if)# ip bandwidth-percent eigrp 1 40
IPv6:
R1(config)# int s0/0/0 R1(config-if)# ipv6 bandwidth-percent eigrp 2 40
R2(config)# int s0/0/0 R2(config-if)# ipv6 bandwidth-percent eigrp 2 40
R1(config)# int s0/0/0 R1(config-if)# ip hello-interval eigrp 1 60 R1(config-if)# ip hold-time eigrp 1 160
IPv6:
R1(config)# int s0/0/0 R1(config-if)# ipv6 hello-interval eigrp 2 60 R1(config-if)# ipv6 hold-time eigrp 2 160
R2(config)# int s0/0/0 R2(config-if)# ipv6 hello-interval eigrp 2 60 R2(config-if)# ipv6 hold-time eigrp 2 160
R3# show ip protocols ... Maximum path: 4 ...
Az irányító táblában két egyenlő mértékű útvonal van:
R3# show ip route eigrp ... D 172.16.3.0/30 [90/41024000] via 192.168.10.9, 00:14:24, Serial0/0/1 [90/41024000] via 192.168.10.5, 00:14:24, Serial0/0/0 ...
A maximális útvonalak száma:
R1(config-router)#maximum-paths 8
A szám 1-32 közötti érték lehet.
R1(config)# key chain KULCS R1(config-keychain)# key 1 R1(config-keychain-key)# key-string titok R1(config-keychain-key)# exit R1(config-keychain)# exit R1(config)# int s0/0/0 R1(config-if)# ip authentication mode eigrp 1 md5 R1(config-if)# ip authentication key-chain eigrp 1 KULCS R1(config-if)# exit R1(config)# int s0/0/1 R1(config-if)# ip authentication mode eigrp 1 md5 R1(config-if)# ip authentication key-chain eigrp 1 KULCS R1(config-if)# end
Ellenőrzés:
R1# show ip eigrp neighbors