pc4 pc5 位于vlan 10 从路由器dhcp获取的IP段 192.168.10.0/24
pc6 pc7位于vlan 20 从路由器dhcp获取的IP段 192.168.20.0/24
vlan 10内所有的机器的网关为192.168.10.254
vlan 20内所有的机器的网关为192.168.20.254
不同vlan 可以进行通讯
1.配置交换机吧
接口划分至相应的vlan
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
Switch
#show vlan brief
VLAN Name Status Ports
---- -------------------------------- --------- -------------------------------
1 default active Fa0
/6
, Fa0
/7
, Fa0
/8
, Fa0
/9
Fa0
/10
, Fa0
/11
, Fa0
/12
, Fa0
/13
Fa0
/14
, Fa0
/15
, Fa0
/16
, Fa0
/17
Fa0
/18
, Fa0
/19
, Fa0
/20
, Fa0
/21
Fa0
/22
, Fa0
/23
, Fa0
/24
10 v10 active Fa0
/2
, Fa0
/3
20 v20 active Fa0
/4
, Fa0
/5
1002 fddi-default active
1003 token-ring-default active
1004 fddinet-default active
1005 trnet-default active
Switch
#
|
2.配置vlan 的
1
2
3
4
|
SW1(config)
#interface vlan 10
SW1(config-
if
)
#ip helper-address 192.168.10.254 #单臂路由的子接口 vlan10的
SW1(config)
#interface vlan 20
SW1(config-
if
)
#ip helper-address 192.168.20.254 #单臂路由的子接口 vlan20的
|
3.配置交换机的上行接口为trunk
1
2
|
Switch(config)
#interface fastEthernet 0/1Switch(config-if)#sw
Switch(config-
if
)
#switchport mode trunk
|
4.配置路由器单臂路由(路由器和交换机链接的端口是fa0/0 口)
1
2
3
4
5
6
7
8
|
Router(config)
#interface fastEthernet 0/0.10
Router(config-subif)
#encapsulation dot1Q 10
Router(config-subif)
#ip add
Router(config-subif)
#ip address 192.168.10.254 255.255.255.0
Router(config)
#interface fastEthernet 0/0.20
Router(config-subif)
#encapsulation dot1Q 20
Router(config-subif)
#ip add
Router(config-subif)
#ip address 192.168.20.254 255.255.255.0
|
5.配置dhcp
1
2
3
4
5
6
7
8
9
10
11
12
13
|
Router(config)
#ip dhcp pool vlan10 #vlan10只是名字
Router(dhcp-config)
#network 192.168.10.0 255.255.255.0
Router(dhcp-config)
#dns-server 223.5.5.5
Router(dhcp-config)
#default-router 192.168.10.254
Router(dhcp-config)
#exit
Router(config)
#ip dhcp excluded-address 192.168.10.254
Router(config)
#ip dhcp pool vlan20 #vlan20只是名字
Router(dhcp-config)
#network 192.168.20.0 255.255.255.0
Router(dhcp-config)
#dns-server 223.5.5.5
Router(dhcp-config)
#default-router 192.168.20.254
Router(dhcp-config)
#exit
Router(config)
#ip dhcp excluded-address 192.168.20.254
|
最终测试:不同vlan获取了不同的Ip 不同vlan可以通讯 OK
本文转自 小小三郎1 51CTO博客,原文链接:http://blog.51cto.com/wsxxsl/1953753,如需转载请自行联系原作者