Wireless routers and devices sometimes list all available 5G WiFi frequencies as “no IR” (no Initiate Radiation), which blocks the device from transmitting on those channels in access point (AP) mode. This prevents you from setting up a 5G WiFi network for clients to connect to, limiting network speed and connectivity options. Addressing this issue involves understanding regulatory domain settings, firmware limitations, and driver configurations that control wireless transmission rights.
Check and Set the Correct Regulatory Domain
iw reg get
This will display the current country code and permitted channels. If the country code is set to “00” (world), your device will restrict transmission on many frequencies, including all 5G channels, marking them as “no IR.”
sudo iw reg set US
Setting the proper domain updates the allowed channels and may enable “IR” (Initiate Radiation) rights on some 5G frequencies. Note that some devices require you to set the domain in system configuration files such as /etc/default/crda or /etc/conf.d/wireless-regdom for the change to persist after reboot.
Join readers who trust AllThings.How
Add us as a preferred source on Google so our practical guides show up first next time you search.
Add to Google Preferences →Update Wireless Drivers and Firmware
lspci -nnk | grep -A3 Network
Some wireless drivers do not support AP mode or have incomplete regulatory support, especially on 5G bands.
sudo apt update && sudo apt upgrade
or install specific driver packages as needed.
Configure Hostapd for 5G AP Mode
hostapd.conf file to specify a valid 5G channel. Choose a channel that is allowed and not marked as DFS (Dynamic Frequency Selection) unless your device and driver support DFS operation. For example:
interface=wlan0
driver=nl80211
ssid=Your5GSSID
hw_mode=a
channel=36
hostapd.conf and ensure your kernel and drivers are up to date. Be aware that using DFS channels may require the access point to scan for radar signals before transmitting, causing a delay during startup.Alternative: Use a Different WiFi Adapter or Hardware
If your current hardware and drivers do not allow enabling 5G in AP mode despite the above steps, consider using a different WiFi adapter known to support 5G AP mode in your region. Research chipsets with strong Linux or Windows support for AP mode on 5G bands, such as certain Qualcomm Atheros, Intel, or Broadcom models. USB adapters with well-supported chipsets can be a practical workaround.
Resolving the “no IR” restriction on 5G frequencies often comes down to matching regulatory settings, updating drivers, and using compatible hardware. With the right configuration, you can activate 5G AP mode and provide faster wireless connections to your network clients.






