CISCO路由器eigrp快速配置

2024-12-06 09:13:45


拓扑说明:

ROUTER 为出口路由器,内部有两个不同网段。

配置:

出口路由配置

hostname Router

key chain 1

key 1

key-string 123

//配置密钥

interface Loopback0

ip address 1.1.1.1 255.255.255.255

//配置环回口模拟外网

ip route 0.0.0.0 0.0.0.0 Loopback0

//配置默认路由,用于下发到EIGRP必须配置出接口

interface GigabitEthernet0/0

ip address 100.0.0.1 255.255.255.0

ip authentication mode eigrp 90 md5

ip authentication key-chain eigrp 90 1

//配置与RT1 EIGRP认证密码

interface GigabitEthernet0/1

ip address 200.0.0.1 255.255.255.0

router eigrp 90

no auto-summary

eigrp stub static

network 0.0.0.0

network 100.0.0.1 0.0.0.0

network 200.0.0.1 0.0.0.0

//配置EIGRP 末节区域减少分支路由条目,下发默认路由


RT1配置

hostname RT1

key chain 1

key 1

key-string 123

//配置认证密钥

interface GigabitEthernet0/1

ip address 100.0.0.2 255.255.255.0

ip authentication mode eigrp 90 md5

ip authentication key-chain eigrp 90 1

////配置与出口路由 EIGRP认证密码

router eigrp 90

no auto-summary

network 100.0.0.0 0.0.0.255


RT2 配置

hostname RT2

interface GigabitEthernet0/1

ip address 200.0.0.2 255.255.255.0

router eigrp 90

no auto-summary

network 200.0.0.2 0.0.0.0


配置完成后查看EIGRP邻居和拓扑



内网路由条目


相关推荐