Skip to content

20.3 Industrial Wireless Design

The BAT products deliver capable hardware. Deploying BAT products 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:

  • Equipment moves (AGVs, forklifts, cranes, rotating machinery)
  • Cabling is impractical (remote sensors, temporary installations, retrofits)
  • The application tolerates soft real-time latency (monitoring, configuration, non-critical data)

Wireless is not appropriate for:

  • Hard real-time control (PROFINET IRT, EtherCAT) — latency is variable and unbounded
  • Safety systems — wireless does not guarantee delivery within safety response times
  • Applications where a dropped connection causes a safety incident

Industrial environments contain interference sources absent from office environments:

SourceFrequencyImpact
Variable frequency drives (VFDs)BroadbandRaises noise floor, reduces SNR
Arc welding equipmentBroadbandSevere interference during welding
Induction heaters10 kHz to 10 MHzHarmonic interference
Microwave ovens2.4 GHzDirect interference with 2.4 GHz WLAN
Other 2.4 GHz WLAN2.4 GHzCo-channel and adjacent-channel interference
Bluetooth devices2.4 GHzFrequency-hopping interference

Mitigation strategies:

  • Use the 5 GHz band near VFDs and welding equipment (less interference than 2.4 GHz)
  • Use directional antennas to focus the signal and reduce interference pickup
  • Use shielded cables for Ethernet connections to access points
  • Perform a site survey before deployment to identify interference sources

Metal structures, machinery, and walls attenuate wireless signals more severely in industrial environments than in offices. Plan coverage with these factors:

Key metrics:

  • RSSI (Received Signal Strength Indicator) — signal strength in dBm. Target -65 dBm or better for reliable operation.
  • SNR (Signal-to-Noise Ratio) — signal strength minus noise floor. Target 25 dB or better.
  • Roaming overlap — 20% coverage overlap between adjacent APs supports seamless handover.

A rogue AP connected to the production network bypasses wired security controls. The following script uses Scapy to scan for wireless networks and alerts when an SSID is absent from 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)

An SSID absent from the approved list is a potential rogue AP. Investigate immediately — the SSID indicates 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.

Use wired connections for safety-related control

Wireless does not guarantee delivery within safety response times. Use wired connections for PLCs and safety controllers.

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.

  • Hirschmann. (2024). Belden/Hirschmann Essentials 2024. Belden.
  • IEEE 802.11-2020 — IEEE Standard for Information Technology — Wireless LAN
  • IEC 61000-4-3 — Electromagnetic compatibility — Radiated immunity