3
How can I get a list of the network interfaces on a Ubuntu machine including wired and wireless?
3
How can I get a list of the network interfaces on a Ubuntu machine including wired and wireless?
3
ifconfig
and press Enter.This is analogous to ipconfig /all
in Windows.
1
To get a list of network interfaces on a Ubuntu machine including wired and wireless, you can execute the following command in the shell.
$ip link or ip addr
ifconfig is obselete program. ip link and ip addr are replacement for ifconfig.
ip link
is just what I needed, thanks! – krubo – 2019-07-03T23:55:04.217