路由重发布

路由重发布其实就是在边界路由多了这条命令:

Router(config)#router ospf 1

Router(config-router)#redistribute rip metric 3 //redisstibute是路由重发布的意思。

Router(config-router)#redistribute rip subnets //学习rip

然后也要配置rip来学习ospf的。

Router(config-router)#redistribute ospf 1

/*

*总的意思就是进入ospf去使用路由重发布去学习rip

*/

 ps:边界路由既要配置rip也要配置ospf.

配置loopback命令:

Router(config)#interface loopback 1

Router(config-if)#ip address 192.168.1.100 255.255.255.0

原文地址:https://www.cnblogs.com/xishaonian/p/6806884.html