Skip to content

Releases: bgpfix/bgpipe

v0.20.1

10 Apr 12:59

Choose a tag to compare

v0.20.0

10 Apr 12:37
b30dfdf

Choose a tag to compare

What's Changed

  • feat: ASPA path validation in rpki stage + HTTP auth, websocket and stage fixes by @pforemski in #34

Full Changelog: v0.19.0...v0.20.0

v0.19.0

06 Mar 13:12
eb58e07

Choose a tag to compare

What's Changed

  • feat: HTTP API, Prometheus metrics stage, RPKI metrics by @pforemski in #32

Full Changelog: v0.18.0...v0.19.0

v0.18.0

16 Feb 16:29
c4c34a8

Choose a tag to compare

What's Changed

  • docs: add json, attr, time, dir, seq filter documentation by @pforemski in #31

Full Changelog: v0.17.3...v0.18.0

v0.17.3

12 Feb 13:17

Choose a tag to compare

Full Changelog: v0.17.2...v0.17.3

v0.17.2

12 Feb 12:59
34dd9f9

Choose a tag to compare

What's Changed

Full Changelog: v0.17.1...v0.17.2

v0.17.1

10 Feb 15:52
c1cbc9b

Choose a tag to compare

The release updates bgpipe documentation and navigation, bumps the bgpfix dependency, and introduces a configurable stage stop timeout along with lifecycle unit tests to validate stage start/stop behavior (see #29).

v0.17.0

07 Feb 01:53
960b02e

Choose a tag to compare

RouteViews live

This release brings live RouteViews data streaming (using Kafka), along many smaller bug fixes and improvements.

Full Changelog: v0.15.2...v0.17.0

v0.15.2

17 Jan 16:52

Choose a tag to compare

RPKI validation on-the-fly

This release brings real-time RPKI validation, so bgpipe can now secure old BGP routers that do not support RPKI.

By default, the RTR server run by Cloudflare is used, but any RTR server or ROA file can be used instead. The stage supports many options, see bgpipe rpki -h for more details:

Stage usage: rpki [OPTIONS]

Description: validate UPDATEs using RPKI

Options:
      --rtr string             RTR server address (host:port) (default "rtr.rpki.cloudflare.com:8282")
      --rtr-refresh duration   RTR refresh interval (default 1h0m0s)
      --rtr-retry duration     RTR retry interval (default 10m0s)
      --timeout duration       connect timeout (0 means none) (default 15s)
      --retry                  retry connection on temporary errors (default true)
      --retry-max int          maximum number of connection retries (0 means unlimited)
      --tls                    connect over TLS
      --insecure               do not validate TLS certificates
      --no-ipv6                avoid IPv6 if possible
      --file string            use a ROA file instead of RTR (JSON/CSV, auto-reloaded)
      --invalid string         action for INVALID prefixes: withdraw|filter|drop|split|keep (default "withdraw")
      --strict                 treat NOT_FOUND same as INVALID
      --tag                    add RPKI validation status to message tags (default true)
      --event string           emit event on RPKI INVALID messages
      --asap                   do not wait for ROA cache to become ready

Common Options:
  -L, --left                   operate in the L direction
  -R, --right                  operate in the R direction
  -A, --args                   consume all CLI arguments till --
  -W, --wait strings           wait for given event before starting
  -S, --stop strings           stop after given event is handled
  -I, --if string              stage input filter (skip non-matching input)
      --rate-limit float       delay messages if over the rate limit
      --rate-sample float      sample messages if over the rate limit

Another new feature is the addition of stage rate limiting and sampling.

Many smaller bugs were fixed and the overall performance improved. The underlying BGPFix library now has a more comprehensive BGP wire format unit test coverage.

Full Changelog: v0.14.0...v0.15.2

v0.14.0

19 Dec 13:21
88bd75e

Choose a tag to compare

RIPE RIS Live streaming

This release adds a new ris-live stage that streams BGP messages real-time from the RIPE RIS Live endpoint, with automatic retry logic and configurable timeouts.

It also adds a new --guess-asn (short -g) flag for automatic ASN byte size detection. From now, we always set UTC as the default timezone globally. The release updates the bgpfix library dependency from v0.8.0 to v0.9.0.