mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 18:18:55 +00:00
10 lines
278 B
Bash
Executable File
10 lines
278 B
Bash
Executable File
#!/bin/bash
|
|
FIREZONE_DEV_V4='172.28.0.0/16'
|
|
FIREZONE_DEV_V6='2001:3990:3990::/64'
|
|
TABLE=333444
|
|
|
|
sudo ip -4 rule del from $FIREZONE_DEV_V4 table $TABLE
|
|
sudo ip -4 route flush table $TABLE
|
|
sudo ip -6 rule del from $FIREZONE_DEV_V6 table $TABLE
|
|
sudo ip -6 route flush table $TABLE
|