mirror of
https://github.com/openwrt/openwrt.git
synced 2025-03-03 21:00:36 +00:00
7 lines
316 B
Bash
7 lines
316 B
Bash
#!/bin/sh
|
|
ULA_PREFIX=$(uci -q get network.globals.ula_prefix)
|
|
[ -n "$ULA_PREFIX" ] || exit 0
|
|
|
|
ip6tables -I delegate_forward -s $ULA_PREFIX -m comment --comment "Enforce ULA-Border" -j zone_wan_dest_REJECT
|
|
ip6tables -I delegate_forward -d $ULA_PREFIX -m comment --comment "Enforce ULA-Border" -j zone_wan_dest_REJECT
|