What's new
  • 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!

Killswitch 3004 Question

bassoonsun

New Around Here
Question regarding the Killswitch with the most recent 3004 versions trying to get a proper understanding of how it functions.

With 3004 on the old Jun-2024 release, the killswitch rules were created before WAN goes up, “to reduce the risks of leaks between WAN going up and VPN connecting” The update in Nov-2024 changed so that the “VPN killswitch will now only be active if the VPN client itself is enabled.”

By doing this change hasn't it increased the risks of leaks between WAN going up and VPN connecting? If so, are their any recommendations to stop this leak risk? Is it at all possible for me as a user to revert to the old function for the killswitch or am I misunderstanding the change?

Would the below script function similarly to a killswitch for all router traffic if the VPN goes down? And would using that script as well as the killswitch at the same time cause a conflict?

Code:
#!/bin/sh
WAN_IF="$1"
iptables -I FORWARD -o $WAN_IF -j REJECT

A lot of questions appreciate any input.
 
Last edited:

Support SNBForums w/ Amazon

If you'd like to support SNBForums, just use this link and buy anything on Amazon. Thanks!

Sign Up For SNBForums Daily Digest

Get an update of what's new every day delivered to your mailbox. Sign up here!
Back
Top