-
Hello, I'm at the end of my wits and hoping this community can help me. My objective: Environment:
Note: Here's the thing:
After reboot:
The FAQ says, "Select wlan1 as the AP interface in Hotspot and Save Settings.". I cannot do that, as the RaspAP behavior is somewhat strange:
Anyhow, keeping wlan0 as AP and using wlan1 as client seems to work. I can scan for networks and connect successfully with wlan1. So far, so good but I do not have internet connectivity via the pi's AP. I'm guessing it's about bullet 1. in the FAQ - "Bind the two adapters with the interface names wlan0 and wlan1" How do I bind the two interfaces? Especially keeping in mind that the client might be assigned any IP/ subnet from the external wifi. Your input is much appreciated! Thanks & best, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
I have made a little bit of progress which I wanted to share. The issue seems to be related the the routes: Kernel IP routing table Deleting the 0.0.0.0 routes for eth0 and wlan0 solves the issue - at least until reboot.
I have tried to use reduce interface priority via ifmetric.
which does not seem to have any affect however. Any ideas how to remove the 0.0.0.0 routes for eth0 and wlan0 in a way that sustains a reboot? Ideally, this change won't be overwritten by changes via RaspAP gui. Or is there a better way to achieve the desired result? Thanks & best, |
Beta Was this translation helpful? Give feedback.
I have made a little bit of progress which I wanted to share. The issue seems to be related the the routes:
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
0.0.0.0 192.168.8.1 0.0.0.0 UG 202 0 0 eth0
0.0.0.0 10.10.10.1 0.0.0.0 UG 303 0 0 wlan0
0.0.0.0 192.168.8.1 0.0.0.0 UG 304 0 0 wlan1
10.10.10.0 0.0.0.0 255.255.255.0 U 303 0 0 wlan0
192.168.8.0 0.0.0.0 255.255.255.0 U 202 0 0 eth0
192.168.8.0 0.0.0.0 255.255.255.0 U 304 0 0 wlan1
Deleting the 0.0.0.0 routes for eth0 and wlan0 solves the issue - at least until reboot.
I h…