DHCP主要配置
dhcp enable ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ??//启用DHCP服务
dhcp server ip-pool DHCP1 ? ? ? ? ? ? ? ????????? //创建名称为DHCP1的地址池
network 192.168.1.0 mask 255.255.255.0? ?//添加地址池网段
gateway-list 192.168.1.254 ? ? ? ? ? ? ? ? ? ? ? ? ? //配置网关地址
dns-list 114.114.114.114 ? ? ? ? ? ? ? ??????????????? //配置DNS地址
expired day 0 hour 12 minute 0 second 0 ?//配置租约时间
forbidden-ip 192.168.1.254 ? ? ? ? ? ? ? ? ? ? ? ? ?//添加排除地址
int g0/0.1 ? ? ? ? ? ? ? ? ? ? ? ? ? ? ???????????????????????? ?//进子接口
dhcp server apply ip-pool DHCP1 ? ? ? ? ? ? ?//在接口上应用DHCP1的DHCP服务
ip add 192.168.1.254 24 ? ? ? ? ? ? ? ? ????????????? //添加IP地址
单臂路由主要配置
int g0/0.1 ? ? ? ? ? ? ? ? ? ? ? ? ? ?//进子接口
vlan-type dot1q vid 10 ? ??//打上vlan标签10
int g0/0.2 ? ? ? ? ? ? ? ? ? ? ? ? ? //进子接口
vlan-type dot1q vid 11 ? ? //打上vlan标签11
交换机S6850_1配置
u t m //关闭提示
sys //进入系统视图
int g1/0/1 //进接口
port link-type access //配置端口类型
prot access vlan 10 //允许vlan10通过
combo enable copper //使用电口
int g1/0/2 //进接口
port link-type access //配置端口类型
prot access vlan 11 //允许vlan11通过
combo enable copper //使用电口
int g1/0/3 //进接口
port link-type trunk //配置端口类型
prot trunk permit vlan all //允许所有vlan通过
combo enable copper //使用电口
路由器配置单臂路由
u t m //关闭提示
sys //进入系统视图
int g0/0.1 //进子接口
vlan-type dot1q vid 10 //打上vlan标签10
int g0/0.2 //进子接口
vlan-type dot1q vid 11 //打上vlan标签11
路由器配置DHCP服务
u t m //关闭提示
sys //进入系统视图
dhcp enable //启用DHCP服务
dhcp server ip-pool DHCP1 //创建名称为DHCP1的地址池
network 192.168.1.0 mask 255.255.255.0 //添加地址池网段
gateway-list 192.168.1.254 //配置网关地址
dns-list 114.114.114.114 //配置DNS地址
expired day 0 hour 12 minute 0 second 0 //配置租约时间
forbidden-ip 192.168.1.254 //添加排除地址
int g0/0.1 //进子接口
dhcp server apply ip-pool DHCP1 //在接口上应用DHCP1的DHCP服务
ip add 192.168.1.254 24 //添加IP地址
dhcp server ip-pool DHCP2
network 192.168.2.0 mask 255.255.255.0
gateway-list 192.168.2.254
dns-list 114.114.114.114
expired day 0 hour 12 minute 0 second 0
forbidden-ip 192.168.2.254
int g0/0.2
dhcp server apply ip-pool DHCP2
ip add 192.168.2.254 24
查看设备地址的获取情况?