我正在尝试通过在 /etc/netplan/ 上创建 yaml 文件来为我的 ubuntu 服务器设置静态 IP,如下所示:
network:
version: 2
renderer: networkd
ethernets:
enp0s3:
dhcp4: no
addresses: [10.10.21.08/24]
gateway4: 10.10.21.100
但sudo netplan apply
返回错误:
Error in network definition /etc/netplan/01-netcfg.yaml line 6 column 23: Malformed Address '10.10.21.08/24', must be X.X.X.X/NN or ... ".
答案1
"Malformed Address"
错误代码表明中存在"10.10.21.08/24"
。
尝试省略第四个八位字节中的前导零(即写入'10.10.21.8/24'
)。