ubuntu 设置 IP 地址

  1. 确定网卡名称
ip addr

通常会返回至少两个设备,固定的 lo 和 不固定的设备名,假设为 eth0

  1. 编辑文件 /etc/network/interfaces ,常见配置如下:
auto eth0
iface eth0 inet static
address 192.168.0.5
netmask 24
gateway 192.168.0.1

dns-nameservers 114.114.114.114