1
mirror of https://git.dn42.dev/dn42/registry.git synced 2024-10-17 14:41:12 +02:00
registry/data/filter6.txt

21 lines
1.2 KiB
Plaintext
Raw Normal View History

2017-12-05 22:14:28 +01:00
# To Quagga Rules:
# cat filter6.txt | \
# grep -e ^[0-9] | \
# awk '{ print "ipv prefix-list dn42v6-in seq " $1 " " $2 " " $3 " ge " $4 " le " $5}' | \
# sed "s_/\([0-9]\+\) ge \1_/\1_g;s_/\([0-9]\+\) le \1_/\1_g"
#
# For BIRD Rules: (see also: utils/bgp-filter.rb)
# cat filter6.txt | \
# awk 'BEGIN {printf "function is_valid_network() {\n return net ~ [\n" } \
# /^[0-9]/ && $2 ~ /permit/ {printf " %s{%s,%s},\n", $3, $4, $5};' | \
# sed "$ s/,$/\n ];\n}/"
2019-06-02 15:57:16 +02:00
# The rules MUST be sorted by the number column first and then the first matching rule MUST be used. # ROAs MUST be checked against these rules and max-length of the ROA NUST NOT be longer than allowed by the matching rule.
2017-12-05 22:14:28 +01:00
# Nr Action Prefix MinLen MaxLen # Comment
2019-06-02 15:57:16 +02:00
1001 permit fd00::/8 44 64 # ULA (defined)
9999 deny ::/0 0 128 # block the rest
2017-12-05 22:14:28 +01:00