zblacklist.1.ronn 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. zblacklist(1)
  2. =============
  3. ## SYNOPSIS
  4. zblacklist [ -b <blacklist> ] [ -w <whitelist> ] [ OPTIONS... ]
  5. ## DESCRIPTION
  6. *ZBlacklist* is a network tool for limiting and deduplicating a list of
  7. IP addresses using a blacklist or whitelist.
  8. ## OPTIONS
  9. ### BASIC OPTIONS ###
  10. * `-b`, `--blacklist-file=path`:
  11. File of subnets to exclude, in CIDR notation, one-per line. It is
  12. recommended you use this to exclude RFC 1918 addresses, multicast, IANA
  13. reserved space, and other IANA special-purpose addresses. An example
  14. blacklist file **blacklist.conf** for this purpose.
  15. * `-w`, `--whitelist-file=name`:
  16. File of subnets to include, in CIDR notation, one-per line. All other
  17. subnets will be excluded.
  18. * `-l`, `--log-file=name`:
  19. File to log to.
  20. * `-v`, `--verbosity`:
  21. Level of log detail (0-5, default=3)
  22. * `--no-duplicate-checking`:
  23. Don't deduplicate input addresses. Default is false.
  24. * `--ignore-blacklist-errors`:
  25. Ignore invalid entries in the blacklist. Default is false.