Search results

  • SNBForums Code of Conduct

    SNBForums is a community for everyone, no matter what their level of experience.

    Please be tolerant and patient of others, especially newcomers. We are all here to share and learn!

    The rules are simple: Be patient, be nice, be helpful or be gone!

  1. S

    Unbound Unbound DNS VPN Client w/policy rules

    @Kingp1n its not just you I have also had this issue. I am a computer student at UAH and I’m currently in the middle of midterms so I haven’t touched this is a couple of weeks. I do have it on my list to look into as well as the install function which is about half done. I’ll probably be checked...
  2. S

    Unbound Unbound DNS VPN Client w/policy rules

    Yes x3mRouting is needed because it handles the ip rule directives to direct the packets to the different interfaces. Theoretically you could code to set that stuff up without x3mRouting but since I was already using x3mRouting to direct packets I just piggybacked it. No need to reinvent the...
  3. S

    Static Control channel setting doesn’t take ax88u

    Updated to 386.1_2 and the center channel setting for the 2.4ghz network is now applied. Thanks for letting me know there was an update available.
  4. S

    Static Control channel setting doesn’t take ax88u

    I have not. I didn’t realize an update had been pushed. I’ll go ahead a do that at some point today and see if that fixes it.
  5. S

    YazFi YazFi v4.x

    As Always Thanks for everything! Looking forward to the update!
  6. S

    Static Control channel setting doesn’t take ax88u

    I just noticed my 2.4ghz network is using channel 5 for the control channel. I changed the setting from auto to both 6 and 1 but it doesn’t want to take. The site survey is still showing me centered on 5. Just upgraded to 386.1 on the ax88u settings were all cleared out/initialized as...
  7. S

    YazFi [Solved] Yazfi (again, same problem ever)

    I’ve been having the same problem but I’ve been so busy lately I haven’t looked into at all until just now. I’ll update later today and confirm the fix works on my system. Thanks for troubleshooting this. Edit: upgraded just a second ago (v4.2.0) and everything is now working as expected thanks.
  8. S

    Unbound Unbound DNS VPN Client w/policy rules

    Can you see if maybe there is a firewall restart or something in the logs.
  9. S

    Unbound Unbound DNS VPN Client w/policy rules

    That’s weird. I don’t use the GUI Speedtest so I haven’t run into this. Have you looked at the system logs to see if any additional info is available?
  10. S

    Unbound Unbound DNS VPN Client w/policy rules

    Currently nord. I have run out of time today and im in the middle of writing setup function so I’m not going to post it tonight. If you want the fix now it’s pretty simple to implement. Just delete all the lines in the delete rules function and replace it with the command I posted above. The new...
  11. S

    Unbound Unbound DNS VPN Client w/policy rules

    I figured it out. I didn’t realize the table wasn’t specified so adding -t mangle removes the rules now. Thanks for your help with this. It is very much appreciated. iptables-save | grep "unbound_rule" | sed 's/^-A/iptables -t mangle -D/' | while read CMD;do $CMD;done I’ll get the updated stuff...
  12. S

    Unbound Unbound DNS VPN Client w/policy rules

    I’m going to dig at it a little more in a couple of hours but if I remember correctly from briefly poking around this morning iptables-save and iptables -S return the same thing. I think that was the first thing I tried. I also changed --set-mark to --set-xmark to see if that fixed it because...
  13. S

    Unbound Unbound DNS VPN Client w/policy rules

    Modprobe directive did allow me to add comments so the rules are now created with the comment “unbound_rule”. The delete command isn’t matching right now but all the rules with the specified comment are now produced so this will definitely work once I figure out what’s wrong with the output rule...
  14. S

    Unbound Unbound DNS VPN Client w/policy rules

    I made some time today to work on this. A real quick question do modprobe directives persist after reboots? Should I put this in a setup function that only runs on initial setup?
  15. S

    Unbound Unbound DNS VPN Client w/policy rules

    I have not done that so that seems likely lol. Thanks for your input I really appreciate it. I’m trying to wrap my head around everything but Linux/bash is such a beast. Just too many ways to same tasks. I feel like such a script kiddie right now but I’m glad to have a community that can push...
  16. S

    Unbound Unbound DNS VPN Client w/policy rules

    Fantastic! This is exactly what I’m trying to do. As I stated in a previous post I haven’t really had time to dig into this. I briefly tried to add “-m comment --comment “xxx”” to the rule creation but it got rejected with “no matching rule” or something like that so I’m not sure if I just made...
  17. S

    Unbound Unbound DNS VPN Client w/policy rules

    Yeah I did see that yesterday. I haven’t really looked at what was posted but I made a note to look at that first when I get a second to pull this back up. This week has just been crazy and I haven’t had any extra time between school and work. as far as switching between -A and -I I would just...
  18. S

    Unbound Unbound DNS VPN Client w/policy rules

    You are correct I got those backwards. “0 1” looks for traffic pointed at the vpn and redirects it to the Wan interface. ALL 1 looks for traffic at all interfaces and redirects it to the vpn client 1 interface. I’ll edit that post to reflect the correction. Sorry for any confusion that may have...
  19. S

    Unbound Unbound DNS VPN Client w/policy rules

    Did switching the rules from -A (append) to -I (insert) fix the issue that comes up when you change your wan dns? I’m still really not happy with that solution as it doesn’t remove the outdated rules but I can’t get this stupid comment thing to work and I’m wary of removing rules based on their...
  20. S

    Unbound Unbound DNS VPN Client w/policy rules

    “x3mRouting 1 0 WAN_IP dnsmasq=whatsmyip.com” —> force whatsmyip.com to connect through your wan “x3mRouting ALL 1 VPN_IP dnsmasq=whatismyip.com”—> force whatismyip.com to connect through your vpn cli You can see all the rules you have created in /jffs/scripts/nat-start NOTE: “VPN_IP” and...
Top