在ensp中R1-R2-R3 -R5 运行RIPV2,进程号1。R6-R7运行RIPV1,进程号100。R4除了Serial 4/0/0运行RIPV1外(进程号100),其他接口运行RIPV2(进程号1)。R5的环回接口模拟运营商,不能通告。给出具体命令
时间: 2024-11-06 09:13:20 浏览: 11
在思科模拟器(ENSP)中配置RIP V2 和 RIP V1 的流程如下:
首先,在R1、R2和R3上启用RIP V2 并设置进程号为1:
```bash
R1(config)# router rip 1
R1(ripg)# network 0.0.0.0
R2(config)# router rip 1
R2(ripg)# network 0.0.0.0
R3(config)# router rip 1
R3(ripg)# network 0.0.0.0
```
接着,在R4上,需要区分接口,Serial 4/0/0运行RIP V1(进程号100):
```bash
R4(config)# router rip 100
R4(config-router)# interface Serial4/0/0
R4(config-if-rip100)# network 0.0.0.0
R4(config-router)# !
R4(config-router)# interface FastEthernet (或其他接口)
R4(config-if-rip1)# network 0.0.0.0
```
在R5和R6/R7上分别运行RIP V1 和RIP V2:
```bash
R5(config)# router rip 100
R5(config-router)# no auto-summary
R5(config-router)# redistribute static metric 10
R5(config-router)# ! (R5模拟运营商接口)
R6(config)# router rip 100
R6(ripg)# network 0.0.0.0
R7(config)# router rip 1
R7(ripg)# network 0.0.0.0
```
注意在R5上禁用了自动汇总(auto-summary),因为RIP V1不支持AS外部路由。
最后,R5的环回接口由于模拟运营商,一般不会通告路由,所以不需要配置:
```bash
R5(config-if-loopback)# no ip route-cache
```
阅读全文