Example for Configuring Hand-in-Hand WDS Services
Service Requirements
Enterprise users can access the network through WLANs, which is the basic requirement of mobile office. Considering the high costs of wired AP deployment, enterprises need to set up wireless distribution system (WDS) links for wireless backhaul to provide service coverage, ensuring that enterprise users can access the WLAN.
Networking Requirements
- AC networking mode: Layer 2 networking in bypass mode
- DHCP deployment mode:
- The AC functions as a DHCP server to assign IP addresses to APs.
- The aggregation switch (Switch_A) functions as a DHCP server to assign IP addresses to STAs.
- Wireless backhaul mode: hand-in-hand WDS
- Backhaul radio: 5 GHz
- Service data forwarding mode: direct forwarding
Data Planning
AP |
Type |
MAC Address |
---|---|---|
AP_1 |
AP8130DN |
60de-4474-9640 |
AP_2 |
AP8130DN |
dcd2-fc04-b500 |
AP_3 |
AP8130DN |
dcd2-fc96-e4c0 |
Item |
Data |
---|---|
Management VLAN for APs |
VLAN 100 |
Service VLAN for STAs |
VLAN 101 |
DHCP server |
The AC functions as a DHCP server to assign IP addresses to APs. Switch_A functions as a DHCP server to assign IP addresses to STAs. |
IP address pool for APs |
10.23.100.2-10.23.100.254/24 |
IP address pool for STAs |
10.23.101.3-10.23.101.254/24 |
AC's source interface address |
VLANIF 100 |
WDS mode |
|
Regulatory domain profile |
|
SSID profile |
|
Wireless service security profile |
|
VAP profile |
|
WDS link security profile |
|
WDS whitelist profile |
|
|
|
WDS profile |
|
|
|
AP group |
|
|
|
|
Configuration Roadmap
- Configure root node AP_1 to go online on the AC.
- Create an AP group and add APs that require the same configuration to the group for unified configuration.
- Configure AC system parameters, including the country code and source interface used by the AC to communicate with the APs.
- Configure the AP authentication mode and import the APs offline to allow the APs to go online.
- Configure WDS services so that APs in and Area C can go online through WDS wireless virtual links.
- Configure WLAN service parameters for STAs to access the WLAN.
Configuration Notes
- No ACK mechanism is provided for multicast packet transmission on air interfaces. In addition, wireless links are unstable. To ensure stable transmission of multicast packets, they are usually sent at low rates. If a large number of such multicast packets are sent from the network side, the air interfaces may be congested. You are advised to configure multicast packet suppression to reduce impact of a large number of low-rate multicast packets on the wireless network. Exercise caution when configuring the rate limit; otherwise, the multicast services may be affected.
- In direct forwarding mode, you are advised to configure multicast packet suppression on switch interfaces connected to APs.
- In tunnel forwarding mode, you are advised to configure multicast packet suppression in traffic profiles of the AC.
Configure port isolation on the interfaces of the device directly connected to APs. If port isolation is not configured and direct forwarding is used, a large number of unnecessary broadcast packets may be generated in the VLAN, blocking the network and degrading user experience.
In tunnel forwarding mode, the management VLAN and service VLAN cannot be the same. Only packets from the management VLAN are transmitted between the AC and APs. Packets from the service VLAN are not allowed between the AC and APs.
- Select proper antennas by following the WDS network planning and design, and use the antenna calibration tool for calibration.
Procedure
- Configure the network devices.
# Add GE0/0/1 and GE0/0/2 on Switch_B to VLAN 100 and VLAN 101. The default VLAN of GE0/0/1 is VLAN 100.
<HUAWEI> system-view [HUAWEI] sysname Switch_B [Switch_B] vlan batch 100 to 101 [Switch_B] interface gigabitEthernet 0/0/1 [Switch_B-GigabitEthernet0/0/1] port link-type trunk [Switch_B-GigabitEthernet0/0/1] port trunk pvid vlan 100 [Switch_B-GigabitEthernet0/0/1] port trunk allow-pass vlan 100 to 101 [Switch_B-GigabitEthernet0/0/1] port-isolate enable [Switch_B-GigabitEthernet0/0/1] quit [Switch_B] interface gigabitEthernet 0/0/2 [Switch_B-GigabitEthernet0/0/2] port link-type trunk [Switch_B-GigabitEthernet0/0/2] port trunk allow-pass vlan 100 to 101 [Switch_B-GigabitEthernet0/0/2] quit
# Configure the aggregation switch Switch_A. Configure GE0/0/1 to allow packets from VLAN 100 and VLAN 101 to pass through, GE0/0/2 to allow packets from VLAN 100 to pass through, and GE0/0/3 to allow packets from VLAN 101 to pass through.
<HUAWEI> system-view [HUAWEI] sysname Switch_A [Switch_A] vlan batch 100 to 101 [Switch_A] interface gigabitEthernet 0/0/1 [Switch_A-GigabitEthernet0/0/1] port link-type trunk [Switch_A-GigabitEthernet0/0/1] port trunk allow-pass vlan 100 to 101 [Switch_A-GigabitEthernet0/0/1] quit [Switch_A] interface gigabitEthernet 0/0/2 [Switch_A-GigabitEthernet0/0/2] port link-type trunk [Switch_A-GigabitEthernet0/0/2] port trunk allow-pass vlan 100 [Switch_A-GigabitEthernet0/0/2] quit [Switch_A] interface gigabitEthernet 0/0/3 [Switch_A-GigabitEthernet0/0/3] port link-type trunk [Switch_A-GigabitEthernet0/0/3] port trunk allow-pass vlan 101 [Switch_A-GigabitEthernet0/0/3] quit
# Add GE1/0/0 on Router to VLAN 101. Create VLANIF 101 and set its IP address to 10.23.101.2/24.<Huawei> system-view [Huawei] sysname Router [Router] vlan batch 101 [Router] interface gigabitethernet 1/0/0 [Router-GigabitEthernet1/0/0] port link-type trunk [Router-GigabitEthernet1/0/0] port trunk allow-pass vlan 101 [Router-GigabitEthernet1/0/0] quit [Router] interface vlanif 101 [Router-Vlanif101] ip address 10.23.101.2 24 [Router-Vlanif101] quit
- Configure the DHCP server to assign IP addresses to STAs.# Configure Switch_A as a DHCP server to assign IP addresses to STAs from the interface address pool.
[Switch_A] dhcp enable [Switch_A] interface vlanif 101 [Switch_A-Vlanif101] ip address 10.23.101.1 24 [Switch_A-Vlanif101] dhcp select interface [Switch_A-Vlanif101] dhcp server gateway-list 10.23.101.2 [Switch_A-Vlanif101] quit
- Configure AC system parameters.
- Configure an AP to go online.
- Configure wireless services.
- Configure the AP_1.
- Configure AP_3.
- Configure AP_2.
- Verify the configuration.