如何在不使用vconfig命令的情况下添加VLAN?[关闭]


8

有什么方法可以在不使用vconfig的情况下创建vlan接口?我只有KVM控制台和中继端口连接到计算机,所以我无法使用apt,因为我无法访问互联网。我在/ etc / network / interfaces中定义了VLAN,但是由于没有创建VLAN接口,所以它不起作用。谢谢。


好吧,我会解决的。
约翰·

1
它如何“没有建设性”?
FractalSpace 2016年

Answers:


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

不要忘记建立链接:

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

1
太棒了!正是我想要的(嵌入式设备;最少的工具)。只是为了完成:ip link del eth0.5删除VLAN
FractalSpace'April
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.