第五步:用3550配置DHCP服务器
1./*VLAN 2可用地址池和相应参数的配置,有几个VLAN要设几个地址池*/
2.Switch(Config)Ip Dhcp Pool Test01
3./*设置可分配的子网*/
4.Switch(Config-pool)Network 192.168.2.0 255.255.255.0
5./*设置DNS服务器*/
6.Switch(Config-pool)Dns-server 192.168.2.10
7./*设置该子网的网关*/
8.Switch(Config-pool)Default-router 192.168.2.1
9.
10./*配置VLAN 3所用的地址池和相应参数*/
11.Switch(Config)Ip Dhcp Pool Test02
12.Switch(Config-pool)Network 192.168.3.0 255.255.255.0
13.Switch(Config-pool)Dns-server 192.168.2.10
14.Switch(Config-pool)Default-router 192.168.3.1
15.
16./*配置VLAN 4所用的地址池和相应参数*/
17.Switch(Config)Ip Dhcp Pool Test03
18.Switch(Config-pool)Network 192.168.4.0 255.255.255.0
19.Switch(Config-pool)Dns-server 192.168.2.10
20.Switch(Config-pool)Default-router 192.168.4.1
第六步:配置DHCP保留不分配的地址
1.Switch(Config)Ip Dhcp Excluded-address 192.168.2.2 192.168.2.10
2.Switch(Config)Ip Dhcp Excluded-address 192.168.3.2 192.168.3.10
3.Switch(Config)Ip Dhcp Excluded-address 192.168.4.2 192.168.4.10
第七步:启用路由
1./*路由启用后,各VLAN间主机可互相访问*/
2.Switch(Config)Ip Routing
第八步:配置访问控制列表
1.Switch(Config)access-list 103 permit ip 192.168.2.0 0.0.0.255 192.168.3.0 0.0.0.255
2.Switch(Config)access-list 103 permit ip 192.168.3.0 0.0.0.255 192.168.2.0 0.0.0.255
3.Switch(Config)access-list 103 permit udp any any eq bootpc
4.Switch(Config)access-list 103 permit udp any any eq tftp
5.Switch(Config)access-list 103 permit udp any eq bootpc any
6.Switch(Config)access-list 103 permit udp any eq tftp any
7.Switch(Config)access-list 104 permit ip 192.168.2.0 0.0.0.255 192.168.4.0 0.0.0.255
8.Switch(Config)access-list 104 permit ip 192.168.4.0 0.0.0.255 192.168.2.0 0.0.0.255
9.Switch(Config)access-list 104 permit udp any eq tftp any
10.Switch(Config)access-list 104 permit udp any eq bootpc any
11.Switch(Config)access-list 104 permit udp any eq bootpc any
12.Switch(Config)access-list 104 permit udp any eq tftp any
第九步:应用访问控制列表
1./*将访问控制列表应用到VLAN 3和VLAN 4,VLAN 2不需要*/
2.Switch(Config)Int Vlan 3
3.Switch(Config-vlan)ip access-group 103 out
4.Switch(Config-vlan)Int Vlan 4
5.Switch(Config-vlan)ip access-group 104 out
第十步:结束并保存配置
1.Switch(Config-vlan)End
2.Switch#Copy Run Start