如何在没有 vconfig 命令的情况下添加 vlan?

如何在没有 vconfig 命令的情况下添加 vlan?

有没有不使用 vconfig 来创建 vlan 接口的方法?我只将 KVM 控制台和中继端口连接到机器,因此我无法使用 apt,因为我无法访问互联网。我在 /etc/network/interfaces 中定义了 vlan,但由于未创建 vlan 接口,因此无法正常工作。谢谢。

答案1

ip link add link eth0 name eth0.5 type vlan id 5 

不要忘记建立链接:

ip link set eth0 up
ip link set eth0.5 up

相关内容