Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-12-07 | Timers: Parse and format functions for microsecond times | Ondrej Zajicek (work) | |
Date/time output (e.g. in logs, show commands) can use %f to specify subsecond time. By default, millisecond precision is used in output. | |||
2017-10-10 | OSPF: Add option to disable OSPFv3-AF | Ondrej Zajicek (work) | |
2017-06-09 | Babel: Add documentation for dual-stack operation and options | Ondrej Zajicek (work) | |
This updates the documentation for the Babel protocol to mention the fact that it now supports dual-stack operation, and adds documentation for the new next hop options. Thanks to Toke Høiland-Jørgensen <toke@toke.dk> for the patch. | |||
2017-04-29 | One last update to NEWS and examplev2.0.0-pre1 | Ondrej Zajicek (work) | |
2017-04-28 | Merge master into int-new | Ondrej Zajicek (work) | |
2017-04-26 | Flowspec: Max tcp mask length is 12 bits | Ondrej Zajicek (work) | |
2017-04-26 | Doc: BIRD example update | Ondrej Zajicek (work) | |
2017-04-25 | Nest: Update of show route cmd | Ondrej Zajicek (work) | |
Some code cleanup, multiple bugfixes, allows to specify also channel for 'show route export'. Interesting how such apparenty simple thing like show route cmd has plenty of ugly corner cases. | |||
2017-04-12 | Client: multitable version of show route | Jan Moskyto Matejka | |
2017-03-29 | Netlink: Change default kernel metric to 32 | Ondrej Zajicek (work) | |
This avoids collisions with non-BIRD routes in kernel tables. | |||
2017-03-29 | BGP: Update list of supported standards | Ondrej Zajicek (work) | |
2017-03-22 | Merge branch 'nexthop-merged' into int-new | Jan Moskyto Matejka | |
2017-03-22 | Filter: Check whether IP is 4 or 6 | Jan Moskyto Matejka | |
2017-03-14 | Minor cleanups | Ondrej Zajicek (work) | |
BTW, 'prefices' is hypercorrection, as 'prefix' is from 'praefixum' with plural 'praefixa'. | |||
2017-03-14 | BGP: Allow to specify interface for regular sessions | Ondrej Zajicek (work) | |
This may be useful if multple interfaces share the same network range. Thanks to Fritz Grimpen for the original patch. | |||
2017-03-13 | Filters: VPN Route Distinguishers, Prefix Type, Docs Update | Jan Moskyto Matejka | |
2017-03-08 | Update OSPF and RIP protocol names and related documentation | Ondrej Zajicek (work) | |
2017-02-23 | BGP: Allow exchanging LOCAL_PREF with eBGP peers | Ondrej Zajicek (work) | |
Adds option 'allow bgp_local_pref' to override the usual restriction of LOCAL_PREF on eBGP sessions. Thanks to Lennert Buytenhek for the patch. | |||
2017-02-22 | Merge branch 'int-new' into nexthop-merged | Jan Moskyto Matejka | |
2017-02-20 | Several minor fixes | Ondrej Zajicek (work) | |
2017-02-19 | Doc: Fix RIP example | Ondrej Zajicek (work) | |
Thanks to Steve Leung for the bugreport. | |||
2017-02-07 | BGP: Minor cleanups | Ondrej Zajicek (work) | |
2017-01-22 | BGP: Support for AS confederations (RFC 5065) | Ondrej Zajicek (work) | |
2016-12-22 | Static: Protocol rework wrt. struct nexthop changes; MPLS label support | Jan Moskyto Matejka | |
2016-12-07 | Doc: Add MP-BGP example config file | Ondrej Zajicek (work) | |
2016-12-07 | Basic flow specification support (RFC 5575) | Ondrej Zajicek (work) | |
Add flow4/flow6 network and rt-table type and operations, config grammar and static protocol support. Squashed flowspec branch from Pavel Tvrdik. | |||
2016-12-07 | Merge branch 'int-new-rpki-squashed' (early part) into int-new | Jan Moskyto Matejka | |
2016-12-07 | RPKI protocol with one cache server per protocol | Pavel Tvrdík | |
The RPKI protocol (RFC 6810) using the RTRLib (http://rpki.realmv6.org/) that is integrated inside the BIRD's code. Implemeted transports are: - unprotected transport over TCP - secure transport over SSHv2 Example configuration of bird.conf: ... roa4 table r4; roa6 table r6; protocol rpki { debug all; # Import both IPv4 and IPv6 ROAs roa4 { table r4; }; roa6 { table r6; }; # Set cache server (validator) address, # overwrite default port 323 remote "rpki-validator.realmv6.org" port 8282; # Overwrite default time intervals retry 10; # Default 600 seconds refresh 60; # Default 3600 seconds expire 600; # Default 7200 seconds } protocol rpki { debug all; # Import only IPv4 routes roa4 { table r4; }; # Set cache server address to localhost, # use default ports tcp => 323 or ssh => 22 remote 127.0.0.1; # Use SSH transport instead of unprotected transport over TCP ssh encryption { bird private key "/home/birdgeek/.ssh/id_rsa"; remote public key "/home/birdgeek/.ssh/known_hosts"; user "birdgeek"; }; } ... | |||
2016-11-09 | Unit Testing for BIRD | Ondrej Zajicek (work) | |
- Unit Testing Framework (BirdTest) - Integration of BirdTest into the BIRD build system - Tests for several BIRD modules Based on squashed Pavel Tvrdik's int-test branch, updated for current int-new branch. | |||
2016-11-08 | Merge branch 'master' into int-new | Ondrej Zajicek (work) | |
2016-11-08 | Merge tag 'v1.6.2' into int-new | Ondrej Zajicek (work) | |
2016-11-02 | BFD: Authentication | Ondrej Zajicek (work) | |
Implement BFD authentication (part of RFC 5880). Supports plaintext passwords and cryptographic MD5 / SHA-1 authentication. Based on former commit from Pavel Tvrdik | |||
2016-11-02 | DOC: Password algorithm option | Pavel Tvrdík | |
2016-10-12 | Doc: Change debug to { flag1|flag2|flag3 [, ...] } style | Pavel Tvrdik | |
Thanks to Micah Anderson for bug report and Ondrej Zajicek for the idea! | |||
2016-10-12 | Doc: Fix deprecated unescaped braces in perl script | Pavel Tvrdik | |
This commit should fix warning `make docs' ./sgml2html bird.sgml Unescaped left brace in regex is deprecated, passed through in regex; marked by <-- HERE in m/\\nameurl{ <-- HERE (.*)}{(.*)}/ at fmt_latex2e.pl line 287. | |||
2016-10-11 | Doc: Add tag for links to RFCs | Pavel Tvrdik | |
2016-10-11 | Doc: Fix inline <htmlurl></htmlurl> | Pavel Tvrdik | |
Don't make space before or after link name. | |||
2016-10-11 | Doc: Do not use symlinks for files | Pavel Tvrdik | |
2016-10-11 | Doc: Generate one-sided version | Pavel Tvrdik | |
This removes jumping offset for odd and even pages for binding book. | |||
2016-10-11 | Doc: Use [table t] or [table name] | Pavel Tvrdik | |
2016-10-11 | Doc: Fix unnecessary special chars | Pavel Tvrdik | |
2016-10-11 | Doc: Enable break lines in <tag></tag> | Pavel Tvrdik | |
2016-10-11 | Doc: Daemon command-line options alphabet order | Pavel Tvrdik | |
2016-10-11 | Doc: Add command-line options --version, --help | Pavel Tvrdik | |
2016-10-11 | Doc: Add labels to all chapters and options | Pavel Tvrdik | |
2016-10-11 | Doc: Generate clickable PDF | Pavel Tvrdik | |
2016-10-11 | Doc: Fix whitespaces | Pavel Tvrdik | |
2016-10-04 | Doc: Documentation for large communities | Ondrej Zajicek (work) | |
2016-09-29 | Docs: fix BFD label | Pavel Tvrdik | |
BFD headline will appear in Table of Contents again. | |||
2016-09-21 | Add !~ operator to filter grammar | Pavel Tvrdik | |