在 Ubuntu 20.04 上,我在 /etc/network/interfaces 中定义了以下接口:
auto eth0:0
iface eth0:0 inet static
address 192.168.1.3 # my meaningful comment
netmask 255.255.255.0
当我尝试启动该界面时出现错误:
# ifup eth0:0
Not enough information: "dev" argument is required.
ifup: failed to bring up eth0:0
答案1
这个问题的根本原因是排队评论:
# my meaningful comment
的手册页/etc/network/interfaces
明确说明了这一点https://manpages.debian.org/jessie/ifupdown/interfaces.5.en.html
以“#”开头的行将被忽略。请注意,不支持行尾注释,注释必须位于一行中。