修改linux的IP 永久VS内存
修改网卡命令:
ifconfig eth0 192.168.0.3 netmask 255.255.255.0
⚠️临时修改IP生效,如果想重启之后依然生效,可以修改网卡配置文件。
重启网卡命令:
centos: sudo service network restart
ubuntu:sudo /etc/init.d/networking restart
网卡配置文件:
centos: 修改 /etc/sysconfig/network-scripts/ifcfg-eth0
DEVICE=eth0 #网卡对应的设备别名
BOOTPROTO=static #网卡获得ip地址的方式(默认为dhcp,表示自动获取)
HWADDR=00:07:E9:05:E8:B4 #网卡MAC地址(物理地址)
IPADDR=192.168.100.100 #IP地址
NETMASK=255.255.255.0 #子网掩码
ONBOOT=yes #系统启动时是否激活此设备
ubuntu: 修改 /etc/network/interfaces
auto eth0
iface eth0 inet static
address 192.168.3.90
gateway 192.168.3.1
netmask 255.255.255.0
Don't Repeat Yourself !