Skip to main content

Wifi Config

"Because BLIKVM has many kinds of hardware and supports different OS, such as BLIKVM OS and PiKVM OS, different OS confifure wifi methods may not be the same. Please confirm the hardware and OS usage before using the method in this document."
  1. Please confirm that the hardware you use supports wifi function, for example, the CM400200 version does not have wifi function;
  2. If the SOC of KVM hardware is CM4, please confirm whether wifi antenna is connected;
  3. PiKVM OS is arch linux;
  4. BLIKVM OS raspberry pi series is debian system, and v4 series is armbian system;
"If the connection error occurs, you can modify the configuration file and reconnect again"
sudo vim /etc/NetworkManager/NetworkManager.conf
# make sure ifupdown if false
[main]
plugins=ifupdown,keyfile

[ifupdown]
managed=false

[device]
wifi.scan-rand-mac-address=no

v1 v2 v3 Use raspi-config for Wi-Fi config on Raspberry Pi Debian systems

  1. Log in to SSH. Command: ssh blikvm@ip
  2. Mount the system as writable. Command: rw
  3. Grant read/write permissions to system-connections, otherwise the connection will fail:
    sudo chmod 777 -R /etc/NetworkManager/system-connections
systemctl restart NetworkManager
  1. Enter the correct Wi-Fi name and password to connect:
    nmcli device wifi connect "MyWiFi" password "mypassword"
  1. Check if connected to Wi-Fi. Command: ifconfig wlan0. If you see an IP address, it means you are connected.
  2. Mount the system as read-only. Command: ro

v4 Hardware using Armbian System with armbian-config

  1. Log in via SSH using the command: ssh blikvm@ip to access the Armbian system. If it is a read-only system, you need to first use the command rw to make it read-write, and use the command sudo chmod 777 -R /etc/NetworkManager/system-connections to give the corresponding folder permissions. After modifying the permissions, you need to restart the NetworkManager service for the changes to take effect using the command systemctl restart NetworkManager.
  2. Enter the following command to launch the armbian-config tool:
sudo armbian-config
  1. In the armbian-config menu, navigate and select options using the arrow keys and press Enter.
  2. Scroll down to the "Network" option using the arrow keys and press Enter to enter the submenu.
  3. In the "Network" submenu, select the "Wireless" option and press Enter to enter the Wi-Fi configuration menu.
  4. In the Wi-Fi configuration menu, select the "Connect to Wi-Fi" option and press Enter to enter the Wi-Fi connection setup.
  5. armbian-config will list the available wireless interfaces and already configured networks. Select the wireless interface you want to connect to and press Enter.
  6. armbian-config will display the list of available Wi-Fi networks. Use the arrow keys to select the Wi-Fi network you want to connect to and press Enter.
  7. If the Wi-Fi network is password-protected, armbian-config will prompt you to enter the Wi-Fi password. Enter the password and press Enter.
  8. Wait for a moment while the Armbian system attempts to connect to the specified Wi-Fi network. If the connection is successful, you will see a corresponding message on the screen.
  9. Exit the armbian-config tool.

Please note that the menu options and configurations mentioned above may vary slightly depending on the specific version of the Armbian system. Make sure to follow the appropriate steps based on your system version and configuration.