cisco路由器EIGRP基础配置命令

在这里插入图片描述
1.IP地址等基本配置自行配置

2.配置EIGRP协议
R1(config)#router eigrp 1 启用EIGRP路由选择协议进程,AS号为1
R1(config-router)#network 172.16.1.0 0.0.0.255 宣告网段,子网+反掩码的形式
R1(config-router)#network 192.168.1.4 0.0.0.3
R1(config-router)#network 12.1.1.0 0.0.0.255
R1(config-router)#no auto-summary 需要关闭自动汇总
R2(config)#router eigrp 1
R2(config-router)#network 192.168.1.4 0.0.0.3
R1(config-router)#network 12.1.1.0 0.0.0.255
R2(config-router)#network 10.10.10.0 0.0.0.255
R2(config-router)#no auto-summary 需要关闭自动汇总

3.查看路由器信息
R1#show ip protocols 查看路由协议
R1#show ip eigrp neighbors 查看邻居列表
R1#show ip eigrp topology 查看拓扑结构数据库
R1#show ip eigrp interfaces 查看运行EIGRP协议的接口状况
R1#show ip eigrp traffic 报告EIGRP发送和接收到的数据包的统计情况
R1#debug eigrp packets 显示发送和接收的EIGRP数据包
R1#debug eigrp neighbors 查看邻居关系的建立情况 (PT模拟器没有该命令)
R1#debug ip eigrp 监测IP EIGRP路由事件信息 (PT模拟器没有该命令)

发布了5 篇原创文章 · 获赞 0 · 访问量 4

猜你喜欢

转载自blog.csdn.net/qq_45562742/article/details/105466845