123456789101112131415161718192021222324252627282930313233343536373839404142 |
- log syslog all
- router id {{supernode_mesh_ipv4}}
- protocol direct {
- interface "*"
- }
- protocol kernel {
- device routes
- import all
- export all
- kernel table 42
- }
- protocol device {
- scan time 8
- }
- template bgp ibgp {
- local as {{supernode_as}}
- import all
- export all
- next hop self
- multihop 64
- }
- {% for uplink in supernode_uplinks %}
- protocol bgp {{uplink.name}} from ibgp {
- source address {{uplink.address}};
- neighbor {{uplink.dstaddr}} as {{uplink.as}}
- default bgp_med 2
- }
- {% endfor %}
- {% for meshlink in supernode_mesh_backbones%}
- protocol bgp {{meshlink.name}} from ibgp {
- source address {{supernode_mesh_ipv4}}
- neighbor {{meshlink.mesh_ip}} as {{supernode_as}}
- default bgp_med 4
- }
- {% endfor %}
|