Skip to content

Commit

Permalink
adapt config cheat sheet for latest version
Browse files Browse the repository at this point in the history
  • Loading branch information
yuyuyureka committed Dec 23, 2024
1 parent 4925f93 commit 96790e4
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions manual/src/configuration/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,27 +16,31 @@ If using BMP, everything should 'just work'.
collectors:

# BMP collector that listens on port 11019 and accepts all incoming connections
- collector_type: Bmp
bmp_any:
collector_type: Bmp
bind: "[::]:11019"
default_peer_config: {}

# BMP collector that listens on the privileged port 11020 and accepts incoming connections only from select client IPs
- collector_type: Bmp
# BMP collector that listens on port 11020 and accepts incoming connections only from select client IPs
bmp_filtered:
collector_type: Bmp
bind: "[::]:11020"
peers:
"192.0.2.1": {}
"192.0.2.2":
name_override: router02.example.org

# BGP collector that listens on port 1179 and accept all incoming connections
- collector_type: Bgp
# BGP collector that listens on port 1179 and accept all incoming connections
bgp_any:
collector_type: Bgp
bind: "[::]:1179"
default_peer_config:
asn: 64496
router_id: 192.0.2.100

# BGP collector that listens on the privileged port 179 and accepts incoming connections only from select client IPs
- collector_type: Bgp
bgp_filtered:
collector_type: Bgp
bind: "[::]:179"
peers:
"192.0.2.1":
Expand Down

0 comments on commit 96790e4

Please sign in to comment.