hyp/hypd/examples/openwrt-wireguard/closewireguard.sh
Steven Polley 79aa8136c5
All checks were successful
continuous-integration/drone/push Build is passing
add openwrt-wireguard example
2024-04-18 09:39:21 -06:00

14 lines
291 B
Bash

#!/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