Automated management of network and host address blocklists, for use in EdgeRouter firewall rules.
To get started, perform these steps on your EdgeRouter from a CLI configure prompt:
- For IPv4:
set firewall group network-group Nets4-BlackList description 'Blacklisted IPv4 Sources'
- For IPv6:
set firewall group ipv6-network-group Nets6-BlackList description 'Blacklisted IPv6 Sources'
cp updBlackList.sh /config/scripts/updBlackList.sh
cp fw-BlackList-URLs.txt /config/user-data/fw-BlackList-URLs.txt
cp loadBlackList.sh /config/scripts/post-config.d/loadBlackList.sh
set system task-scheduler task Update-Blacklists executable path /config/scripts/updBlackList.sh
set system task-scheduler task Update-Blacklists interval 12h
sudo /config/scripts/updBlackList.sh
You will also need to create a firewall rule to deny inbound source addresses
that match this network-group Nets4-BlackList
. An example using
a zone-based firewall might look like:
set firewall name wan-dmz-4 rule 1 source group network-group Nets4-BlackList
set firewall name wan-lan-4 rule 1 source group network-group Nets4-BlackList
set firewall name wan-self-4 rule 1 source group network-group Nets4-BlackList
Similar for IPv6:
set firewall ipv6-name wan-dmz-6 rule 1 source group ipv6-network-group Nets6-BlackList
set firewall ipv6-name wan-lan-6 rule 1 source group ipv6-network-group Nets6-BlackList
set firewall ipv6-name wan-self-6 rule 1 source group ipv6-network-group Nets6-BlackList
That should get you going with minimal effort. However, you really should
review fw-BlackList-URLs.txt
and edit as appropriate. The two scripts
both have configuration sections that you should also review and edit as
appropriate.
updBlackList.sh
is the actual tool that will fetch various blocklists,
consolidate into one group, and load into a pre-existing IPset already used
with firewall rulesets.
You may schedule this appropriately for your needs, but the quick start above
provides for a twice-daily update at noon and midnight. Note that most list
providers have guidelines on frequency of retrieval so these should be taken
into account when setting the schedule.
The file fw-BlackList-URLs.txt
should contain the list of URLs to
individual blocklist of networks and hosts. Blank lines and comments
(beginning with a hash (#) are acceptable).
The sample provided here has many sources listed as a starting point,
though only some are enabled (uncommented). Note that several of the indicated
lists either overlap or fully include other lists so it is not necessary nor is
it recommended to blindly uncomment all URLs here.
'cURL
' will be used to fetch each of these individually, exactly as listed.
Since the updBlackList.sh
tool directly manipulates IPsets and does
not reflect any changes in the EdgeOS config.boot
, contents of the
blocklist network-groups are lost upon reboot/restart of the EdgeRouter.
The loadBlackList.sh
script addresses this by restoring the previously
saved network-groups at boot time.
Alternatively, the updBlackList.sh
script may be re-run at boot-time.
This will take longer, however, since it will recreate the list newly.
IPset documentation may be found at http://ipset.netfilter.org
This work was inspired by the Emerging Threats Blacklist discussion thread in the Ubiquiti Networks community forums.
This utility is one option among several for ingress filtering, and is primarily intended to be used in lieu of blackhole-routing and BGP route filtering.
Note that arbitrary lists should not be arbitrarily added or enabled for blocking. Review of each list should be performed combined with a period of careful monitoring after enabling to ensure legitimate traffic is not blocked. Some public "blocklists" are known to be rather aggressive and add addresses/netblocks too easily.