add openwrt-wireguard example
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-04-18 09:39:21 -06:00
parent 344d874c02
commit 79aa8136c5
4 changed files with 46 additions and 1 deletions

View File

@@ -0,0 +1,14 @@
#!/bin/sh
if [ $# -lt 1 ]; then
echo "Usage: $0 <srcip>"
exit 1
fi
# Can't use dots in rule name, so swap for underscores
rulename="hypd_${1//./_}_wireguard"
# Configure the rule in OpenWRT's uci interface
uci delete firewall.$rulename
uci commit firewall
service firewall restart