Switch V1.0试验分解指南 目录: 1、VLAN创建 P3 2、交换机端口操作模式设置 P5 3、VLAN端口划分 P7 4、VTP设置 P8 5、STP实验 P12 6、PVST+&RSTP P15 7、STP防护 P17 8、SVI实验 P19 9、etherchannel P21 10、HSRP P24 11、DHCP P27 12、dhcp中继 P29 13、IP SLA实验 P31 14、port-Security P33 15、基于端口的802.1x P35 16、dynamic ARP inspect P41 17、VLAN ACL P43
动态地址分配(DHCP)
一、实验目的
1、掌握DHCP Server 的配置及应用
二、实验内容
拓扑图:
需求:
1、3560-24PS为DHCP Server;
2、分别为VLAN10、VLAN20内的PC动态分配IP地址;
3、为VLAN100内的IP Phone 绑定IP地址,并设置TFTP为192.168.100.253 。
三、实验配置
配置:
1、开启DHCP Server 功能 Switch(config)#service dhcp
2、排除已分配的固定IP地址
Switch(config)#ip dhcp excluded-address 192.168.10.1 192.168.10.100
3、创建DHCP地址池
Switch(config)#ip dhcp pool VLAN10 (对VLAN 10 配置地址池) Switch(dhcp-config)#network 192.168.10.0 /24 (设置地址池网段)
Switch(dhcp-config)#default-router 192.168.10.254 (设置默认网关地址) Switch(dhcp-config)#dns-server 202.96.209.133 202.96.209.134 (设置DNS地址) Switch(dhcp-config)#lease 0 8 (设置IP地址租期:8小时)
Switch(config)#ip dhcp pool VLAN20
Switch(dhcp-config)#network 192.168.20.0 /24
Switch(dhcp-config)#default-router 192.168.20.254
Switch(dhcp-config)#dns-server 202.96.209.133 202.96.209.134 Switch(dhcp-config)#lease 0 8
Switch(config)#ip dhcp pool Phone8001
Switch(dhcp-config)#hardware-address dd.eeff (绑定Phone/PC的MAC地址) Switch(dhcp-config)#host 192.168.100.1 /24 (绑定IP地址) Switch(dhcp-config)#default-router 192.168.20.254
Switch(dhcp-config)#option 150 ip 192.168.100.253 (设置CISCO VOIP的TFTP Server 地址) Switch(dhcp-config)#lease infinite
验证:
Switch#show ip dhcp binding