howto/Bird.md
... ...
@@ -116,7 +116,7 @@ $ ruby utils/bgp-filter.rb --format bird < data/filter6.txt > /etc/bird/filter6.
116 116
117 117
or
118 118
119
-$ curl -sk https://ca.dn42.us/reg/filter6.txt | \
119
+$ curl -s https://ca.dn42.us/reg/filter6.txt | \
120 120
awk '/^[0-9]/ && $2 ~ /permit/ {printf "%s{%s,%s}\n", $3, $4, $5}' | \
121 121
awk 'BEGIN {printf "function is_valid_network() {\n return net ~ [\n"} \
122 122
NR > 1 {printf ",\n"} {printf " %s", $1}
... ...
@@ -305,7 +305,7 @@ $ ruby utils/bgp-filter.rb --format bird < data/filter.txt > /etc/bird/filter4.c
305 305
306 306
or
307 307
308
-$ curl -sk https://ca.dn42.us/reg/filter.txt | \
308
+$ curl -s https://ca.dn42.us/reg/filter.txt | \
309 309
awk '/^[0-9]/ && $2 ~ /permit/ {printf "%s{%s,%s}\n", $3, $4, $5}' | \
310 310
awk 'BEGIN {printf "function is_valid_network() {\n return net ~ [\n"} \
311 311
NR > 1 {printf ",\n"} {printf " %s", $1}