Skip to content

Fixed and wireless network settings


Configure network interfaces


Add / change interface

graph LR
  A[Network] --> B[Add / Change interface];
  A[Network] --> O[Revert to defaults];
  A[Network] --> P[Show configuration];
  B ---->E[Wired];
  B ---->F[Wireless];
  E -->R[DHCP];
  E -->T[Static];
  E -->S[Spoof MAC];
  F -->X[Station];
  F -->W[Access point]; 

Command:

Text Only
armbian-config --cmd NE002

Author: @igorpecovnik

Status: Stable

In order to configure your network devices, they need to be supported the kernel.

To verify, use command:

Bash
ip addr

It is usually something like eth0, enp4s3 or lan.

In order to configure your wireless network devices, they need to be supported the kernel.

To verify, use command:

Bash
iw dev | awk '$1=="Interface"{print $2}'

It is usually something like wlan0, wlo1 or wlx12334c47dec3. If you get blank response, it means your WiFi device / dongle is not supported by the kernel.


Revert to Armbian defaults

Command:

Text Only
armbian-config --cmd NE003

Author: @igorpecovnik

Status: Stable


Show configuration

Command:

Text Only
armbian-config --cmd NE004

Author: @igorpecovnik

Status: Stable


Show active status

Command:

Text Only
armbian-config --cmd NE005

Author: @igorpecovnik

Status: Stable