(1)配置接口
创建VLAN100及其对应的VLAN接口,并为该接口配置IP地址,Client使用该VLAN接入无线网络。
<WA5530> system-view
[WA5530] VLAN 100
[WA5530-vlan100] quit
[WA5530] interface vlan-interface 100
[WA5530-Vlan-interface100] ip address 192.1.1.1 24
[WA5530-Vlan-interface100] quit
# 配置上行接口Vlan-interface 1 自动获得地址。
[WA5530] interface vlan-interface 1
[WA5530-Vlan-interface1] undo ip address
[WA5530-Vlan-interface1] ip address DHCP-alloc
[WA5530-Vlan-interface1] quit
(2) 配置无线服务模板。
# 创建服务模板service,并进入无线服务模板视图。
[WA5530] wlan service-template service
# 配置ssid 为service 。
[WA5530-wlan-st-service] ssid service
# 配置无线服务模板VLAN 为100。
[WA5530-wlan-st-service] vlan 100
# 配置身份认证与密钥管理模式为PSK 模式,配置PSK 密钥为明文字符串12345678。
[WA5530-wlan-st-service] akm mode psk
[WA5530-wlan-st-service] preshared-key pass-phrase simple 12345678
# 配置加密套件为CCMP,安全信息元素为RSN。
[WA5530-wlan-st-service] cipher-suite ccmp
[WA5530-wlan-st-service] security-ie rsn
# 开启无线服务模板。
[WA5530-wlan-st-service] service-template enable
[WA5530-wlan-st-service] quit
(3) 进入WLAN-Radio 1/0/1 接口,并将无线服务模板service 绑定到WLAN-Radio 1/0/1 接口。
[WA5530] interface wlan-radio 1/0/1
[WA5530-WLAN-Radio1/0/1] service-template service
[WA5530-WLAN-Radio1/0/1] quit
(4) 配置DHCP 服务。
# 开启DHCP 功能。
[WA5530] dhcp enable
# 创建名为vlan100 的DHCP 地址池,为Client 分配IP 地址,配置地址池动态分配的网段为
192.1.1.0/24,网关地址为192.1.1.1。
[WA5530] dhcp server ip-pool vlan100
[WA5530-dhcp-pool-vlan100] network 192.1.1.0 mask 255.255.255.0
[WA5530-dhcp-pool-vlan100] gateway-list 192.1.1.1
[WA5530-dhcp-pool-vlan100] quit
,