Hi, I was trying to configure my proxmox server to connect to the internet via wifi, so I configured my /etc/network/interface like this
The server is then able to connect to the internet without problems but due to the lack of a bridge I cannot connect the VMs to the internet. I then edited /etc/network/interfaces to
But when I try to run
Following some other post I try also to run
Is there something I can do to create a bridge or is the only thing I can do is change the network adapter?
Code:
auto lo
iface lo inet loopback
auto wlan0
iface wlan0 inet static
address 192.168.1.2/24
gateway 192.168.1.1
bridge-std off
bridge-fd 0
wpa-essid [MyESSID]
wpa-psk [MyPASSWORD]
The server is then able to connect to the internet without problems but due to the lack of a bridge I cannot connect the VMs to the internet. I then edited /etc/network/interfaces to
Code:
auto lo
iface lo inet loopback
auto wlan0
iface wlan0 inet static
address 192.168.1.2/24
gateway 192.168.1.1
bridge-std off
bridge-fd 0
wpa-essid [MyESSID]
wpa-psk [MyPASSWORD]
auto br0
iface br0 inet static
bridge-ports wlan0
bridge-stp off
bridge-fd 0
But when I try to run
ifreload -a
I get Error: Device does not allow enslaving to a bridge
Following some other post I try also to run
iw dev wlan0 set 4addr on
but I get command failed: Operation not supported (-95)
Is there something I can do to create a bridge or is the only thing I can do is change the network adapter?