Use 5 GHz near industrial interference sources
VFDs, welding equipment, and microwave ovens interfere with 2.4 GHz. Use 5 GHz in areas with heavy industrial equipment.
The BAT products provide capable hardware. Deploying them successfully requires understanding the unique challenges of wireless in industrial environments — interference sources, coverage planning, and security monitoring.
Wireless is appropriate in OT networks when:
Wireless is not appropriate for:
Industrial environments contain interference sources that do not exist in office environments:
| Source | Frequency | Impact |
|---|---|---|
| Variable frequency drives (VFDs) | Broadband | Raises noise floor, reduces SNR |
| Arc welding equipment | Broadband | Severe interference during welding |
| Induction heaters | 10 kHz to 10 MHz | Harmonic interference |
| Microwave ovens | 2.4 GHz | Direct interference with 2.4 GHz WLAN |
| Other 2.4 GHz WLAN | 2.4 GHz | Co-channel and adjacent-channel interference |
| Bluetooth devices | 2.4 GHz | Frequency hopping interference |
Mitigation strategies:
Metal structures, machinery, and walls attenuate wireless signals more severely in industrial environments than in offices. Plan coverage with these factors:
Key metrics:
A rogue AP connected to the production network bypasses all wired security controls. The following script uses Scapy to scan for wireless networks and alerts when an SSID is not in the approved list:
# pip install scapy# Requires wireless interface in monitor mode:# sudo ip link set wlan0 down# sudo iw wlan0 set monitor none# sudo ip link set wlan0 up
from scapy.all import sniff, Dot11Beacon, Dot11
APPROVED_SSIDS = {"PlantWLAN", "EngineeringWLAN", "GuestWLAN"}seen: set[str] = set()
def detect_rogue_ap(pkt): if not pkt.haslayer(Dot11Beacon): return ssid = pkt[Dot11].info.decode(errors="ignore") bssid = pkt[Dot11].addr2 if ssid in seen: return seen.add(ssid) if ssid not in APPROVED_SSIDS: print(f"ROGUE AP DETECTED: SSID='{ssid}' BSSID={bssid}") else: print(f"Known AP: SSID='{ssid}' BSSID={bssid}")
sniff(iface="wlan0", prn=detect_rogue_ap, store=False)Any SSID not in the approved list is a potential rogue AP. Investigate immediately — it may be an unauthorized device or an evil twin attack.
Use 5 GHz near industrial interference sources
VFDs, welding equipment, and microwave ovens interfere with 2.4 GHz. Use 5 GHz in areas with heavy industrial equipment.
Never use wireless for safety-critical control
Wireless cannot guarantee delivery within safety response times. Use wired connections for PLCs, safety controllers, and safety-critical devices.
Industrial wireless completes the product coverage. The next chapter covers market-specific network designs — railway, substation, and hazardous location networks each have unique requirements, certifications, and product choices.