在Ubuntu 18中使用 netplan 命令
首先
cd /etc/netplan/
找到 *.yaml文件(每个人可能不一样),编辑它
root@waydeserver:/etc/netplan# vi -cloud-init.yaml
按如下格式修改内容:
# This file is generated from information provided by
# the datasource. Changes to it will not persist across an instance.
# To disable cloud-init's network configuration capabilities, write a file
# /etc/cloud/cloud.cfg.d/-disable-network-config.cfg with the following:
# network: {config: disabled}
network:
ethernets:
ens33:
addresses: [192.168.3.35/]
dhcp4: no
dhcp6: no
gateway4: 192.168.3.1
nameservers:
addresses: [192.168.3.1]
version:
- ens33 代表网卡名称
- addresses 代表你想要的IP,24代表24位的子网掩码,即255.255.255.0
- gateway4 代表默认网关地址
- nameservers 代表DNS,当然也可以换成谷歌的8.8.8.8,或者国内的114.114.114.114等
要注意的是其中的缩进和空格非常重要,写错了的话就不会被正确识别。
修改完之后保存,然后执行:
netplan apply
至此修改完毕,可以使用ifconfig命令查看。