一个简单的单臂路由试验

一个简单的单臂路由试验_第1张图片
 
 
pc1   ip192.168.1.1
         subnet mask 255.255.255.0
         default getway 192.168.1.254
pc2   ip 192.168.2.1
          subnet mask 255.255.255.0
          default getway  192.168.2.254
 
交换机配置:
交换机
Switch>
Switch>en
Switch#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
Switch(config)#
Switch(config)#host SW1
SW1(config)#
SW1(config)#vlan 2
SW1(config-vlan)#int fa 0/1   连接PC1的交换机端口
SW1(config-if)#swi mode acc
SW1(config-if)#int fa 0/12
SW1(config-if)#swi mode trunk   把交换机连接路由器的端口配置成主干端口,在交换机和路由器间使用主干链路。
SW1(config-if)#int fa 0/13      连接PC2的交换机端口
SW1(config-if)#swi mode acc
SW1(config-if)#swi acc vlan 2
SW1(config-if)#end
 
 
 
路由器配置:
R1Router(config)#host R1
R1(config)#int fa 0/0
R1(config-if)#no shut
%LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up
R1(config-if)#exit
R1(config)#int fa 0/0.1   使用第一个子接口作为VLAN 1的网关,子接口编号与VLAN号没有必然联系
%LINK-5-CHANGED: Interface FastEthernet0/0.1, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0.1, changed state to upR1(config-subif)#enca dot 1         默认封装协议是dot 1Q,1是指VLAN的编号
R1(config-subif)#ip add 192.168.1.254 255.255.255.0
R1(config-subif)#int fa 0/0.200   第200个子接口作为VLAN 2的网关
%LINK-5-CHANGED: Interface FastEthernet0/0.200, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0.200, changed state to upR1(config-subif)#enca dot 2        子接口200的封装协议是dot1Q,相关的VLAN 号是2
R1(config-subif)#ip add 192.168.2.254 255.255.255.0

你可能感兴趣的:(职场,休闲,单臂路由)