Package: frr / 6.0.2-2+deb10u1
Metadata
| Package | Version | Patches format |
|---|---|---|
| frr | 6.0.2-2+deb10u1 | 3.0 (quilt) |
Patch series
view the series file| Patch | File delta | Description |
|---|---|---|
| 0001 vtysh fix pager compatibility handling.patch | (download) |
vtysh/vtysh.c |
12 7 + 5 - 0 ! |
vtysh: fix pager compatibility handling |
| 0002 watchfrr build in defaults for r s k.patch | (download) |
configure.ac |
1 1 + 0 - 0 ! |
watchfrr: build in defaults for -r/-s/-k |
| systemd deps.patch | (download) |
tools/frr.service |
6 4 + 2 - 0 ! |
fix systemd install & dependencies |
| Add_peer_action_for_PEER_FLAG_IFPEER_V6ONLY_flag.patch | (download) |
bgpd/bgpd.c |
1 1 + 0 - 0 ! |
[patch] bgpd: add peer action for peer_flag_ifpeer_v6only flag
peer_flag_modify() will always return BGP_ERR_INVALID_FLAG because
the action was not defined for PEER_FLAG_IFPEER_V6ONLY flag.
```
global PEER_FLAG_IFPEER_V6ONLY = 16384;
global BGP_ERR_INVALID_FLAG = -2;
probe process("/usr/lib/frr/bgpd").statement("peer_flag_modify@/root/frr/bgpd/bgpd.c:3975")
{
if ($flag == PEER_FLAG_IFPEER_V6ONLY && $action->type == 0)
printf("action not found for the flag PEER_FLAG_IFPEER_V6ONLY\n");
}
probe process("/usr/lib/frr/bgpd").function("peer_flag_modify").return
{
if ($return == BGP_ERR_INVALID_FLAG)
printf("return BGP_ERR_INVALID_FLAG\n");
}
```
produces:
action not found for the flag PEER_FLAG_IFPEER_V6ONLY
return BGP_ERR_INVALID_FLAG
$ vtysh -c 'conf t' -c 'router bgp 20' -c 'neighbor eth1 interface v6only remote-as external'
Signed-off-by: Donatas Abraitis <donatas.abraitis@gmail.com>
|
| interface_based_peers_should_automatically_override_it_s_peer_group.patch | (download) |
bgpd/bgp_vty.c |
2 1 + 1 - 0 ! |
bgpd: interface based peers should automatically override it's peer group When a interface based peer is setup and if it is part of a peer group we should ignore this and just use the PEER_FLAG_CAPABILITY_ENHE no matter what. Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com> Signed-off-by: Donatas Abraitis <donatas.abraitis@gmail.com> |
