howto/Bird.md
... ...
@@ -105,7 +105,7 @@ $ ruby utils/bgp-filter.rb --format bird < data/filter6.txt > /etc/bird/filter6.
105 105
106 106
or
107 107
108
-$ curl -sk https://dn42.us/git/dn42/registry/plain/data/filter6.txt | \
108
+$ curl -sk https://ca.dn42.us/reg/filter6.txt | \
109 109
awk 'BEGIN {printf "function is_valid_network() {\n return net ~ [\n" } \
110 110
/^[0-9]/ && $2 ~ /permit/ {printf " %s{%s,%s},\n", $3, $4, $5};' | \
111 111
sed "$ s/,$/\n ];\n}/" > /etc/bird/filter6.conf
... ...
@@ -285,7 +285,7 @@ $ ruby utils/bgp-filter.rb --format bird < data/filter.txt > /etc/bird/filter4.c
285 285
286 286
or
287 287
288
-$ curl -sk https://dn42.us/git/dn42/registry/plain/data/filter.txt | \
288
+$ curl -sk https://ca.dn42.us/reg/filter.txt | \
289 289
awk 'BEGIN {printf "function is_valid_network() {\n return net ~ [\n" } \
290 290
/^[0-9]/ && $2 ~ /permit/ {printf " %s{%s,%s},\n", $3, $4, $5};' | \
291 291
sed "$ s/,$/\n ];\n}/" > /etc/bird/filter4.conf