You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have found this old issue pointing to an issue when having dashes inside the protocol name within the bird config: ecix/alice-lg#12
This means that e.g. coreX_city does not work as protocol name.
which parses [\w.:]+ for the protocol name. Would it be possible to change this to [0-9a-zA-Z_-.:]+?
Another issue I have found on our setup is the second value of the distance, e.g.:
aaaa:a401:8007::/48 via aaaa:bbbb:e001::1 on eth0 [corexcity 2019-12-27 14:03:10 from aaaa:bbbb:1337:5::7] * (100**/?**) [AS11111i]
This is not parsed because of the ?. This could be fixed by changing (?:/\d+) to (?:/[?\d]+)
Would it be possible to fix those or document the conditions that need to be fulfilled by the environment?
The text was updated successfully, but these errors were encountered:
I have found this old issue pointing to an issue when having dashes inside the protocol name within the bird config: ecix/alice-lg#12
This means that e.g. coreX_city does not work as protocol name.
From my understanding this is due to
birdwatcher/bird/parser.go
Line 76 in b7d8845
Another issue I have found on our setup is the second value of the distance, e.g.:
aaaa:a401:8007::/48 via aaaa:bbbb:e001::1 on eth0 [corexcity 2019-12-27 14:03:10 from aaaa:bbbb:1337:5::7] * (100**/?**) [AS11111i]
This is not parsed because of the ?. This could be fixed by changing (?:/\d+) to (?:/[?\d]+)
Would it be possible to fix those or document the conditions that need to be fulfilled by the environment?
The text was updated successfully, but these errors were encountered: