From ab55cbffd8439928586ef5687a6ef38436c4e846 Mon Sep 17 00:00:00 2001 From: 186526 Date: Wed, 28 Dec 2022 11:31:37 +0800 Subject: [PATCH] Add: reject all path that = ::/0 --- util/util.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/util/util.conf b/util/util.conf index 1753b8d..32e43c9 100644 --- a/util/util.conf +++ b/util/util.conf @@ -29,5 +29,6 @@ function is_valid() { if is_bogon_prefix() then return false; if is_bogon_asn() then return false; if is_rpki_invalid() && source = RTS_BGP then return false; + if net = ::/0 then return false; return true; }