使用net-tools进行配制
sudo -i
ifconfig eth0 ipadrr/mask
ifconfig eth0 up
如
ifconfig eth0 10.122.60.12/24
ifconfig eth0 up
使用iproute2进行配制
sudo -i
sudo ip addr add ipadrr/mask dev eth0
ip link set up eth0
如
ip addr add 10.122.40.22/24 dev eth0
ip link set up eth0