思科项目2实战(dhcp,动态路由ospf,链路捆绑等)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了思科项目2实战(dhcp,动态路由ospf,链路捆绑等)相关的知识,希望对你有一定的参考价值。
介绍项目1未提及的三项配置:
链路捆绑配置:
R3(config)#int range fa1/13 -14
R3(config-if-range)#channel-group 1 mode on
R3#show etherchannel summary 查看捆绑配置
SW1(config)#int range fa1/13 -14
SW1(config-if-range)#channel-group 1 mode on //这里的1与R3中定义的相同
2.DHCP:
R4#conf t
R4(config)#ip dhcp pool v20
R4(dhcp-config)#network 192.168.20.0 /24
R4(dhcp-config)#default-router 192.168.20.1
vcps上:pc打 ip dhcp 即可获取动态ip
3.动态路由(OSPF):RIP类似
和静态路由区别:静态是缺什么加什么,动态是自己知道什么说什么
R1(config)#router ospf 110
R1(config-router)#network 192.168.13.0 0.0.0.255 a 0
R1(config-router)#net 192.168.14.0 0.0.0.255 a 0
R3(config)#router ospf 110
R3(config-router)#net 192.168.13.0 0.0.0.255 a 0
R3(config-router)#net 192.168.10.0 0.0.0.255 a 0
R3(config-router)#net 192.168.20.0 0.0.0.255 a 0
R4(config)#router ospf 110
R4(config-router)#net 192.168.14.0 0.0.0.255 a 0
R4(config-router)#net 192.168.10.0 0.0.0.255 a 0
R4(config-router)#net 192.168.20.0 0.0.0.255 a 0
以上是关于思科项目2实战(dhcp,动态路由ospf,链路捆绑等)的主要内容,如果未能解决你的问题,请参考以下文章