Maria Matejka
83a409abd2
Cached route attributes now have explicitly marked layers
...
Also the rta_* functions renamed to ea_* functions
2024-05-22 11:34:34 +02:00
Maria Matejka
a6ef8cd492
Route table export journal converted to the generic structure
2024-05-22 11:34:34 +02:00
Maria Matejka
10f41cda87
Refactoring of struct rt_pending_export
...
Now it stores const rte * instead of struct rte_storage * to allow for
different storage backends.
2024-05-22 11:34:33 +02:00
Maria Matejka
fe3d7c1a17
Merge a branch of fixes and updates needed for stabilization of v3.
...
Merge commit 'c06ce709' into HEAD
2024-05-19 11:28:03 +02:00
Maria Matejka
2900a608f0
L3VPN: Setting the bgp_ext_community flags properly
2024-05-19 11:27:18 +02:00
Maria Matejka
c06ce7090f
Static: Unlock IGP tables on cleanup to avoid problems with hostentry unlocking
2024-05-18 15:50:03 +02:00
Maria Matejka
c3698535e3
BGP: Fixed corking of RX
...
If cork occurred after some incoming data had been already processed,
BGP incorrectly processed them again after uncorking because it forgot
to store the actual socket state.
Now storing the socket state (done at the end of bgp_rx()) and
therefore the bug is fixed.
2024-05-18 15:48:03 +02:00
Maria Matejka
ef16f07633
Fixed annoying undefined values with nexthops
2024-05-18 15:46:53 +02:00
Ondrej Zajicek
5d5c431a3c
Merge commit '0b684a43bd7ce4a32c9cd7754b88286bcd1815bb' into thread-next
2024-04-01 18:24:10 +02:00
Ondrej Zajicek
477b3e5c98
Merge commit '66d6ac70856bdb29840983454373bb10a532e4f7' into thread-next
2024-04-01 18:21:37 +02:00
Ondrej Zajicek
0883ce66bf
Merge commit '1b064355f752b9bfe4644f775697bbd9b711f762' into thread-next
2024-04-01 18:20:18 +02:00
Ondrej Zajicek
f27d1bae0f
Merge commit '26dd61ee7f91c15157601b2404de5b6500a6061c' into thread-next
2024-04-01 03:01:59 +02:00
Ondrej Zajicek
a0ec075de3
Merge commit '2d0652dd1088395c50df8fe1a99f1111b44688c6' into thread-next
2024-04-01 03:00:10 +02:00
Ondrej Zajicek
07757b8a0c
Filter: Initialize route attribute flags properly
...
Move 'flags' field back to ea_class, so filtering code can use it to
initialize route attribute flags when set by filters.
2024-04-01 02:53:25 +02:00
Ondrej Zajicek
0bcc7a9316
Merge commit '44a16bff6cbf3f5ae8db21ffcec602bc51295d0a' into thread-next
2024-03-28 20:03:46 +01:00
Ondrej Zajicek
62c9f12dfc
Merge commit '574d7eb241a60622b0573ab1460cb23d968ba1cc' into thread-next
2024-03-28 15:00:40 +01:00
Ondrej Zajicek
d2a531a92b
L3VPN: Fix missing rte_owner_class registration
2024-03-28 00:55:19 +01:00
Ondrej Zajicek
a698f8d917
Static: Fix invalid combination of nexthop options
...
BFD requires defined local IP, but for nexthop with onlink there might
not be such address. So we reject this combination of nexthop options.
This prevent crash where such combination of options is used.
2024-03-22 00:40:06 +01:00
Ondrej Zajicek
d21a508e8d
Revert "OSPF: On physical PtP links, skip next-hop resolving"
...
This reverts commit 31aa62ae6d
.
2024-03-21 15:59:26 +01:00
Ondrej Zajicek
46a4932574
Merge commit '44e351d1522f0099687aac9fd65dcea73a04af43'
2024-03-21 15:58:52 +01:00
Ondrej Zajicek
66d6ac7085
Babel: Fix build with limited set of protocols
2024-03-19 15:39:46 +01:00
Ondrej Zajicek
06209c1917
Aggregator: Fix build with limited set of protocols
2024-03-19 15:39:19 +01:00
Michal Zagorski
099898ffdd
Static: Fix build with limited set of protocols
2024-03-11 12:57:13 +01:00
Ondrej Zajicek
1b064355f7
Client: Add support for completion of command options
...
We can easily extend command completion to handle also keywords for
command options. Help for command options is not yet supported.
2024-03-05 19:04:10 +01:00
Ondrej Zajicek
26dd61ee7f
BFD: Add arguments to 'show bfd sessions' command
...
Add several arguments to 'show bfd sessions' command to filter
the list of sessions.
2024-03-05 00:02:16 +01:00
Ondrej Zajicek
4737937375
BFD: Improve 'show bfd sessions all' command
2024-03-04 23:51:37 +01:00
Katerina Kubecova
a48dc5efe0
BFD: Show session for ip / ip prefix
2024-03-04 23:35:10 +01:00
Katerina Kubecova
37bf207843
BFD: show bfd sessions all
2024-03-04 23:35:10 +01:00
Job Snijders
e2728c8078
RPKI: Add 'local address' configuration option
...
Allow to explicitly configure the source IP address for RPKI-To-Router
sessions. Predictable source addresses are useful for minimizing the
holes to be poked in ACLs.
Changed from 'source address' to 'local address' by committer.
2024-02-22 14:58:29 +01:00
Ondrej Zajicek
2d0652dd10
BGP: Maintain valid route attribute flags even in local tables
...
BGP route attributes have flags (Optional, Transitive) that are validated
on decode and set to valid value on export. But if such attribute is
modified by filter or set internally by BGP during import, then its flags
would be zero in local tables. That usually does not matter, as they are
not used locally and they were fixed on export, but invalid flags leaked
in BMP and MRT dumps.
Keep route attribute flags set to valid values even when set by filters
or modified by BGP.
2024-02-20 17:39:05 +01:00
Job Snijders
44a16bff6c
BGP: Update SendHoldTimer BGP Error code
...
IANA registered an "Early Allocation" BGP Error code for 'Send Hold
Timer Expired' event. Update BIRD to use that error code.
2024-02-18 09:06:52 +01:00
Ondrej Zajicek
c3335b5044
Static: Allow to define both nexthop and interface
...
Allow to define both nexthop and interface using iproute2-like syntax,
e.g.: route 10.0.0.0/16 via 10.1.0.1 dev "eth0";
Now we can avoid to use link-local scope hack (e.g. 10.1.0.1%eth0)
for cases where both nexthop and interface have to be defined.
Thanks to Marcin Saklak for the suggestion.
2024-02-16 18:44:40 +01:00
Alexander Zubkov
574d7eb241
BGP: Allow multiple EBGP neighbors with the same peer.
...
We can distinguish BGP sessions if at least one side uses a different IP
address. Extend olock mechanism to handle local IP as a part of key, with
optional wildcard, so BGP sessions could local IP in the olock and not
block themselves.
2024-02-07 19:11:10 +01:00
Ondrej Zajicek
ff2ebdc7e1
BGP: Increase max length of notification data in error logs
...
Increase max length of notification data in error logs from 16 to 128.
There is already enough space in the buffer.
Thanks to Marco d'Itri for the suggestion.
2024-02-06 18:34:55 +01:00
Maria Matejka
3b217f2984
Fixed L3VPN after merge to v3.
...
Semantics of rt_get_source() has changed between v2 and v3. Also other
minor fixes were needed to make it run.
2024-01-30 23:14:10 +01:00
Maria Matejka
058984bc86
BGP: fixed MPLS setting in nexthops
...
bug introduced somewhere during conversion of nexthops to eattrs
2024-01-29 22:12:38 +01:00
Maria Matejka
d615633437
Merge commit '13c6cf8a7430a6b133e46525256eb5554b3f0a2b' into thread-next
2024-01-28 23:09:47 +01:00
Maria Matejka
ddb4d9a24c
Merge commit 'v2.14-95-g6d453c16' into thread-next
2024-01-28 15:04:45 +01:00
Maria Matejka
8b4f53675e
Merge commit 'v2.14-92-gf27b05de' into thread-next
2024-01-28 15:00:59 +01:00
Maria Matejka
6d453c16e0
Merge commit 'v2.14-38-g422f795f' into mq-merge-step-2
2024-01-28 15:00:48 +01:00
Maria Matejka
f27b05de98
Merge commit 'v2.14-36-g5fdfbf61' into mq-merge-step-2
2024-01-28 14:58:04 +01:00
Maria Matejka
b5afbe057e
Merge commit 'v2.14-89-g74de3858' into thread-next
2024-01-28 14:57:52 +01:00
Maria Matejka
74de38589d
Merge commit 'v2.14-34-g23025ab5' into mq-merge-step-2
2024-01-28 14:57:46 +01:00
Maria Matejka
ecbeac8582
Merge commit 'v2.14-86-g9b731089' into thread-next
2024-01-28 14:57:15 +01:00
Maria Matejka
9b731089b5
Merge commit 'v2.14-32-gcaa9460a' into mq-merge-step-2
2024-01-28 14:57:10 +01:00
Maria Matejka
4628a117d9
Merge commit 'v2.13.1-186-g761649e6' into thread-next
2024-01-28 14:38:43 +01:00
Maria Matejka
761649e66b
Merge commit 'v2.13.1-141-g4f806813' into mq-merge-step-2
2024-01-28 14:29:16 +01:00
Maria Matejka
8d2ec536d9
Merge commit 'v2.13.1-183-g2b05844c' into thread-next
2024-01-28 14:28:17 +01:00
Maria Matejka
2b05844cfb
Merge commit 'v2.13.1-139-gc9d1ebbd' into mq-merge-step-2
2024-01-28 14:28:09 +01:00
Maria Matejka
7a4314ee02
Merge commit 'v2.13.1-133-g7cc3d300' into mq-merge-step-2
2024-01-28 14:20:45 +01:00