用boson做vlan的单臂路由实验

用boson做vlan的单臂路由实验
2007-11-22 09:04
这次用boson做的vlan单臂路由实验比较简单,有人说用Dynamips说比较真实,可是vlan小实验用boson做已经足够了。这个实验可以很好地理解VTP,trunk的概念。如图:

链接说明:
router 1的fastethernet 0/0与switch 1的fastethernet 0/1相连
switch 1的fastethetnet 0/2与PC1相连
switch 1的fastethernet 0/3与PC2相连

PC 1:
ipconfig /ip 192.168.1.2 255.255.255.0
ipconfig /dg 192.168.1.1

PC 2:
ipconfig /ip 192.168.2.2 255.255.255.0
ipconfig /dg 192.168.2.1
(让两台PC在不同的网段)

switch 1:
en
conf t
vlan 2 name vlanpc1          配置vlan
vlan 3 name vlanpc2
interface fastethernet 0/2   中继配置
switchport mode trunk
switchport trunk encapsulation dot1q
switchport access vlan 2
interface fastethernet 0/3   中继配置
switchport mode trunk
switchport trunk encapsulation dot1q
switchport access vlan 3

注::因为现在只有一台交换机,所以VTP不用配置,但是当超过一台交换机的时候一定要配置VTP。


router 1:
en
conf t
interface fastethernet 0/0.2    配置子接口,协议类型为cisco专用的dot1q
encapsulation dot1q 2
ip address 192.168.1.3 255.255.255.0
exit
interface fastethernet 0/0.3    配置子接口,协议类型为cisco专用的dot1q
encapsulation dot1q 3
ip address 192.168.2.3 255.255.255.0
exit
interface fastethernet 0/0      启用
no shutdown

这样单臂路由就配好了,现在可以到PC 1里面测试:ping 192.168.2.2 PC 2里面测试:ping 192.168.1.2 如果通了就表示成功了

你可能感兴趣的:(职场,VLAN,休闲,boson,路由实验)