2021-03-30 14:25:24 -07:00
|
|
|
---
|
|
|
|
|
version: '3'
|
2022-10-20 07:12:08 -07:00
|
|
|
volumes:
|
|
|
|
|
data-volume:
|
|
|
|
|
driver_opts:
|
|
|
|
|
type: none
|
|
|
|
|
device: ${OBMP_DATA_ROOT}/postgres/data
|
|
|
|
|
o: bind
|
|
|
|
|
ts-volume:
|
|
|
|
|
driver_opts:
|
|
|
|
|
type: none
|
|
|
|
|
device: ${OBMP_DATA_ROOT}/postgres/ts
|
|
|
|
|
o: bind
|
|
|
|
|
|
2021-03-30 14:25:24 -07:00
|
|
|
services:
|
|
|
|
|
|
|
|
|
|
zookeeper:
|
|
|
|
|
restart: unless-stopped
|
2021-03-30 19:00:25 -07:00
|
|
|
container_name: obmp-zookeeper
|
2022-06-08 11:53:55 -07:00
|
|
|
image: confluentinc/cp-zookeeper:7.1.1
|
2021-03-30 19:00:25 -07:00
|
|
|
volumes:
|
|
|
|
|
- ${OBMP_DATA_ROOT}/zk-data:/var/lib/zookeeper/data
|
|
|
|
|
- ${OBMP_DATA_ROOT}/zk-log:/var/lib/zookeeper/log
|
2021-03-30 14:25:24 -07:00
|
|
|
environment:
|
|
|
|
|
ZOOKEEPER_CLIENT_PORT: 2181
|
|
|
|
|
ZOOKEEPER_TICK_TIME: 2000
|
|
|
|
|
|
|
|
|
|
kafka:
|
|
|
|
|
restart: unless-stopped
|
2021-03-30 19:00:25 -07:00
|
|
|
container_name: obmp-kafka
|
2022-06-08 11:53:55 -07:00
|
|
|
image: confluentinc/cp-kafka:7.1.1
|
2021-03-30 14:25:24 -07:00
|
|
|
|
|
|
|
|
# Change the mount point to where you want to store Kafka data.
|
|
|
|
|
# Normally 80GB or more
|
|
|
|
|
volumes:
|
|
|
|
|
- ${OBMP_DATA_ROOT}/kafka-data:/var/lib/kafka/data
|
|
|
|
|
depends_on:
|
|
|
|
|
- zookeeper
|
|
|
|
|
ports:
|
2022-02-22 14:30:05 -08:00
|
|
|
- "9092:9092"
|
2021-03-30 14:25:24 -07:00
|
|
|
environment:
|
|
|
|
|
KAFKA_BROKER_ID: 1
|
2021-03-30 19:00:25 -07:00
|
|
|
KAFKA_ZOOKEEPER_CONNECT: obmp-zookeeper:2181
|
2021-03-30 14:25:24 -07:00
|
|
|
|
|
|
|
|
# Change/add listeners based on your FQDN that the host and other containers can access. You can use
|
|
|
|
|
# an IP address as well. By default, only within the compose/containers can Kafka be accesssed
|
|
|
|
|
# using port 29092. Outside access can be enabled, but you should use an FQDN listener.
|
Add ExaBGP route injector, Grafana dashboards, and full documentation
- Add exabgp/ container: ExaBGP 5.x + Flask REST API for on-demand BGP
route injection into CML IOS-XR lab (AS 65020 via eBGP from AS 65100)
- Add 6 injection scenarios: internet_sample, churn, blackhole, anycast,
full_table, lab_prefixes
- Add inject.py CLI wrapper for the ExaBGP API
- Add iosxr_bgp_config.md with IOS-XR neighbor config and NETCONF script
- Add obmp-grafana/ dashboards and provisioning (17 dashboards)
- Update docker-compose.yml: add exabgp service, fix Kafka external
listener IP, extend log retention from 90min to 720min
- Add DOCS.md: full project documentation including architecture, setup,
user guide, sanity checks, troubleshooting, and command reference
- Update .gitignore: exclude .env and .claude/
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-05 14:46:37 -07:00
|
|
|
KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://obmp-kafka:29092,PLAINTEXT_HOST://10.40.40.202:9092
|
2021-03-30 14:25:24 -07:00
|
|
|
KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: PLAINTEXT:PLAINTEXT,PLAINTEXT_HOST:PLAINTEXT
|
|
|
|
|
KAFKA_INTER_BROKER_LISTENER_NAME: PLAINTEXT
|
|
|
|
|
KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1
|
|
|
|
|
KAFKA_NUM_PARTITIONS: 8
|
Add ExaBGP route injector, Grafana dashboards, and full documentation
- Add exabgp/ container: ExaBGP 5.x + Flask REST API for on-demand BGP
route injection into CML IOS-XR lab (AS 65020 via eBGP from AS 65100)
- Add 6 injection scenarios: internet_sample, churn, blackhole, anycast,
full_table, lab_prefixes
- Add inject.py CLI wrapper for the ExaBGP API
- Add iosxr_bgp_config.md with IOS-XR neighbor config and NETCONF script
- Add obmp-grafana/ dashboards and provisioning (17 dashboards)
- Update docker-compose.yml: add exabgp service, fix Kafka external
listener IP, extend log retention from 90min to 720min
- Add DOCS.md: full project documentation including architecture, setup,
user guide, sanity checks, troubleshooting, and command reference
- Update .gitignore: exclude .env and .claude/
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-05 14:46:37 -07:00
|
|
|
KAFKA_LOG_RETENTION_MINUTES: 720
|
2021-03-30 14:25:24 -07:00
|
|
|
KAFKA_LOG_ROLL_MS: 3600000
|
|
|
|
|
KAFKA_LOG_SEGMENT_BYTES: 1073741824
|
|
|
|
|
KAFKA_MESSAGE_MAX_BYTES: 100000000
|
|
|
|
|
KAFKA_LOG_CLEANER_THREADS: 2
|
|
|
|
|
|
2022-03-31 12:13:46 -07:00
|
|
|
# TODO: Move comment to documentation
|
|
|
|
|
# You can use SWAG and Let's Encrypt to front the Grafana HTTP port 3000 instance. Below is an example
|
|
|
|
|
# Create the SWAG direcgtory using "sudo mkdir -m 777 ${OBMP_DATA_ROOT}/swag"
|
|
|
|
|
# swag:
|
|
|
|
|
# image: linuxserver/letsencrypt:version-1.11.0
|
|
|
|
|
# container_name: obmp-swag
|
|
|
|
|
# cap_add:
|
|
|
|
|
# - NET_ADMIN
|
|
|
|
|
# environment:
|
|
|
|
|
# - PUID=1000
|
|
|
|
|
# - PGID=1000
|
|
|
|
|
# - TZ=UTC
|
|
|
|
|
# - URL=<domain of grafana host, this should be the domain only, not the hostname>
|
|
|
|
|
# - SUBDOMAINS=<hostname, without the domain>,
|
|
|
|
|
# - VALIDATION=http
|
|
|
|
|
# - EMAIL=<your email>
|
|
|
|
|
# - ONLY_SUBDOMAINS=true
|
|
|
|
|
# - STAGING=false
|
|
|
|
|
# volumes:
|
|
|
|
|
# - /var/openbmp/swag:/config
|
|
|
|
|
# ports:
|
|
|
|
|
# - 443:443
|
|
|
|
|
# - 80:80 #optional
|
|
|
|
|
# restart: unless-stopped
|
|
|
|
|
|
2021-03-30 14:25:24 -07:00
|
|
|
grafana:
|
|
|
|
|
restart: unless-stopped
|
2021-03-30 19:00:25 -07:00
|
|
|
container_name: obmp-grafana
|
2022-10-20 07:12:08 -07:00
|
|
|
image: grafana/grafana:9.1.7
|
2021-03-30 14:25:24 -07:00
|
|
|
ports:
|
2022-02-22 14:30:05 -08:00
|
|
|
- "3000:3000"
|
2021-03-30 14:25:24 -07:00
|
|
|
volumes:
|
|
|
|
|
- ${OBMP_DATA_ROOT}/grafana:/var/lib/grafana
|
2021-03-30 19:00:25 -07:00
|
|
|
- ${OBMP_DATA_ROOT}/grafana/provisioning:/etc/grafana/provisioning/
|
2021-03-30 14:25:24 -07:00
|
|
|
environment:
|
|
|
|
|
- GF_SECURITY_ADMIN_PASSWORD=openbmp
|
|
|
|
|
- GF_AUTH_ANONYMOUS_ENABLED=true
|
2022-03-31 12:13:46 -07:00
|
|
|
- GF_USERS_HOME_PAGE=d/obmp-home/obmp-home
|
2022-02-22 14:30:05 -08:00
|
|
|
- GF_INSTALL_PLUGINS=agenty-flowcharting-panel,grafana-piechart-panel,grafana-worldmap-panel,grafana-simple-json-datasource,vonage-status-panel
|
2021-03-30 14:25:24 -07:00
|
|
|
|
2022-03-31 12:13:46 -07:00
|
|
|
# TODO: Move comment block to documentation
|
|
|
|
|
# The below is an example of how to enable OAuth
|
|
|
|
|
#- GF_AUTH_GENERIC_OAUTH_NAME=MyCompany SSO
|
|
|
|
|
#- GF_AUTH_GENERIC_OAUTH_ICON=signin
|
|
|
|
|
#- GF_AUTH_GENERIC_OAUTH_ENABLED=true
|
|
|
|
|
#- GF_AUTH_GENERIC_OAUTH_CLIENT_ID=<the client ID>
|
|
|
|
|
#- GF_AUTH_GENERIC_OAUTH_CLIENT_SECRET=<client secret>
|
|
|
|
|
#- GF_AUTH_GENERIC_OAUTH_ALLOW_SIGN_UP=true
|
|
|
|
|
#- GF_AUTH_GENERIC_OAUTH_AUTH_URL=<auth url, such as https://domain/as/authorization.oauth2>
|
|
|
|
|
#- GF_AUTH_GENERIC_OAUTH_TOKEN_URL=<token url, such as https://domain/as/token.oauth2
|
|
|
|
|
#- GF_AUTH_GENERIC_OAUTH_API_URL=<userinfo url, such as https://domain/idp/userinfo.openid
|
|
|
|
|
#- GF_AUTH_GENERIC_OAUTH_SCOPES=email openid profile
|
|
|
|
|
#- GF_AUTH_GENERIC_OAUTH_SEND_CLIENT_CREDENTIALS_VIA_POST=true
|
|
|
|
|
#- GF_SERVER_ENFORCE_DOMAIN=true
|
|
|
|
|
#- GF_SERVER_PROTOCOL=http
|
|
|
|
|
#- GF_SERVER_HTTP_PORT=3000
|
|
|
|
|
#- GF_SERVER_DOMAIN=<fqdn of grafana server>
|
|
|
|
|
#- GF_SERVER_ROOT_URL=%(protocol)s://%(domain)s:%(http_port)s/
|
|
|
|
|
|
2021-03-30 14:25:24 -07:00
|
|
|
psql:
|
|
|
|
|
restart: unless-stopped
|
2021-03-30 19:00:25 -07:00
|
|
|
container_name: obmp-psql
|
2022-10-20 07:12:08 -07:00
|
|
|
image: openbmp/postgres:2.2.1
|
2022-06-10 12:53:24 -07:00
|
|
|
privileged: true
|
2022-03-28 12:43:37 -07:00
|
|
|
shm_size: 1536m
|
|
|
|
|
sysctls:
|
|
|
|
|
- net.ipv4.tcp_keepalive_intvl=30
|
|
|
|
|
- net.ipv4.tcp_keepalive_probes=5
|
|
|
|
|
- net.ipv4.tcp_keepalive_time=180
|
2021-03-30 14:25:24 -07:00
|
|
|
ports:
|
2022-02-22 14:30:05 -08:00
|
|
|
- "5432:5432"
|
2021-03-30 14:25:24 -07:00
|
|
|
volumes:
|
2022-10-20 07:12:08 -07:00
|
|
|
- data-volume:/var/lib/postgresql/data
|
|
|
|
|
- ts-volume:/var/lib/postgresql/ts
|
2022-03-28 12:43:37 -07:00
|
|
|
# alter_job max_runtime in _timescaledb_config.bgw_job ( https://docs.timescale.com/latest/api#alter_job )
|
2022-03-09 10:48:58 -08:00
|
|
|
command: >
|
|
|
|
|
-c max_wal_size=10GB
|
2021-03-30 14:25:24 -07:00
|
|
|
environment:
|
|
|
|
|
- POSTGRES_PASSWORD=openbmp
|
|
|
|
|
- POSTGRES_USER=openbmp
|
|
|
|
|
- POSTGRES_DB=openbmp
|
|
|
|
|
|
|
|
|
|
collector:
|
|
|
|
|
restart: unless-stopped
|
2021-03-30 19:00:25 -07:00
|
|
|
container_name: obmp-collector
|
2022-10-20 07:12:08 -07:00
|
|
|
image: openbmp/collector:2.2.3
|
2021-03-30 14:25:24 -07:00
|
|
|
sysctls:
|
|
|
|
|
- net.ipv4.tcp_keepalive_intvl=30
|
|
|
|
|
- net.ipv4.tcp_keepalive_probes=5
|
|
|
|
|
- net.ipv4.tcp_keepalive_time=180
|
|
|
|
|
ports:
|
2022-02-22 14:30:05 -08:00
|
|
|
- "5000:5000"
|
2021-03-30 14:25:24 -07:00
|
|
|
volumes:
|
|
|
|
|
- ${OBMP_DATA_ROOT}/config:/config
|
|
|
|
|
environment:
|
2021-03-30 19:00:25 -07:00
|
|
|
- KAFKA_FQDN=obmp-kafka:29092
|
2021-03-30 14:25:24 -07:00
|
|
|
|
|
|
|
|
psql-app:
|
|
|
|
|
restart: unless-stopped
|
2021-03-30 19:00:25 -07:00
|
|
|
container_name: obmp-psql-app
|
2022-10-20 07:12:08 -07:00
|
|
|
image: openbmp/psql-app:2.2.2
|
2021-03-30 14:25:24 -07:00
|
|
|
sysctls:
|
|
|
|
|
- net.ipv4.tcp_keepalive_intvl=30
|
|
|
|
|
- net.ipv4.tcp_keepalive_probes=5
|
|
|
|
|
- net.ipv4.tcp_keepalive_time=180
|
|
|
|
|
ports:
|
2022-02-22 14:30:05 -08:00
|
|
|
- "9005:9005"
|
2021-04-30 14:14:27 +00:00
|
|
|
|
2021-03-30 14:25:24 -07:00
|
|
|
volumes:
|
|
|
|
|
- ${OBMP_DATA_ROOT}/config:/config
|
|
|
|
|
environment:
|
2022-03-28 15:51:15 -07:00
|
|
|
- MEM=3 # Set memory to at least 2GB but ideally 4GB
|
2021-03-30 19:00:25 -07:00
|
|
|
- KAFKA_FQDN=obmp-kafka:29092
|
2021-04-30 14:14:27 +00:00
|
|
|
- RPKI_URL=https://rpki.cloudflare.com/rpki.json # define the URL to retrieve json endoed RPKI data
|
|
|
|
|
- RPKI_PASS=None
|
|
|
|
|
- RPKI_USER=None
|
2021-03-30 22:31:06 -07:00
|
|
|
- ENABLE_RPKI=1 # 1 enables, 0 disables RPKI sync
|
|
|
|
|
- ENABLE_IRR=1 # 1 enables, 0 disables IRR sync
|
2022-06-08 14:53:55 -07:00
|
|
|
- ENABLE_DBIP=1 # 1 enables, 0 disables DBIP import
|
2021-04-30 14:14:27 +00:00
|
|
|
- POSTGRES_REPORT_WINDOW='8 minute' # default POSTGRESS window to select when building
|
|
|
|
|
# summary tables. For deployments that absorb large
|
|
|
|
|
# bursts increase the value, ex 60 minute
|
2021-03-30 14:25:24 -07:00
|
|
|
- POSTGRES_PASSWORD=openbmp
|
|
|
|
|
- POSTGRES_USER=openbmp
|
|
|
|
|
- POSTGRES_DB=openbmp
|
2021-03-30 19:00:25 -07:00
|
|
|
- POSTGRES_HOST=obmp-psql
|
|
|
|
|
- POSTGRES_PORT=5432
|
2021-07-30 22:55:53 +00:00
|
|
|
- POSTGRES_DROP_peer_event_log='1 year'
|
|
|
|
|
- POSTGRES_DROP_stat_reports='4 weeks'
|
|
|
|
|
- POSTGRES_DROP_ip_rib_log='4 weeks'
|
|
|
|
|
- POSTGRES_DROP_alerts='4 weeks'
|
|
|
|
|
- POSTGRES_DROP_ls_nodes_log='4 months'
|
|
|
|
|
- POSTGRES_DROP_ls_links_log='4 months'
|
|
|
|
|
- POSTGRES_DROP_ls_prefixes_log='4 months'
|
|
|
|
|
- POSTGRES_DROP_stats_chg_byprefix='4 weeks'
|
|
|
|
|
- POSTGRES_DROP_stats_chg_byasn='4 weeks'
|
|
|
|
|
- POSTGRES_DROP_stats_chg_bypeer='4 weeks'
|
|
|
|
|
- POSTGRES_DROP_stats_ip_origins='4 weeks'
|
|
|
|
|
- POSTGRES_DROP_stats_peer_rib='4 weeks'
|
|
|
|
|
- POSTGRES_DROP_stats_peer_update_counts='4 weeks'
|
2022-02-22 14:30:05 -08:00
|
|
|
|
Add ExaBGP route injector, Grafana dashboards, and full documentation
- Add exabgp/ container: ExaBGP 5.x + Flask REST API for on-demand BGP
route injection into CML IOS-XR lab (AS 65020 via eBGP from AS 65100)
- Add 6 injection scenarios: internet_sample, churn, blackhole, anycast,
full_table, lab_prefixes
- Add inject.py CLI wrapper for the ExaBGP API
- Add iosxr_bgp_config.md with IOS-XR neighbor config and NETCONF script
- Add obmp-grafana/ dashboards and provisioning (17 dashboards)
- Update docker-compose.yml: add exabgp service, fix Kafka external
listener IP, extend log retention from 90min to 720min
- Add DOCS.md: full project documentation including architecture, setup,
user guide, sanity checks, troubleshooting, and command reference
- Update .gitignore: exclude .env and .claude/
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-05 14:46:37 -07:00
|
|
|
exabgp:
|
|
|
|
|
restart: unless-stopped
|
|
|
|
|
container_name: obmp-exabgp
|
|
|
|
|
build:
|
|
|
|
|
context: ./exabgp
|
|
|
|
|
dockerfile: Dockerfile
|
|
|
|
|
# Host networking so ExaBGP can reach CML routers directly on port 179
|
|
|
|
|
network_mode: host
|
|
|
|
|
environment:
|
|
|
|
|
# IP on the host that CML routers can reach (matches Kafka external listener)
|
|
|
|
|
- EXABGP_LOCAL_IP=10.40.40.202
|
|
|
|
|
# ExaBGP presents as AS 65100 (eBGP peer to your AS 65020 lab)
|
|
|
|
|
- EXABGP_LOCAL_AS=65100
|
|
|
|
|
- EXABGP_PEER_AS=65020
|
|
|
|
|
# CORE routers to peer with — these propagate routes into the iBGP mesh
|
|
|
|
|
- EXABGP_PEER_1=10.100.0.100
|
|
|
|
|
- EXABGP_PEER_2=10.100.0.200
|
|
|
|
|
# Flask API port (also on host network)
|
|
|
|
|
- EXABGP_API_PORT=5050
|
|
|
|
|
volumes:
|
|
|
|
|
# Mount scenarios dir so you can edit/add scenarios without rebuilding
|
|
|
|
|
- ./exabgp/scenarios:/exabgp/scenarios
|
|
|
|
|
# No ports: block needed — network_mode: host exposes directly
|
|
|
|
|
|
Add Phase 2: Vue 3 control panel, 6 learning dashboards, new BGP scenarios
- exabgp-ui/: Vue 3 + Vite SPA served by NGINX on :5001; proxies /api/ to
ExaBGP Flask on :5050; includes StatusBar, ScenarioPanel, RouteTable,
AnnounceForm, PeerStatus, ChurnControl components
- docker-compose.yml: add obmp-exabgp-ui service (host network, port 5001)
- exabgp/scenarios/__init__.py: add convergence_test, route_leak,
hijack_simulation scenarios for structured BGP learning exercises
- exabgp/inject.py: add 'peers' and 'monitor' subcommands; live-refresh
terminal status view with ANSI cursor repositioning
- obmp-grafana/dashboards/Learning/: 6 new OBMP-Learning dashboards
(update rate, peer health, AS path, RPKI, churn, attributes)
- obmp-grafana/provisioning/dashboards/openbmp-dashboards.yml: add
OpenBMP-Learning folder provider pointing to dashboards/Learning/
- DOCS.md: document Web UI, 3 new scenarios, 6 learning dashboards;
fix section numbering (10-14) and architecture diagram (23 dashboards)
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-05 15:37:16 -07:00
|
|
|
exabgp-ui:
|
|
|
|
|
restart: unless-stopped
|
|
|
|
|
container_name: obmp-exabgp-ui
|
|
|
|
|
build:
|
|
|
|
|
context: ./exabgp-ui
|
|
|
|
|
dockerfile: Dockerfile
|
|
|
|
|
# Host networking so NGINX can proxy /api to ExaBGP Flask on localhost:5050
|
|
|
|
|
network_mode: host
|
|
|
|
|
# Serves on port 5001 (host network, defined in nginx.conf)
|
|
|
|
|
|
2022-02-22 14:30:05 -08:00
|
|
|
whois:
|
|
|
|
|
restart: unless-stopped
|
|
|
|
|
container_name: obmp-whois
|
2022-06-08 11:53:55 -07:00
|
|
|
image: openbmp/whois:2.2.0
|
2022-02-22 14:30:05 -08:00
|
|
|
sysctls:
|
|
|
|
|
- net.ipv4.tcp_keepalive_intvl=30
|
|
|
|
|
- net.ipv4.tcp_keepalive_probes=5
|
|
|
|
|
- net.ipv4.tcp_keepalive_time=180
|
|
|
|
|
ports:
|
|
|
|
|
- "4300:43"
|
|
|
|
|
# volumes:
|
|
|
|
|
# - ${OBMP_DATA_ROOT}/config:/config
|
|
|
|
|
environment:
|
|
|
|
|
- POSTGRES_PASSWORD=openbmp
|
|
|
|
|
- POSTGRES_USER=openbmp
|
|
|
|
|
- POSTGRES_DB=openbmp
|
|
|
|
|
- POSTGRES_HOST=obmp-psql
|
Add ExaBGP route injector, Grafana dashboards, and full documentation
- Add exabgp/ container: ExaBGP 5.x + Flask REST API for on-demand BGP
route injection into CML IOS-XR lab (AS 65020 via eBGP from AS 65100)
- Add 6 injection scenarios: internet_sample, churn, blackhole, anycast,
full_table, lab_prefixes
- Add inject.py CLI wrapper for the ExaBGP API
- Add iosxr_bgp_config.md with IOS-XR neighbor config and NETCONF script
- Add obmp-grafana/ dashboards and provisioning (17 dashboards)
- Update docker-compose.yml: add exabgp service, fix Kafka external
listener IP, extend log retention from 90min to 720min
- Add DOCS.md: full project documentation including architecture, setup,
user guide, sanity checks, troubleshooting, and command reference
- Update .gitignore: exclude .env and .claude/
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-05 14:46:37 -07:00
|
|
|
- POSTGRES_PORT=5432
|