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

单边路由实验

时间:2016-09-27 21:01:01      阅读:260      评论:0      收藏:0      [点我收藏+]

标签:password   路由器   台电脑   交换机   enable   

                                单边路由实验

这个实验主要是解决了用一个路由器完成两个VLAN之间的通信。

实验器材:一台交换机  一台录由器   两台电脑。还有些双胶线。

实验过程:

            1:连线 ,把PC1,PC2 分别连到交换机的0/1,0/2号端口。把交换机的0/10号端口和路由器的0/1号端口相连。

            2:进行交换机和路由器的一些配置。

                

switch(config)#enab

switch(config)#enable pass

switch(config)#enable password 123

switch(config)#vlan 10

switch(config-vlan)#exit

switch(config)#vlan 20

switch(config-vlan)#exit

switch(config-vlan)#int fa0/1

switch(config-if)#sw acc vlan 10

switch(config-if)#exit

switch(config)#int fa0/2

switch(config-if)#sw acc vlan 20

switch(config-if)#exit

switch(config)#int fa0/10

switch(config-if)#sw mode trunk

switch(config-if)#end

录由器的配置:

router(config-if)#

router(config-if)#exit

router(config)#int fa0/1.1

router(config-subif)#

%LINK-5-CHANGED: Interface FastEthernet0/1.1, changed state to up


%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1.1, changed state to up


router(config-subif)#ip add 1.1.1.254 255.255.255.0


% Configuring IP routing on a LAN subinterface is only allowed if that

subinterface is already configured as part of an IEEE 802.10, IEEE 802.1Q,

or ISL vLAN.


router(config-subif)#

router(config-subif)#encpa

router(config-subif)#encap

router(config-subif)#encapsulation  dot1

router(config-subif)#encapsulation  dot1Q 

router(config-subif)#encapsulation  dot1Q 1

router(config-subif)#encap

router(config-subif)#encapsulation dot

router(config-subif)#encapsulation dot1Q 10

router(config-subif)#ip add 1.1.1.254 255.255.255.0

router(config-subif)#no shut

router(config-subif)#exit

router(config)#int fa0/1.2


%LINK-5-CHANGED: Interface FastEthernet0/1.2, changed state to up


%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1.2, changed state to up

router(config-subif)#encap

router(config-subif)#encapsulation dot

router(config-subif)#encapsulation dot1Q 20

router(config-subif)#ip add 2

                            ^

% Invalid input detected at ‘^‘ marker.

router(config-subif)#ip add 2.2.2.254 255.255.255.0

   3;给两台电脑分别设置    IP分别为1.1.1.1 255.255.255.0 和 2.2.2.2 255.255.255.0

   4:测试两台电脑间能否PING通。

    5:总结:这次试验最为奇特的地方是一个路由器的端口可以设成两个  很多个子端口,可以分别高IP。

      还有个新东西是VLAN 出的数据包路由器并不能识别,所以还行在路由器的子端口里加上encapsultion dotlQ  vlan  这么一条指令。

       动手操作得以实现,踏上网管之路。

                          ^

            

单边路由实验

标签:password   路由器   台电脑   交换机   enable   

原文地址:http://12044930.blog.51cto.com/12034930/1856927

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