The following sections explain how to connect an Edge Node (formerly Edge iNode) through Wi-Fi and switch back to Ethernet. For instructions on using SSH to connect to an Edge Node, see Access an Edge Node console.
This capability is supported only on Dell Edge Gateway 5000.
Check whether your device supports Wi-Fi
To check whether your node supports Wi-Fi, use the show interface command:
> show interface
If Wi-Fi is supported, you should see an interface with type wlan:
Connect to the uplink interface
To connect to an Edge Node uplink interface through Wi-Fi:
- Use SSH to connect to the node.
- If you already know the Wi-Fi network you want to connect to, you can skip this step. Otherwise, to scan for available Wi-Fi networks in range, use the show interface wlan --verbose command:Shell
> show interface wlan --verbose
- Use the set wlan command to enter the set wlancommand prompt:Shell
> set wlan (set wlan) >
- Use the network-add command to add a Wi-Fi network with SSID, key management protocol (currently only WPA-PSK and NONE are supported), and the pre-shared key, as follows:Shell
For example:network-add --ssid <SSID> --keymgmt <KEY-PROTO> --psk <PASS-PHRASE>
Shell(set wlan) > network-add --ssid IOTIUM --keymgmt WPA-PSK --psk foobar123
- Use the save command to save the configuration:Shell
(set wlan) > save
- Use the show command to confirm that the added network is displayed in the preconfigured networks list:Shell
Following is an example:(set wlan) > show
- To connect to one of the networks in the preconfigured list, use the network-connect command followed by the save command:Shell
(set wlan) network-connect --ssid IOTIUM (set wlan) > save
- You can use the show command to verify that the Wi-Fi network is connectedShell
Following is an example:(set wlan) show
- Exit the set wlan prompt using exit command and use show interface wlan --verbose command to confirm that uplink is connected through Wi-Fi:
The selection of the Ethernet or Wi-Fi uplink interface happens only during boot-up. If both Ethernet and Wi-Fi are connected, then whichever interface comes up first during boot-up is selected automatically as the uplink interface. If you need Wi-Fi to be the uplink interface, make sure that the Ethernet cable is disconnected before boot-up.
Switch the uplink interface from Wi-Fi to Ethernet
To switch the Edge Node's uplink interface from Wi-Fi to Ethernet:
- Use SSH to connect to the node.
- Use the unset wlan command to enter the unset wlan command prompt:Shell
> unset wlan (unset wlan) >
- Use the show command to see the Wi-Fi network to which the node is connected:Shell
Following is an example:(unset wlan) > show
- To disconnect Wi-Fi, use the network-disconnect command followed by the save command:Shell
(set wlan) network-disconnect (set wlan) > save
- Use the show command to confirm that the Wi-Fi network is disconnected:Shell
Following is an example:(unset wlan) > show
Remove a preconfigured Wi-Fi network
- Use SSH to connect to the node.
- Use the unset wlan command to enter the unset wlancommand prompt:Shell
> unset wlan (unset wlan) >
- Use the show command to see the list of pre-configured Wi-Fi networks:Shell
Following is an example:(unset wlan) > show
- To remove Wi-Fi network configuration, use the network-remove -ssid command followed by the save command:Shell
(set wlan) network-remove --ssid IOTIUM (set wlan) > save
- Use the show command to confirm that the Wi-Fi network configuration is removed:Shell
Following is an example:(unset wlan) > show