WiFi Band Selection Guide
WiFi Band Selection Guide
Section titled “WiFi Band Selection Guide”Choosing the right WiFi frequency band is one of the most important design decisions for any wireless network. This guide covers when to use each band and how to configure channel settings for optimal MikroTik deployments.
Quick Reference
Section titled “Quick Reference”| Scenario | Recommended Band | Channel Width |
|---|---|---|
| IoT / Smart home devices | 2.4 GHz | 20 MHz |
| Outdoor long-range | 2.4 GHz | 20 MHz |
| General home/office | 5 GHz | 80 MHz |
| High-density office | 5 GHz | 40 MHz |
| Maximum throughput | 5 GHz / 6 GHz | 160 MHz |
| Legacy device support | 2.4 GHz | 20 MHz |
Band Comparison
Section titled “Band Comparison”| Characteristic | 2.4 GHz | 5 GHz | 6 GHz (WiFi 6E) |
|---|---|---|---|
| Frequency range | 2400–2483 MHz | 5150–5850 MHz | 5925–7125 MHz |
| Channel width | 20 / 40 MHz | 20 / 40 / 80 / 160 MHz | 20 / 40 / 80 / 160 MHz |
| Max data rate (WiFi 6) | 1147 Mbps | 2404 Mbps | 2404 Mbps |
| Typical indoor range | 35–50 m | 15–25 m | 10–15 m |
| Penetration | Good | Moderate | Poor |
| Interference | High | Moderate | Low |
| Device compatibility | Universal | Most modern | Newer devices only |
When to Use 2.4 GHz
Section titled “When to Use 2.4 GHz”Best Use Cases
Section titled “Best Use Cases”- IoT and smart home devices — Many devices (Philips Hue, Sonoff, Tuya) only support 2.4 GHz
- Long-range outdoor coverage — Better wall and obstacle penetration
- Legacy devices — Older hardware without 5 GHz support
- Maximum coverage — When wall penetration matters more than speed
Common Community Scenarios
Section titled “Common Community Scenarios”Forum users consistently report these 2.4 GHz wins:
- Smart home deployments — IoT devices that cannot connect to 5 GHz
- Outdoor point-to-point links — Longer reach with better obstacle handling
- Basement/garage coverage — Where 5 GHz signal doesn’t reach
- Guest networks for unknown devices — Maximum compatibility
Configuration
Section titled “Configuration”# Create 2.4 GHz AP with 20 MHz for stability/interface wifi channel add name=ch-2ghz band=2ghz-n width=20mhz frequency=2437
/interface wifi security add name=sec-wpa2 authentication-types=wpa2-psk,wpa3-psk \ encryption=ccmp
/interface wifi add channel=ch-2ghz security=sec-wpa2 ssid=Office-2G disabled=noVerify the configuration:
/interface wifi channel print/interface wifi printWarning: Avoid 40 MHz on 2.4 GHz in congested environments. It forces overlap with adjacent channels and increases interference. Stick to 20 MHz for stability.
Limitations
Section titled “Limitations”- Congestion — Only 3 non-overlapping channels (1, 6, 11 in US)
- Interference — Bluetooth, microwaves, Zigbee, cordless phones share this band
- Lower throughput — Maximum 400 Mbps (WiFi 6), typically 100–200 Mbps real-world
When to Use 5 GHz
Section titled “When to Use 5 GHz”Best Use Cases
Section titled “Best Use Cases”- High-throughput applications — Video streaming, large file transfers, VoIP
- Primary network — Serve all modern devices
- Dense environments — More non-overlapping channels available
- Performance-critical connections — Gaming, video conferencing
When 5 GHz Falls Short
Section titled “When 5 GHz Falls Short”5 GHz fails first in these scenarios (from forum observations):
- Obstacle-rich environments — Multiple walls, metal objects, concrete
- Long distances — Beyond 25 meters indoors, 2.4 GHz often outperforms
- Suboptimal antenna placement — 5 GHz requires precise alignment
- High humidity — Water absorption affects 5 GHz more than 2.4 GHz
Configuration
Section titled “Configuration”# Create 5 GHz AP with 80 MHz channel width/interface wifi channel add name=ch-5ghz band=5ghz-ac width=80mhz frequency=5180
/interface wifi security add name=sec-wpa3 authentication-types=wpa3-psk \ encryption=ccmp
/interface wifi add channel=ch-5ghz security=sec-wpa3 ssid=Office-5G disabled=noVerify the configuration:
/interface wifi channel print/interface wifi printTip: Use lower 5 GHz channels (36, 40, 44, 48) for indoor deployments. Higher channels (149–165) have higher power limits but may experience more interference.
DFS Channels: Common Problems
Section titled “DFS Channels: Common Problems”DFS (Dynamic Frequency Selection) is required on many 5 GHz channels to avoid radar interference. Forum users report frequent issues:
Symptoms:
- 5 GHz connection drops unexpectedly
- AP switches channels frequently
- Certain channels become unavailable
Affected channels: 52–144 (varies by region)
Solution: Use non-DFS channels for residential deployments:
- UNII-1 (5150-5250 MHz): Channels 36, 40, 44, 48 — Indoor only, no DFS
- These channels avoid radar-related drops entirely
# Check available channels/interface wifi info
# Use non-DFS channels (UNII-1)/interface wifi channel add name=ch-5ghz-nodfs band=5ghz-ac width=80mhz frequency=5180When to Use 6 GHz (WiFi 6E)
Section titled “When to Use 6 GHz (WiFi 6E)”Best Use Cases
Section titled “Best Use Cases”- Maximum throughput — 4K/8K video, AR/VR, high-speed transfers
- Ultra-low latency — Gaming, real-time applications
- Congested environments — 1200 MHz of spectrum reduces contention
- Future-proofing — As WiFi 6E device adoption increases
Limitations
Section titled “Limitations”- Limited device support — Only WiFi 6E-capable devices (2022+ flagship devices)
- Shortest range — Highest frequency with poorest penetration
- Regulatory complexity — Not all regions approved; some require AFC (Automatic Frequency Planning)
- Backward incompatibility — Cannot serve legacy clients
MikroTik Considerations
Section titled “MikroTik Considerations”RouterOS 7.x supports 6 GHz on select WiFi 6 hardware. Check capability before deployment:
/interface wifi infoChannel Width Selection
Section titled “Channel Width Selection”Tradeoff Summary
Section titled “Tradeoff Summary”| Width | Throughput | Coverage | Interference | Best For |
|---|---|---|---|---|
| 20 MHz | Low | Highest | Low | IoT, long-range, congested |
| 40 MHz | Medium | Medium | Medium | Balanced 2.4 GHz |
| 80 MHz | High | Low | High | Modern 5 GHz |
| 160 MHz | Highest | Lowest | Very High | Maximum throughput |
Community Recommendations
Section titled “Community Recommendations”Forum users report these experiences:
- Dense neighborhoods: Success with 20 MHz on 2.4 GHz and 40 MHz on 5 GHz
- Stability issues: Often resolved by reducing from 80 MHz to 40 MHz or 20 MHz
- Common problems solved by reducing width:
- Periodic disconnections
- High latency spikes
- Neighbor interference
- Unstable connections to distant clients
Configuration Examples
Section titled “Configuration Examples”# 2.4 GHz: 20 MHz for stability/interface wifi channel add name=ch-2ghz-20 band=2ghz-n width=20mhz frequency=2437
# 5 GHz: 80 MHz for balance/interface wifi channel add name=ch-5ghz-80 band=5ghz-ac width=80mhz frequency=5180
# 5 GHz: 160 MHz for maximum throughput in clean environments/interface wifi channel add name=ch-5ghz-160 band=5ghz-ac width=160mhz frequency=5180Dual-Band Strategy
Section titled “Dual-Band Strategy”Most deployments benefit from running both 2.4 GHz and 5 GHz simultaneously:
# Dual-band AP configuration/interface wifi channel add name=ch-2ghz band=2ghz-n width=20mhz frequency=2437/interface wifi channel add name=ch-5ghz band=5ghz-ac width=80mhz frequency=5180
/interface wifi security add name=sec-wpa3 authentication-types=wpa3-psk \ encryption=ccmp
# 2.4 GHz for IoT and legacy devices/interface wifi add channel=ch-2ghz security=sec-wpa3 ssid=Office-IoT disabled=no
# 5 GHz for high-performance devices/interface wifi add channel=ch-5ghz security=sec-wpa3 ssid=Office-Perf disabled=noVerify both interfaces are active:
/interface wifi print/interface wifi registration-table printBand Steering
Section titled “Band Steering”Enable band steering to push dual-band-capable clients to 5 GHz:
/capsman interface set numbers=0 configuration.sta-steering=band-between-portsSeparate SSIDs for IoT
Section titled “Separate SSIDs for IoT”Many users prefer separate SSIDs to control which devices use which band:
- IoT-SSID (2.4 GHz only) — Smart home devices, sensors
- Main-SSID (5 GHz preferred) — Phones, laptops, tablets
Channel Planning
Section titled “Channel Planning”2.4 GHz Non-Overlapping Channels
Section titled “2.4 GHz Non-Overlapping Channels”Use channels 1, 6, and 11 only. These are the only truly non-overlapping channels.
Channel 1: 2412 MHzChannel 6: 2437 MHz ← Most common choiceChannel 11: 2462 MHzWarning: Never use adjacent channels (e.g., 3 and 4) — they overlap and cause interference.
5 GHz Channel Spacing
Section titled “5 GHz Channel Spacing”| Width | Channel Groups |
|---|---|
| 20 MHz | Any (36, 40, 44, 48…) |
| 40 MHz | Pairs (36+40, 44+48, 52+56…) |
| 80 MHz | Groups (36+40+44+48) |
Finding Best Channels
Section titled “Finding Best Channels”Use frequency scan to identify least congested channels:
/interface wifi frequency-scanTroubleshooting Band Selection
Section titled “Troubleshooting Band Selection”Clients Stuck on 2.4 GHz
Section titled “Clients Stuck on 2.4 GHz”- Enable band steering in configuration
- Reduce 2.4 GHz TX power to encourage 5 GHz adoption
- Use separate SSIDs with different names
- Update client device drivers
Poor 5 GHz Range
Section titled “Poor 5 GHz Range”- Add more APs at lower power (don’t just increase power)
- Use 2.4 GHz for edge coverage only
- Check for DFS radar events blocking channels
- Verify antenna orientation on APs
- Consider adding a 5 GHz AP closer to the problem area
High Latency on 2.4 GHz
Section titled “High Latency on 2.4 GHz”Forum users report that switching to 5 GHz resolves high jitter issues, especially in:
- Warehouse environments
- Areas with many competing WiFi networks
- Locations with microwave ovens or other 2.4 GHz interferers
Related Documentation
Section titled “Related Documentation”- Frequency Bands — Detailed RouterOS frequency configuration
- WiFi Guide — Getting started with MikroTik WiFi
- CAPsMAN Configuration — Centralized AP management
References
Section titled “References”- MikroTik Forum: Basic home network setup with multiple APs (thread 142248)
- MikroTik Forum: 802.11r/k/v fast roaming with WifiWave2 (thread 169733)
- MikroTik Forum: hAP ax3 random wireless disconnects (thread 176477)