git: 5a6d9479ae22 - main - blocklistd: Fix RFC1918 typo
Date: Sun, 03 May 2026 05:33:20 UTC
The branch main has been updated by jlduran:
URL: https://cgit.FreeBSD.org/src/commit/?id=5a6d9479ae2271a97dd23ceee8ad284770302874
commit 5a6d9479ae2271a97dd23ceee8ad284770302874
Author: Jose Luis Duran <jlduran@FreeBSD.org>
AuthorDate: 2026-05-03 05:31:51 +0000
Commit: Jose Luis Duran <jlduran@FreeBSD.org>
CommitDate: 2026-05-03 05:31:51 +0000
blocklistd: Fix RFC1918 typo
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
---
usr.sbin/blacklistd/blacklistd.conf | 2 +-
usr.sbin/blocklistd/blocklistd.conf | 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 * = = =