I have successfully setup an AP with Kali Linux, an AP that currently successfully hands out IP-adresses with dnsmasq and users are therefor able to connect to my WiFi running with hostapd. So what I am using is:

  • hostapd
  • dnsmasq

Everything is started with sudo permissions.
The problem that I have is that I am trying to connect this AP to the internet, by bridging wlan0 that is connected to internet to wlan1 that is acting AP, but this won't work:
Code:
┌──(vigor㉿kali)-[~]
└─$ sudo brctl addbr br0          
                                                                           
┌──(vigor㉿kali)-[~]
└─$ sudo brctl addif br0 wlan0 wlan1
can't add wlan0 to bridge br0: Operation not supported
How do I resolve this to make internet usable by my users on my network?
Thank you!