Age | Commit message (Collapse) | Author |
|
|
|
have it at 4
and employ the migration script for enforce-first-as.
|
|
Deleted obsoleted BGP scan-time parameter, as it never existed in FRRouting as unneeded - there is used more modern next-hop tracking instead.
|
|
This reverts commit 890c9e8984c6b4eeef7ee277c88777416e1fb340.
|
|
To have a consitent IPv4/IPv6 CLI a lot of BGP neighbor nodes have been
migrated. The IPv4 peer-group has been forgotten, leaving a non consistent CLI.
Previously:
-----------
neighbor 2001:DB8:FFFF::1 {
address-family {
ipv6-unicast {
peer-group iBGP
}
}
peer-group iBGP
}
Now:
----
neighbor 2001:DB8:FFFF::1 {
address-family {
ipv6-unicast {
peer-group iBGP
}
}
address-family {
ipv4-unicast {
peer-group iBGP
}
}
}
|
|
|
|
|
|
|