diff options
| author | Jose Luis Duran <jlduran@FreeBSD.org> | 2026-05-03 06:31:51 +0100 |
|---|---|---|
| committer | Jose Luis Duran <jlduran@FreeBSD.org> | 2026-05-10 01:51:24 +0100 |
| commit | 0f36cf87a5a2ece436f2c19596f99fdb7dd9db3e (patch) (diff) | |
| tree | 659a454b838c467b0495fda317d796fa7d5cb76e | |
| download | src-stable/15.tar.gz | |
| previous commit | f06697907f360b02682594c6179a7361644d3c87 (unix: Make sure we signal EOF on the write side when disconnecting) | |
The address in the configuration file example was intended to be from
the 192.168.0.0/16 range of IPv4 private addresses (RFC1918).
Reported on mastodon.social at
https://mastodon.social/@asmodai/116316630762241486.
Fix submitted upstream by emaste@. Fixing locally first.
Reviewed by: emaste
MFC after: 1 week
Differential Revision: https://reviews.freebsd.org/D56773
(cherry picked from commit 5a6d9479ae2271a97dd23ceee8ad284770302874)
| -rw-r--r-- | usr.sbin/blacklistd/blacklistd.conf | [diff] [file] | 2 | ||||
| -rw-r--r-- | usr.sbin/blocklistd/blocklistd.conf | [diff] [file] | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/blacklistd/blacklistd.conf b/usr.sbin/blacklistd/blacklistd.conf index ec995e038574..04a09f8d3dea 100644 --- a/usr.sbin/blacklistd/blacklistd.conf +++ b/usr.sbin/blacklistd/blacklistd.conf @@ -14,7 +14,7 @@ submission stream * * * 3 24h # adr/mask:port type proto owner name nfail duration [remote] -#129.168.0.0/16 * * * = * * +#192.168.0.0/16 * * * = * * #[2001:db8::]/32:ssh * * * = * * #6161 = = = =/24 = = #* stream tcp * = = = diff --git a/usr.sbin/blocklistd/blocklistd.conf b/usr.sbin/blocklistd/blocklistd.conf index c6c7f7c2fafc..db9a6fc5c720 100644 --- a/usr.sbin/blocklistd/blocklistd.conf +++ b/usr.sbin/blocklistd/blocklistd.conf @@ -10,7 +10,7 @@ submission stream * * * 3 24h # adr/mask:port type proto owner name nfail duration [remote] -#129.168.0.0/16 * * * = * * +#192.168.0.0/16 * * * = * * #[2001:db8::]/32:ssh * * * = * * #6161 = = = =/24 = = #* stream tcp * = = = |
