?
一、實(shí)驗(yàn)?zāi)繕?biāo)
AP與路由之間間隔三層交換機(jī)。由三層下發(fā)對(duì)應(yīng)vlan的dhcp,實(shí)現(xiàn)AC跨三層管理AP的功能
?
二、拓?fù)?/span>
?
?
三、交換機(jī)配置
進(jìn)入配置模式
IK-J6052>enable
IK-J6052#configure terminal
?
配置vlan1的ip地址
IK-J6052(config)# interface? vlan 1 ?(進(jìn)入vlan1)
IK-J6052(config-if-vlan1)#ip add 192.168.2.2 255.255.255.0 override(覆蓋vlan1的ip地址為192.168.2.2)
IK-J6052(config-if-vlan1)#exit
?
創(chuàng)建vlan10和20
IK-J6052(config)# vlan 10
IK-J6052(config-vlan-10)#exit
IK-J6052(config)# vlan 20
IK-J6052(config-vlan-20)#exit
?
配置vlan10的ip地址
IK-J6052(config)# interface? vlan 10 ?
IK-J6052(config-if-vlanInterface-10)#ip add 192.168.10.1 255.255.255.0?
IK-J6052(config-if-vlanInterface-10)#exit
?
配置vlan20的ip地址
IK-J6052(config)# interface? vlan 20
IK-J6052(config-if-vlanInterface-20)#ip add 192.168.20.1 255.255.255.0
IK-J6052(config-if-vlanInterface-20)#exit
?
配置對(duì)應(yīng)網(wǎng)口
IK-J6052(config)# interface eth 0/0/10 ?(進(jìn)入接口10)
IK-J6052(config-if-ethernet-0/0/10)# switchport link-type access
(將10口定義為access口)
IK-J6052(config-if-ethernet-0/0/10)#switchport pvid 10
(接口的pvid為10)
IK-J6052(config-if-ethernet-0/0/10)#exit
(退出接口10)
IK-J6052(config)# interface ethernet 0/0/20 (進(jìn)入接口20)?
IK-J6052(config-if-ethernet-0/0/20)# switchport link-type access ?
(將20口定義為access口)
IK-J6052(config-if-ethernet-0/0/20)#switchport pvid 20
(接口的pvid為20)
IK-J6052(config-if-ethernet-0/0/20)#exit(退出接口20)
?
DHCP服務(wù)設(shè)置
IK-J6052(config)#?dhcp-relay ?(開啟dhcp使能)
IK-J6052(config)#dhcp-server 10 192.168.10.1(創(chuàng)建dhcp服務(wù)器10)
IK-J6052(config)#dhcp-server 20 192.168.20.1(創(chuàng)建dhcp服務(wù)器20)
?
配置對(duì)應(yīng)vlan引用dhcp服務(wù)器
IK-J6052(config)#int vlan 10
IK-J6052(config-if-vlanInterface-10)#dhcp-server 10
IK-J6052(config-if-vlanInterface-10)#exit
IK-J6052(config)#int vlan 20
IK-J6052(config-if-vlanInterface-20)#dhcp-server 20
IK-J6052(config-if-vlanInterface-20)#exit
?
配置dhcp服務(wù)器的地址池
IK-J6052(config)#dhcp ip-pool 10 ?(創(chuàng)建地址池10)
IK-J6052(config-ip-pool-10)#?gateway 192.168.10.1 255.255.255.0(配置與這個(gè)地址池內(nèi)地址對(duì)應(yīng)的網(wǎng)關(guān))
IK-J6052(config-ip-pool-10)#?section 0 192.168.10.2 192.168.10.100
(配置地址池的范圍)
IK-J6052(config-ip-pool-10)#router 192.168.10.1(配置dhcp分配的網(wǎng)關(guān))
IK-J6052(config-ip-pool-10)#dns-list primary-ip 114.114.114.114(配置主dns)
IK-J6052(config-ip-pool-10)#dns-list second-ip 8.8.8.8(配置備dns)
IK-J6052(config-ip-pool-10)#option 43 hex 01 04 c0 a8 02 fe(配置option43 hex后面為十六進(jìn)制的地址,其中01 04是固定的。后面四位是將10進(jìn)制的A、B、C三類地址?進(jìn)行轉(zhuǎn)換得來)
IK-J6052(config-ip-pool-10)#exit(退出)
?
同理配置第二個(gè)20段的dhcp地址池
IK-J6052(config)#dhcp ip-pool 20
IK-J6052(config-ip-pool-20)#?gateway 192.168.20.1 255.255.255.0
IK-J6052(config-ip-pool-20)#?section 0 192.168.20.2 192.168.20.100
IK-J6052(config-ip-pool-20)#router 192.168.20.1
IK-J6052(config-ip-pool-20)#dns-list primary-ip 114.114.114.114
IK-J6052(config-ip-pool-20)#dns-list second-ip 8.8.8.8
IK-J6052(config-ip-pool-20)#option 43 hex 01 04 c0 a8 02 fe
IK-J6052(config-ip-pool-20)#exit
?
配置靜態(tài)路由表
IK-J6052(config)#ip route 0.0.0.0 0.0.0.0 192.168.2.254
IK-J6052#copy running-config startup-config(保存配置)
?
?四、路由器設(shè)置
1.正常配置好路由的內(nèi)外網(wǎng)
2.添加好對(duì)應(yīng)網(wǎng)段的路由表
?
?
3.打開AC智能控制
?
?
然后斷電重啟一次AP,靜靜等待1-5分鐘左右,AP就會(huì)直接上線了