sh 配置vlan ubuntu(kvm,vlan)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh 配置vlan ubuntu(kvm,vlan)相关的知识,希望对你有一定的参考价值。


# for KVM
# https://raymii.org/s/tutorials/KVM_with_bonding_and_VLAN_tagging_setup_on_Ubuntu_12.04.html
# https://forum.proxmox.com/threads/vlan-tagging-from-inside-kvm-guest-issues.16152/#post-83102
# http://www.ibm.com/support/knowledgecenter/linuxonibm/liaat/liaatkvmsecconfvlans.htm

sudo apt-get install -y vlan
sudo  sh -c 'grep -q 8021q /etc/modules || echo 8021q >> /etc/modules'
modprobe 8021q

VLAN=110
sudo vconfig add eth0 $VLAN

cat <<-EOF >> /etc/network/interfaces

auto eth0.$VLAN
iface eth0.$VLAN inet static
    vlan-raw-device eth0
    # address
    # netmask

EOF

sudo ip link set up eth0.$VLAN

以上是关于sh 配置vlan ubuntu(kvm,vlan)的主要内容,如果未能解决你的问题,请参考以下文章

ubuntu 16.04 环境下实践 VLAN

ubuntu 16.04 环境下实践 VLAN

KVM配置BOND,BRIDGE,VLAN

centos7下配置vlan+kvm虚拟机

KVM网络虚拟化之-----VLAN搭建

视频教程-KVM虚拟机中多VLAN的配置