D、将交换机端口划入VLAN
例如,要将par1、par2、par3……分支交换机的端口1划入counter VLAN,端口2划入marketVLAN,端口3划入managing VLAN……
par1(config)#interface fastethernet 0/1 配置端口1
par1(config-if)#switchport access VLAN 10 归属counter VLAN
par1(config)#interface fastethernet 0/2 配置端口2
par1(config-if)#switchport access VLAN 11 归属market VLAN
par1(config)#interface fastethernet 0/3 配置端口3
par1(config-if)#switchport access VLAN 12 归属managing VLAN
par2(config)#interface fastethernet 0/1 配置端口1
par2(config-if)#switchport access VLAN 10 归属counter VLAN
par2(config)#interface fastethernet 0/2 配置端口2
par2(config-if)#switchport access VLAN 11 归属market VLAN
par2(config)#interface fastethernet 0/3 配置端口3
par2(config-if)#switchport access VLAN 12 归属managing VLAN
par3(config)#interface fastethernet 0/1 配置端口1
par3(config-if)#switchport access VLAN 10 归属counter VLAN
par3(config)#interface fastethernet 0/2 配置端口2
par3(config-if)#switchport access VLAN 11 归属market VLAN
par3(config)#interface fastethernet 0/3 配置端口3
par3(config-if)#switchport access VLAN 12 归属managing VLAN
……
E、配置三层交换
到这里,VLAN已经基本划分完毕。但是,VLAN间如何实现三层(网络层)交换呢?这时就要给各VLAN分配网络(ip)地址了。给VLAN分配ip地址分两种情况,其一,给VLAN所有的节点分配静态ip地址;其二,给VLAN所有的节点分配动态ip地址。下面就这两种情况分别介绍。
假设给VLAN counter分配的接口ip地址为172.16.58.1/24,网络地址为:172.16.58.0,
VLAN market 分配的接口ip地址为172.16.59.1/24,网络地址为:172.16.59.0,
VLAN managing分配接口ip地址为172.16.60.1/24, 网络地址为172.16.60.0
……
如果动态分配ip地址,则设网络上的dhcp服务器ip地址为172.16.1.11。
(1)给VLAN所有的节点分配静态ip地址。
首先在核心交换机上分别设置各VLAN的接口ip地址。核心交换机将VLAN做为一种接口对待,就象路由器上的一样,如下所示:
com(config)#interface VLAN 10
com(config-if)#ip address 172.16.58.1 255.255.255.0 VLAN10接口ip
com(config)#interface VLAN 11
com(config-if)#ip address 172.16.59.1 255.255.255.0 VLAN11接口ip
com(config)#interface VLAN 12
com(config-if)#ip address 172.16.60.1 255.255.255.0 VLAN12接口ip
……
再在各接入VLAN的计算机上设置与所属VLAN的网络地址一致的ip地址,并且把默认网关设置为该VLAN的接口地址。这样,所有的VLAN也可以互访了。
(2)给VLAN所有的节点分配动态ip地址。
首先在核心交换机上分别
设置各VLAN的接口ip地址和同样的dhcp服务器的ip地址,如下所示:
com(config)#interface VLAN 10
com(config-if)#ip address 172.16.58.1 255.255.255.0 VLAN10接口ip
com(config-if)#ip helper-address 172.16.1.11 dhcp server ip
com(config)#interface VLAN 11
com(config-if)#ip address 172.16.59.1 255.255.255.0 VLAN11接口ip
com(config-if)#ip helper-address 172.16.1.11 dhcp server ip
com(config)#interface VLAN 12
com(config-if)#ip address 172.16.60.1 255.255.255.0 VLAN12接口ip
com(config-if)#ip helper-address 172.16.1.11 dhcp server ip
……
再在dhcp服务器上设置网络地址分别为172.16.58.0,172.16.59.0,172.16.60.0的作用域,并将这些作用域的“路由器”选项设置为对应VLAN的接口ip地址。这样,可以保证所有的VLAN也可以互访了。
最后在各接入VLAN的计算机进行网络设置,将ip地址选项设置为自动获得ip地址即可。