Configure Wireless Networking
You can configure wireless networking in Photon OS. Connect to an open network or a WPA2 protected network using wpa_cli and configure systemd-networkd to assign an IP address to the network.
Connect Using wpa_cli
When you connect using wpa_cli, you can scan for available networks and associate the network with a network ID.
Perform the following steps:
Ensure that the
wpa_supplicant serviceis running on the WLAN interface:Systemctl status wpa_supplicant@<wlan-interface>.serviceConnect to
wpa_cli:wpa_cli -i wlan0Scan for available networks:
scanTo see the list of networks, use the following command:
scan_resultsAdd the network:
add_networkThis command returns a network ID.
Associate the network with the network ID.
set_network <network ID> ssid “<ssid-name>”For a WPA2 network, set the passphrase:
set_network <network ID> psk “<passphrase>”Enable the network:
enable_network <network ID>Save the configuration file:
save_configTo exit the
wpa_cli, type 'quit`.
Assign IP Address To Network
Configure systemd-networkd to assign IP address to network. Perform the following steps:
Create a
/etc/systemd/network/98-dhcp-wlan.networkfile with the following contents:[Match] Name=wlan* [Network] DHCP=yes IPv6AcceptRA=noRestart
systemd-networkdusing:Systemctl restart systemd-networkd