Hi, I am building a new small CloudStack. I have the Managment server and DB together, and have a separate Storage server. The UI is operational, so some success.
I would now like to add a host. I followed this guide https://cloudstack.apache.org/docs/en-US/Apache_CloudStack/4.2.0/html/Installation_Guide/hypervisor-kvm-install-flow.html specifically the bit about networking:- auto lo iface lo inet loopback # The primary network interface auto eth0.100 iface eth0.100 inet static address 192.168.42.11 netmask 255.255.255.240 gateway 192.168.42.1 dns-nameservers 8.8.8.8 8.8.4.4 dns-domain lab.example.org # Public network auto cloudbr0 iface cloudbr0 inet manual bridge_ports eth0.200 bridge_fd 5 bridge_stp off bridge_maxwait 1 # Private network auto cloudbr1 iface cloudbr1 inet manual bridge_ports eth0.300 bridge_fd 5 bridge_stp off bridge_maxwait 1 After doing this, and rebooting I lose connectivity. This is because eth0 is now tagged as suggested in the guide, but I don't think there is vLAN tagging on the rest of the network. What's the easy solution to this? Is it documented how to vLAN correctly the rest of my installation? Regards, Jon
