-
|
Hello, Is there a kill-switch feature like the one on the Wireguard app ? Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
The kill-switch feature of Wireguard, as you’ve noted, operates by manipulating the routing table, a key component in network routing. This process adjusts the routing table to direct internet traffic flow, ensuring that it only passes through the VPN tunnel. When the kill switch is activated, the routing table is altered to route all traffic (0.0.0.0/0) via the VPN. Conversely, when the kill switch is off, the routing rules become more specific, often dividing the IP range into two segments (0.0.0.0/1 and 128.0.0.0/1) to manage traffic flow in a distinct manner. These alterations are observable when inspecting the routing table as the kill switch is toggled on and off. Similarly, the WireSock VPN client, when in virtual adapter mode, is expected to exhibit comparable behavior, routing all traffic through the VPN tunnel unless specific traffic is explicitly set to bypass it. |
Beta Was this translation helpful? Give feedback.

The kill-switch feature of Wireguard, as you’ve noted, operates by manipulating the routing table, a key component in network routing. This process adjusts the routing table to direct internet traffic flow, ensuring that it only passes through the VPN tunnel. When the kill switch is activated, the routing table is altered to route all traffic (0.0.0.0/0) via the VPN. Conversely, when the kill switch is off, the routing rules become more specific, often dividing the IP range into two segments (0.0.0.0/1 and 128.0.0.0/1) to manage traffic flow in a distinct manner. These alterations are observable when inspecting the routing table as the kill switch is toggled on and off. Similarly, the Wir…