OpenWRT Create IPset on router startup
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh /etc/rc.common | |
# OpenWrt /etc/init.d/ script to automatically add ipsets across reboots | |
# For more info about how to write init scripts https://openwrt.org/docs/techref/initscripts | |
# | |
# howto: | |
# - upload this file as /etc/init.d/autoipset | |
# - # chmod 755 /etc/init.d/autoipset | |
# - # /etc/init.d/autoipset enable | |
# - # /etc/init.d/autoipset start | |
# queue this init script to start (i.e., create IPSet) right before dnsmasq starts (19) | |
START=18 | |
setipset() { | |
ipset -N fbcdn hash:ip | |
ipset -N facebook hash:ip | |
} | |
start() { | |
setipset | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment