Eigrp 小綜合

Eigrp 小綜合

 


貼下配置:

hostname SW3560
!
interface FastEthernet0/0
 no switchport
 ip address 10.1.1.1 255.255.255.0
!
interface FastEthernet0/1
 no switchport
 ip address 10.1.2.1 255.255.255.0
!
interface FastEthernet0/5
 switchport access vlan 10
!
interface Vlan10
 ip address 192.168.1.1 255.255.255.0
!
router eigrp 1
 offset-list 1 in 1000           偏移列表,是指在原有度量值上增加1000   
 network 10.1.1.0 0.0.0.255
 network 10.1.2.0 0.0.0.255
 network 192.168.1.0
 no auto-summary
!
ip forward-protocol nd
!
access-list 1 permit any  定義ACL抓取偏移列表條目,此爲any


hostname R1
!

key chain 1
 key 1
   key-string cisco    定義Eigrp認證密鑰
!
interface FastEthernet0/0
 bandwidth 100000   修改帶寬目的是爲了實現不等價負載
 ip address 10.1.1.2 255.255.255.0
!
interface Serial2/0
 bandwidth 1544
 ip address 100.1.1.1 255.255.255.252
 ip authentication mode eigrp 1 md5    認證模式MD5
 ip authentication key-chain eigrp 1 1   調用上面的key chain 1
 encapsulation ppp
 clock rate 128000
!
router eigrp 1
 network 10.1.1.0 0.0.0.255
 network 100.1.1.0 0.0.0.3
 no auto-summary
!

 


hostname R2
!
key chain 1
 key 1
   key-string cisco
!
interface FastEthernet0/0
 ip address 10.1.2.2 255.255.255.0
!
interface Serial2/0
 ip address 200.1.1.1 255.255.255.252
 ip authentication mode eigrp 1 md5
 ip authentication key-chain eigrp 1 1
 encapsulation ppp
 serial restart-delay 0
 clock rate 128000
!
router eigrp 1
 network 10.1.2.0 0.0.0.255
 network 200.1.1.0 0.0.0.3
 no auto-summary
!

 


hostname R3
!
key chain 1
 key 1
   key-string cisco
!
interface Loopback0
 ip address 3.3.3.3 255.255.255.0
!
interface FastEthernet0/0
 ip address 172.16.1.1 255.255.255.0
!
interface Serial2/0
 ip address 100.1.1.2 255.255.255.252
 ip authentication mode eigrp 1 md5
 ip authentication key-chain eigrp 1 1
 encapsulation ppp
 serial restart-delay 0
!
interface Serial2/1
 ip address 200.1.1.2 255.255.255.252
 ip authentication mode eigrp 1 md5
 ip authentication key-chain eigrp 1 1
 encapsulation ppp
 serial restart-delay 0
!
router eigrp 1
 variance 2           修改variance 實現不等價負載
 passive-interface FastEthernet0/0
 network 3.3.3.0 0.0.0.255
 network 100.1.1.0 0.0.0.3
 network 172.16.1.0 0.0.0.255
 network 200.1.1.0 0.0.0.3
 no auto-summary
!

 


利用擴展ping檢測鏈路中最小MTU

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章