码迷,mamicode.com
首页 > 其他好文 > 详细

思科项目2实战(dhcp,动态路由ospf,链路捆绑等)

时间:2018-05-14 11:04:32      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:链路捆绑   动态路由   DHCP   

技术分享图片

介绍项目1未提及的三项配置:

  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   //这里的1R3中定义的相同


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,链路捆绑等)

标签:链路捆绑   动态路由   DHCP   

原文地址:http://blog.51cto.com/13469709/2116022

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!