ubuntu从17.10
开始,已放弃在/etc/network/interfaces
里固定IP的配置,interfaces
文件不复存在,即使配置也不会生效,而是改成netplan
方式 ,配置写在/etc/netplan/01-netcfg.yaml
或者类似名称的yaml
文件里
ip a
sudo nano /etc/netplan/00-installer-config.yaml
network:
ethernets:
ens160: #配置的网卡的名称
addresses: [192.168.0.105/24] #配置的静态ip地址和掩码
dhcp4: no #关闭DHCP,如果需要打开DHCP则写yes
optional: true
gateway4: 192.168.0.1 #网关地址
nameservers:
addresses: [114.114.114.114,180.76.76.76] #DNS服务器地址,多个DNS服务器地址需要用英文逗号分隔开
version: 2
renderer: networkd #指定后端采用systemd-networkd或者Network Manager,可不填写则默认使用systemd-workd
根据自己的需要配置好之后保存文件
sudo netplan apply
“The first 90% of the code accounts for the first 90% of the development time. The remaining 10% of the code accounts for the other 90% of the development time.” – Tom Cargill
标 题:ubuntu 20.04 server版设置静态IP地址