You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
251 B

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