AC开启三层发现(DCHP服务器设置在核心交换上)
实验拓扑图

无线控制器(Wireless Access Point Controller)是一种网络设备,用来集中化控制 无线AP ,是一个无线网络的核心,负责管理无线网络中的所有无线AP,对AP管理包括:下发配置、修改相关配置参数、射频智能管理、接入安全控制等。
地址规划如下

无线交换机配置
AC(config)#show run
vlan 1;20
!
Interface Ethernet1/0/1
!
interface Vlan1
ip address 192.168.1.253 255.255.255.0
!
ip route 0.0.0.0/0 192.168.1.254
!
no login
wireless
enable
ap authentication none
no auto-ip-assign
static-ip 192.168.1.253
network 1
ssid DCN
vlan 20
!
ap profile 1
radio 1
vap 0
ap database 00-03-0f-ef-c4-c0
AC(config)#
查看ap在线状态

核心交换机配置
Hexin(config)#show running-config
service dhcp
!
ip dhcp pool management
network-address 192.168.10.0 255.255.255.0
default-router 192.168.10.254
dns-server 114.114.114.114 8.8.8.8
option 43 hex 0104C0A80AFD //形式必须选用hex,0104为固定值,C0A801FD为SWITCH无线管理IP:192.168.1.254的十六进制表示。C0—192;A8—168;0A—11;FD—254。
!
ip dhcp pool user
network-address 192.168.20.0 255.255.255.0
default-router 192.168.20.254
dns-server 114.114.114.114 8.8.8.8
!
vlan 1;10;20
!
Interface Ethernet1/0/1
!
Interface Ethernet1/0/2
switchport mode trunk
!
interface Vlan1
ip address 192.168.1.254 255.255.255.0
!
interface Vlan10
ip address 192.168.10.254 255.255.255.0
!
interface Vlan20
ip address 192.168.20.254 255.255.255.0
!
interface Loopback1
ip address 2.2.2.2 255.255.255.255 //模拟外网
!
ip route 0.0.0.0/0 192.168.1.253
Hexin(config)#
二层交换机配置
2Ceng(config)#show running-config
vlan 1;10;20
!
Interface Ethernet1/0/1
switchport mode trunk
switchport trunk native vlan 10
!
Interface Ethernet1/0/5
switchport mode trunk
2Ceng(config)#
测试


浙公网安备 33010602011771号