cisco路由器eigrp配置
时间: 2024-08-13 07:09:48 浏览: 114
Cisco EIGRP(Enhanced Interior Gateway Routing Protocol)是一种内部网关协议(IGP),用于在大型网络中提供高效、可靠的路由选择。以下是基本的EIGRP配置步骤:
1. 配置接口为EIGRP区域成员:
```
router(config)# interface Ethernet0/0
router(Ethernet0/0)# ip address <IP> <NETMASK>
router(Ethernet0/0)# network <network_range> //宣告网络到EIGRP
router(Ethernet0/0)# eigrp <area_number> enable //启用EIGRP并指定区域号
```
2. 安全设置和认证(可选):
```
router(config-router)# password <password> //设置密码保护,如果启用验证
router(config-router)# authentication md5/sha1 //选择加密类型
```
3. 设置自动汇总:
```
router(config-router)# distribute-list <list_name> in //定义汇总列表,将较小子网汇总
```
4. 配置metric参数(度量值):
```
router(config-router)# default-information originate //启动缺省路由生成
router(config-router)# metric-type internal //设置度量类型,如外部或内部
5. 启动EIGRP进程:
```
router(config)# no shutdown //避免关闭整个路由器,仅针对EIGRP进程
router(config-router)# end //返回全局配置模式
router# eigrp <process_id> start //启动EIGRP进程
```
6. 验证配置:
```
show ip protocols | include EIGRP //检查EIGRP是否正在运行及邻居状态
show ip route eigrp //查看EIGRP路由表
```
阅读全文