{"id":45901593,"url":"https://github.com/bgpfix/bgpipe","last_synced_at":"2026-02-27T23:18:28.747Z","repository":{"id":193054940,"uuid":"683998084","full_name":"bgpfix/bgpipe","owner":"bgpfix","description":"BGP pipeline processor","archived":false,"fork":false,"pushed_at":"2026-02-16T16:18:29.000Z","size":1674,"stargazers_count":125,"open_issues_count":0,"forks_count":12,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-02-16T23:43:11.277Z","etag":null,"topics":["bgp","bgpfix","exabgp","firewall","flowspec","golang","networking","proxy","rpki","sdn"],"latest_commit_sha":null,"homepage":"https://bgpipe.org/","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bgpfix.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-08-28T08:29:00.000Z","updated_at":"2026-02-16T16:17:56.000Z","dependencies_parsed_at":"2023-09-06T15:38:47.447Z","dependency_job_id":"e569b52a-e721-42b1-a7c4-f9ddf28938cd","html_url":"https://github.com/bgpfix/bgpipe","commit_stats":null,"previous_names":["bgpfix/bgpipe"],"tags_count":24,"template":false,"template_full_name":null,"purl":"pkg:github/bgpfix/bgpipe","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bgpfix%2Fbgpipe","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bgpfix%2Fbgpipe/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bgpfix%2Fbgpipe/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bgpfix%2Fbgpipe/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bgpfix","download_url":"https://codeload.github.com/bgpfix/bgpipe/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bgpfix%2Fbgpipe/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29918977,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-27T19:37:42.220Z","status":"ssl_error","status_checked_at":"2026-02-27T19:37:41.463Z","response_time":57,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bgp","bgpfix","exabgp","firewall","flowspec","golang","networking","proxy","rpki","sdn"],"created_at":"2026-02-27T23:18:25.452Z","updated_at":"2026-02-27T23:18:28.742Z","avatar_url":"https://github.com/bgpfix.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# bgpipe: BGP pipeline processor\n\n[![Docker Image](https://ghcr-badge.egpl.dev/bgpfix/bgpipe/size?label=docker)](https://github.com/bgpfix/bgpipe/pkgs/container/bgpipe)\n[![GitHub Release](https://img.shields.io/github/v/release/bgpfix/bgpipe)](https://github.com/bgpfix/bgpipe/releases/latest)\n\nAn open-source tool that processes BGP messages through a pipeline of composable stages, built on [the bgpfix library](https://github.com/bgpfix/bgpfix).\n\n**Full documentation at [bgpipe.org](https://bgpipe.org/)**\n\n## What is bgpipe?\n\nbgpipe sits between routers as a transparent proxy, auditing, filtering, and transforming BGP sessions on the fly. Think of it as a scriptable BGP firewall and traffic processor.\n\n**Use cases:**\n- BGP firewall with RPKI validation, prefix limits, and rate limiting\n- Bidirectional BGP to JSON translation including Flowspec — pipe through jq, Python, anything\n- MRT file processing and conversion at scale\n- Scriptable pipeline — chain stages or pipe through external programs\n- Live BGP monitoring from RIPE RIS Live or RouteViews with real-time filters\n- Secure transport — add TCP-MD5 to sessions, proxy over encrypted WebSockets\n\nSee the [RIPE 88 bgpipe talk](https://ripe88.ripe.net/archives/video/1365/) for background.\n\n## Quick Example\n\n```bash\n# Reverse proxy: expose internal BGP router, log all traffic to JSON\nbgpipe --stdout \\\n  -- listen :179 \\\n  -- connect --wait listen 192.0.2.1\n\n# Stream MRT file, filter by matching IP prefix, and store as JSON file\nbgpipe \\\n  -- read https://data.ris.ripe.net/rrc01/2025.11/updates.20251107.2300.gz \\\n  -- grep 'prefix ~ 198.41.0.4' \\\n  -- write output.json\n```\n\n## Installation\n\n**Docker** (fastest):\n```bash\ndocker pull ghcr.io/bgpfix/bgpipe:latest\ndocker run --rm ghcr.io/bgpfix/bgpipe:latest --help\n```\n\n**Binary**: download from [GitHub Releases](https://github.com/bgpfix/bgpipe/releases/latest).\n\n**Go**: `go install github.com/bgpfix/bgpipe@latest`\n\nRun `bgpipe -h` or `bgpipe \u003cstage\u003e -h` for built-in help.\n\n## Documentation\n\nVisit **[bgpipe.org](https://bgpipe.org)** for:\n- [Quick start guide](https://bgpipe.org/quickstart/)\n- [Examples and tutorials](https://bgpipe.org/examples/)\n- [Filter reference](https://bgpipe.org/filters/)\n- Complete stage documentation\n\n## Contributing\n\n- Report bugs and request features on [GitHub Issues](https://github.com/bgpfix/bgpipe/issues)\n- For collaboration inquiries, contact [bgpipe@bgpipe.org](mailto:bgpipe@bgpipe.org)\n\n## Author\n\nPawel Foremski [@pforemski](https://twitter.com/pforemski) 2023-2026\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbgpfix%2Fbgpipe","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbgpfix%2Fbgpipe","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbgpfix%2Fbgpipe/lists"}