blob: d7e0d80635becdb23be9cc317a85e77fd1776aca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh
uci -q batch <<-EOT
delete firewall.bcp38
set firewall.bcp38=include
set firewall.bcp38.type=script
set firewall.bcp38.path=/usr/lib/bcp38/run.sh
set firewall.bcp38.family=IPv4
set firewall.bcp38.reload=1
commit firewall
EOT
exit 0
|