Age | Commit message (Collapse) | Author |
|
option
The mentioned CLI option is not available in FRR, there is one one generic
dynamic capability option in the root of the neighbor. This commit drops the
CLI support as it will be migrate to math FRR support.
(cherry picked from commit 0d42f7119306f2ebd6011f650be1675cb267acb7)
|
|
|
|
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
}
}
}
|
|
|
|
|
|
|