Huawei 大型 WLAN 组网 AC 间漫游

AC1配置命令 


<AC6005>display current-configuration 
#
vlan batch 100
#
interface Vlanif100
 description to_S3_CAPWAP
 ip address 10.0.100.254 255.255.255.0
#
interface GigabitEthernet0/0/1
 port link-type trunk
 port trunk allow-pass vlan 100

#
ip route-static 10.0.10.0 255.255.255.0 10.0.100.1
ip route-static 10.0.200.0 255.255.255.0 10.0.100.1
#
capwap source interface vlanif100
#
wlan
 security-profile name department1
  security wpa2 psk pass-phrase huawei123 aes
 ssid-profile name department1
  ssid roam
 vap-profile name department1
  service-vlan vlan-id 11
  ssid-profile department1
  security-profile department1
 mobility-group name mobility
  member ip-address 10.0.100.254
  member ip-address 10.0.200.254
 ap-group name default
 ap-group name department1
  radio 0
   vap-profile department1 wlan 1
  radio 1
   vap-profile department1 wlan 1
  radio 2
   vap-profile department1 wlan 1
 ap-id 0  ap-mac 00e0-fcb4-7c80 
  ap-name ap1
  ap-group department1
<AC6005>

AC2配置命令

<AC6005>display current-configuration 
#
vlan batch 200
#
interface Vlanif200
 description to_S3_CAPWAP
 ip address 10.0.200.254 255.255.255.0
#
interface GigabitEthernet0/0/1
 port link-type trunk
 port trunk allow-pass vlan 200
#
ip route-static 10.0.20.0 255.255.255.0 10.0.200.1
ip route-static 10.0.100.0 255.255.255.0 10.0.200.1
#
capwap source interface vlanif200
#
wlan
 traffic-profile name default
 security-profile name department2
  security wpa2 psk pass-phrase huawei123 aes
 ssid-profile name department2
  ssid roam
 vap-profile name department2
  service-vlan vlan-id 21
  ssid-profile department2
  security-profile department2
 mobility-group name mobility
  member ip-address 10.0.100.254
  member ip-address 10.0.200.254
 ap-group name department2
  radio 0
   vap-profile department2 wlan 1
  radio 1
   vap-profile department2 wlan 1
  radio 2
   vap-profile department2 wlan 1
 ap-id 0 ap-mac 00e0-fc2e-57c0 
  ap-name ap2
  ap-group department2
<AC6005>

SW3配置命令

<Huawei>display current-configuration 
#
vlan batch 10 to 11 20 to 21 100 200
#
dhcp enable
#
ip pool ap1
 gateway-list 10.0.10.1
 network 10.0.10.0 mask 255.255.255.0
 option 43 sub-option 3 ascii 10.0.100.254
#
ip pool ap2
 gateway-list 10.0.20.1
 network 10.0.20.0 mask 255.255.255.0
 option 43 sub-option 3 ascii 10.0.200.254
#
ip pool service_ap_1
 gateway-list 10.0.11.1
 network 10.0.11.0 mask 255.255.255.0
 dns-list 10.0.11.1
#
ip pool service_ap_2
 gateway-list 10.0.21.1
 network 10.0.21.0 mask 255.255.255.0
 dns-list 10.0.21.1
#
interface Vlanif10
 description ap1_management
 ip address 10.0.10.1 255.255.255.0
 dhcp select global
#
interface Vlanif11
 description ap1_service
 ip address 10.0.11.1 255.255.255.0
 dhcp select global
#
interface Vlanif20
 description ap2_managment
 ip address 10.0.20.1 255.255.255.0
 dhcp select global
#
interface Vlanif21
 description ap2_service
 ip address 10.0.21.1 255.255.255.0
 dhcp select global
#
interface Vlanif100
 description to_AC1
 ip address 10.0.100.1 255.255.255.0
#
interface Vlanif200
 description to_AC2
 ip address 10.0.200.1 255.255.255.0
#
interface GigabitEthernet0/0/1
 port link-type trunk
 port trunk allow-pass vlan 100
#
interface GigabitEthernet0/0/2
 port link-type trunk
 port trunk allow-pass vlan 200
#
interface GigabitEthernet0/0/3
 port link-type trunk
 port trunk allow-pass vlan 20 to 21
#
interface GigabitEthernet0/0/4
 port link-type trunk
 port trunk pvid vlan 10
 port trunk allow-pass vlan 10 to 11
#
interface LoopBack0
 ip address 10.0.3.3 255.255.255.255
<Huawei>

SW4配置命令

<Huawei>display current-configuration 
vlan batch 20 to 21
#
interface GigabitEthernet0/0/1
 port link-type trunk
 port trunk allow-pass vlan 20 to 21
#
interface GigabitEthernet0/0/2
 port link-type trunk
 port trunk pvid vlan 20
 port trunk allow-pass vlan 20 to 21
<Huawei>

移动STA到另一个区域 ,命令查看漫游设备如下

相关推荐

  1. SD-WAN大型集团机构的解决方案

    2024-06-08 15:52:03       17 阅读

最近更新

  1. docker php8.1+nginx base 镜像 dockerfile 配置

    2024-06-08 15:52:03       4 阅读
  2. Could not load dynamic library ‘cudart64_100.dll‘

    2024-06-08 15:52:03       4 阅读
  3. 在Django里面运行非项目文件

    2024-06-08 15:52:03       3 阅读
  4. Python语言-面向对象

    2024-06-08 15:52:03       3 阅读

热门阅读

  1. python-web应用程序-Django-From组件

    2024-06-08 15:52:03       14 阅读
  2. export 和 export default 的区别

    2024-06-08 15:52:03       15 阅读
  3. 以“交流“为主题写一篇文章

    2024-06-08 15:52:03       11 阅读
  4. Go 语言中的切片:灵活的数据结构

    2024-06-08 15:52:03       13 阅读
  5. Web前端与REST API:深度解析与实战指南

    2024-06-08 15:52:03       17 阅读
  6. 通过SSH远程登录华为设备

    2024-06-08 15:52:03       11 阅读
  7. Spring Boot 复习

    2024-06-08 15:52:03       15 阅读
  8. 【Rust】——【面向对象语言的特征】

    2024-06-08 15:52:03       13 阅读