summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-03-08lua: Add wireguard interfacelua/luaMikael Magnusson
2019-03-08lua: Add route.gw and route.ifnameMikael Magnusson
2019-03-08lua: Fix memory handlingMikael Magnusson
2019-03-08lua: DebugMikael Magnusson
2019-02-28Merge branch 'tunnel-encap' into buildMikael Magnusson
2019-02-28Merge branches 'lua-wireguard', 'wireguard-initial' and 'wireguard-lib' into ↵Mikael Magnusson
build
2019-02-28wg: Update importold/wireguard-libMikael Magnusson
2019-02-28wireguard: update libraryold/wireguard-upstreamMikael Magnusson
2019-02-28wireguard: update libraryMikael Magnusson
2019-02-28wireguard: update libraryMikael Magnusson
2019-02-28import wireguard libraryMikael Magnusson
2019-02-28Wireguard: Initial commitold/wireguard-initialMikael Magnusson
2019-02-27lua: Add route:ea_set_attr_datalua/wireguardMikael Magnusson
2019-02-27fix const warningMikael Magnusson
2019-02-27bgp: Tunnel encapold/tunnel-encapMikael Magnusson
2019-02-25WIP add ea_findMikael Magnusson
2019-02-23Lua: WIP tunnel encapMikael Magnusson
2019-02-23Lua: Fix warninglua/filterMikael Magnusson
2019-02-22Lua: Fix unused parameter warningsMikael Magnusson
2019-02-22Lua: Add route table with network prefixMikael Magnusson
2019-02-22Lua: Allow evaluation in globalsMikael Magnusson
2019-02-22Support multi-line stringsMikael Magnusson
2019-02-22Lua: Adapt to changes in int-new branchMikael Magnusson
2019-02-22Lua: using newthread()Jan Maria Matejka
2019-02-22lua filter saving and reusingJan Maria Matejka
2019-02-22Lua filtering able to reject and acceptJan Maria Matejka
2019-02-22lua: more stubJan Moskyto Matejka
2019-02-22Lua: common log functionsJan Moskyto Matejka
2019-02-22Lua filters: connected with no exported varsJan Moskyto Matejka
2019-02-22Conf: Switch for faster (and slightly bigger) lexerMaria Matejka
2019-02-22Nest: Do not compare rte.flags during rte_update()Ondrej Zajicek (work)
Route flags are mosty internal state of rtable, they are not significant to whether a route has changed. With the old code, all routes received as a part of enhanced route refresh are always re-announced to other peers due to change in REF_STALE.
2019-02-19HTML are no longer generated in srcdirOndrej Zajicek (work)
2019-02-19Doc: Detect SP/OpenSP automaticallyOndrej Zajicek (work)
2019-02-19Nest: Prevent withdraws from propagation back to source protocol (for ↵Ondrej Zajicek (work)
accepted mode) Update for one of previous patches, handles the the issue for first-accepted mode of route propagation.
2019-02-17OSPF: Reset LSAs during area type changeOndrej Zajicek (work)
When area is reconfigured to a different type, we need to flush LSAs as they may not be valid (e.g. NSSA-LSA for non-NSSA area). Also, when we have have just one OSPF area and that changes type, we could restart OSPF as there is no state to keep anyway. That solves issue with different handling of external routes exported to OSPF based of main area type.
2019-02-13OSPF: Basic support for DN-bit handling (RFC 4576)Ondrej Zajicek (work)
External LSAs originated by OSPF routers with VPN-PE behavior enabled are marked by DN flag and they are ignored by other OSPF routers with VPN-PE enabled.
2019-02-09OSPF: Do not originate Router-Information LSAOndrej Zajicek (work)
As we do not have much usage for it yet.
2019-02-09Merge remote-tracking branch 'origin/mq-opt'Ondrej Zajicek (work)
2019-02-05Nest: Improve export counter handlingOndrej Zajicek (work)
One of previous workarounds for phantom route avoidance breaks export counters by expanding sending of spurious withdraws, which are send when we are not sure whether we have advertised that routes in the past. If not, then export counter is decreased, but it was not increased before, so it overflows under zero. The patch fixes that by sendung spurious withdraws, but not counting them on export counter. That may lead to error in the other direction, but that happens only as a race condition (i.e., in normal operation filters return proper values about old route export state).
2019-02-05Nest: Report preferred counters also when 'import keep filtered' is enabledOndrej Zajicek (work)
Thanks to Michal Nowak for reporting the issue.
2019-02-03OSPF: Send direct acknowledgements as unicastOndrej Zajicek (work)
Direct acknowledgements should be send as unicast to a corresponding neighbor. Only delayed acks should be send as multicast to all/designated routers.
2019-02-03OSPF: Reject duplicate DBDES packets after dead intervalOndrej Zajicek (work)
Master may free last DBDES packet immediately. Slave must wait dead interval before freeing last DBDES packet and then reject duplicate DBDES packets with SeqNumberMismatch.
2019-02-03OSPF: DD seqnum should be initialized only for first attemptsOndrej Zajicek (work)
After SeqNumberMismatch/BadLSReq, we should continue with the old seqnum++. The old code tries to do that by n->adj, but it was set nowhere.
2019-02-03OSPF: Reject DBDES packets with non-matching MTUOndrej Zajicek (work)
As it is specified in RFC 2328. The old code just provided warning.
2019-02-02Nest: Reestablish preferred countersOndrej Zajicek (work)
2019-02-01Perf: Added forgotten all-protocol optionsMaria Matejka
2019-01-31Nest: FIB rehash values tweaked for better performanceMaria Matejka
2019-01-31Perf: Prune the table after every loop to have clean state.Maria Matejka
2019-01-31Perf: Write also BIRD version to have all the needed data in the logfileMaria Matejka
2019-01-31Nest: Don't lookup net in table before filters are run.Maria Matejka
Using dummy net instead. This should help with performance on rejected routes.