Summary
Currently, VyOS only supports the "plain" notation. This leads to ugly configs like this:
bgp {
peer-group foo {
/* AS 64500.10101 */
remote-as 4227082101
}
peer-group bar {
/* AS 64500.10101 */
remote-as 4227082101
}
/* AS 64500.1 */
system-as 4227072001
}It would be much nicer if VyOS had BGP dot notation support:
bgp {
peer-group foo {
remote-as 64500.10101
}
peer-group bar {
remote-as 64500.10101
}
system-as 64500.1
}Normal plain notation would of course still be possible.
Use case
Datacenter use cases with large 4-byte AS (reserved range starts at 4200000000).