Recent content by Homelab

  1. H

    [SOLVED] Need help connecting VM to Internet

    Got a spare router and hooked it up. No need for WiFi now. Thanks though.
  2. H

    change from lan to wifi not work

    Copy these lines and add them: post-up iptables -t nat -A POSTROUTING -s '192.168.1.0/24' -o vmbr1 -j MASQUERADE post-down iptables -t nat -D POSTROUTING -s '192.168.1.0/24' -o vmbr1 -j MASQUERADE Replace 192.168.1.0 with your ip subnet, replace vmbr1 with your bridge interface. Save and reboot.
  3. H

    change from lan to wifi not work

    Hello, You can't bridge with WiFi. I learned this the hard way. Try using NAT and masquerade to the bridge. It should work.
  4. H

    [SOLVED] Need help connecting VM to Internet

    Hello, I recently installed Proxmox on my system and used NAT in order to connect the management interface to WiFi without Ethernet because my router is in a difficult spot to bridge the connection. I can access the management interface but when I try to boot Ubuntu in a VM, it doesn't get...