From 61e98c7e954f5bd62aff0733c22ebba6bedacfb3 Mon Sep 17 00:00:00 2001 From: Jerry Date: Sat, 19 Sep 2020 13:28:31 +0800 Subject: [PATCH] ??? --- scripts/roa.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/roa.py b/scripts/roa.py index 9a96961..bcc055d 100755 --- a/scripts/roa.py +++ b/scripts/roa.py @@ -243,7 +243,7 @@ def make_rfc8416(roa4, roa6): def make_roa_records(roa4, roa6): records = [ - "route {asn} max {prefix} as {maxLength};".format_map(roa) + "route {prefix} max {maxLength} as {asn};".format_map(roa) for roa in (*roa4, *roa6) ] return "\n".join(["# NeoNetwork ROA tool", "", *records])