Recentemente, estou tentando utilizar o ip ao invés do ifconfig. Por isso, fiz esse resumo:
[LIST]
ifconfig
ip addr show
ip link show
[UP]
ifconfig eth0 up
ip link set eth0 up
[DOWN]
ifconfig eth0 down
ip link set eth0 down
[SET BASIC]
ifconfig eth0 192.168.150.12
ip address add 192.168.150.12 dev eth0
[SET FULLY]
ifconfig eth0 192.168.1.14 netmask 255.255.255.0 broadcast 192.168.1.255
ip addr add 192.168.1.14/24 broadcast 192.168.1.255 dev eth0
[DEL]
O ifconfig não possui essa opção.
ip addr del 192.168.1.14/24 dev eth0
[ALIAS]
ifconfig eth0:1 10.0.0.1/8
ip addr add 10.0.0.1/8 dev eth0 label eth0:1
É isso pessoal! O ifconfi está deprecated, provavelmente daqui a uns anos não existirá mais. Por isso, é interessante aprender a utilizar o ip.