Hello. I was hoping I could get some insight as to why I'm not able to access the internet from my vms. Looking through various threads I've learnt that most wireless cards dont support bridging so I tried to use routing through IP tables as indicated here. I'm still having no luck however. I've even made sure that I've configured the network on the vm to use a static IP.
Here is my /etc/network/interfaces
I've tried alot of things, even renaming my wireless interface to eth1 so proxmox will think its an ethernet network device, however the vmbr0 never stays 'active'. Any other suggestions would be greatly appreciated.
These are my network devices.
Here is my /etc/network/interfaces
Code:
auto lo
iface lo inet loopback
auto wlan0
iface wlan0 inet dhcp
wpa-ssid SSID
wpa-psk psswd
iface eth0 inet manual
auto vmbr0
iface vmbr0 inet static
address 10.10.10.0
#gateway 192.168.33.1
netmask 255.255.255.0
bridge-ports none
bridge-stp off
bridge-fd 0
post-up echo 1 > /proc/sys/net/ipv4/ip_forward
post-up iptables -t nat -A POSTROUTING -s '10.10.10.0/24' -o wlan0 -j MASQUERADE
post-down iptables -t nat -D POSTROUTING -s '10.10.10.0/24' -o wlan0 -j MASQUERADE
I've tried alot of things, even renaming my wireless interface to eth1 so proxmox will think its an ethernet network device, however the vmbr0 never stays 'active'. Any other suggestions would be greatly appreciated.
These are my network devices.
Code:
01:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8101/2/6E PCI Express Fast/Gigabit Ethernet controller (rev 07)
02:00.0 Network controller: Qualcomm Atheros QCA9565 / AR9565 Wireless Network Adapter (rev 01)