(小白学网络)DHCP实验—本地服务器
实验拓扑1.设置交换机为DHCP服务器
(config)#service dhcp --开启DHCP服务
(config)#no servicedhcp --关闭DHCP服务
2.设置DHCP地址池
(config)#ip dhcppool vlan10 --建立VLAN10地址池
(dhcp-config)#network192.168.10.0 /24 --网段
(dhcp-config)#default-router192.168.10.1 --网关
(config)#ip dhcppool vlan20 --VLAN20 --建立VLAN10地址池
(dhcp-config)#network192.168.20.0 /24 --网段
(dhcp-config)#default-router192.168.20.1 --网关
3.设置DHCP地址例外
(config)#ip dhcpexcluded-address 192.168.10.1 192.168.10.20 --VLAN10地址池地址排除
(config)#ip dhcpexcluded-address 192.168.20.1 192.168.20.20 --VLAN20地址池地址排除
4.新建VLAN
(config)#vlan10 --新建VLAN10
(config)#vlan20 --新建VLAN20
5.配置VLAN端口
(config)#interfacevlan 10 --VLAN10的网关IP地址
(config-if)#ipaddress 192.168.10.1 255.255.255.0
(config-if)#noshutdown
(config)#interfacevlan 20 --VLAN20的网关IP地址
(config-if)#ipaddress 192.168.20.1 255.255.255.0
(config-if)#noshutdown
6.配置接入端口,设置为access模式
(config)#interfaceeth0/0
(config-if)#switchportmode access --二层接口模式access接入模式
(config-if)#switchportaccess vlan 10 --将端口分配到vlan 10
(config)#interfaceeth0/1
(config-if)#switchportmode access --二层接口模式access接入模式
(config-if)#switchportaccess vlan 20 --将端口分配到vlan 10
7.客户端PC上设置DHCP自动获取(这里使用模拟器)
VPCS>ip dhcp --设置VPC2和VPC3自动获取
8.交换机上查看DHCP客户列表
#show ip dhcpbinding
DHCP分配列表9.客户端上查看ip信息
查看IP信息10.测试联通性
联通性测试11.完结
网友评论