Skip to content
Snippets Groups Projects
  1. May 11, 2020
  2. Apr 09, 2020
  3. Jul 24, 2019
  4. Nov 28, 2018
    • Ondřej Zajíček's avatar
      Nest: Do not hard-reset interface when preferred address is changed · e2ae0869
      Ondřej Zajíček authored
      Modify protocols to use preferred address change notification instead on
      depending on hard-reset of interfaces in that case, and remove hard-reset
      in that case. This avoids issue when e.g. IPv6 protocol restarts
      interface when IPv4 preferred address changed (as hard-reset is
      unavoidable and common for whole iface).
      
      The patch also fixes a bug when removing last address does not send
      preferred address change notification.
      e2ae0869
  5. Nov 05, 2018
  6. Oct 11, 2018
  7. Feb 07, 2018
  8. Dec 16, 2017
  9. Dec 10, 2017
  10. Dec 08, 2017
  11. Dec 07, 2017
  12. Oct 17, 2017
  13. Sep 06, 2017
    • Ondřej Zajíček's avatar
      Basic VRF support · 943478b0
      Ondřej Zajíček authored
      Add basic VRF (virtual routing and forwarding) support. Protocols can be
      associated with VRFs, such protocols will be restricted to interfaces
      assigned to the VRF (as reported by Linux kernel) and will use sockets
      bound to the VRF. E.g., different multihop BGP instances can use diffent
      kernel routing tables to handle BGP TCP connections.
      
      The VRF support is preliminary, currently there are several limitations:
      
      - Recent Linux kernels (4.11) do not handle correctly sockets bound
      to interaces that are part of VRF, so most protocols other than multihop
      BGP do not work. This will be fixed by future kernel versions.
      
      - Neighbor cache ignores VRFs. Breaks config with the same prefix on
      local interfaces in different VRFs. Not much problem as single hop
      protocols do not work anyways.
      
      - Olock code ignores VRFs. Breaks config with multiple BGP peers with the
      same IP address in different VRFs.
      
      - Incoming BGP connections are not dispatched according to VRFs.
      Breaks config with multiple BGP peers with the same IP address in
      different VRFs. Perhaps we would need some kernel API to read VRF of
      incoming connection? Or probably use multiple listening sockets in
      int-new branch.
      
      - We should handle master VRF interface up/down events and perhaps
      disable associated protocols when VRF goes down. Or at least disable
      associated interfaces.
      
      - Also we should check if the master iface is really VRF iface and
      not some other kind of master iface.
      
      - BFD session request dispatch should be aware of VRFs.
      
      - Perhaps kernel protocol should read default kernel table ID from VRF
      iface so it is not necessary to configure it.
      
      - Perhaps we should have per-VRF default table.
      943478b0
  14. Aug 10, 2017
  15. Nov 01, 2016
  16. Feb 01, 2016
  17. Dec 21, 2015
  18. Dec 20, 2015
  19. Nov 12, 2015
  20. Nov 03, 2014
    • Ondřej Zajíček's avatar
      Changes order of iface/addr/neigh event hooks. · f92e6ab3
      Ondřej Zajíček authored
      Now the order is:
      
      Up   -> iface, addr, neigh
      Down -> neigh, addr, iface
      
      It fixes the case when an iface appears, related static routes are
      activated and exported to OSPF before the iface notification and
      therefore forwarding addresses are not encoded in generated external
      LSAs.
      f92e6ab3
  21. Nov 24, 2013
  22. Apr 16, 2013
  23. Dec 27, 2012
    • Ondřej Zajíček's avatar
      Implements interface masks for choosing router id. · 79b4e12e
      Ondřej Zajíček authored
      Router ID could be automatically determined based of subset of
      ifaces/addresses specified by 'router id from' option. The patch also
      does some minor changes related to router ID reconfiguration.
      
      Thanks to Alexander V. Chernikov for most of the work.
      79b4e12e
  24. Jan 23, 2012
  25. Jan 21, 2012
  26. Jan 01, 2012
  27. Dec 12, 2011
  28. May 01, 2011
  29. Mar 28, 2011
  30. Dec 22, 2010
  31. Nov 11, 2010
  32. Mar 19, 2010
  33. Mar 14, 2010
  34. Feb 27, 2010
    • Ondřej Zajíček's avatar
      Better flushing of interfaces. · 53434e44
      Ondřej Zajíček authored
      When device protocol goes down, interfaces should be flushed
      asynchronously (in the same way like routes from protocols are flushed),
      when protocol goes to DOWN/HUNGRY.
      
      This fixes the problem with static routes staying in kernel routing
      table after BIRD shutdown.
      53434e44
  35. May 29, 2009
  36. May 06, 2009
    • Ondřej Zajíček's avatar
      A change in OSPF and RIP interface patterns. · 20e94fb8
      Ondřej Zajíček authored
      Allows to add more interface patterns to one common 'options'
      section like:
      
      interface "eth3", "eth4" { options common to eth3 and eth4 };
      
      Also removes undocumented and unnecessary ability to specify
      more interface patterns with different 'options' sections:
      
      interface "eth3" { options ... }, "eth4" { options ... };
      20e94fb8
  37. Feb 22, 2003
Loading