This repository has been archived on 2024-04-29. You can view files and clone it, but cannot push or open issues or pull requests.
vyos-config/config-parts/protocols.sh

26 lines
1.2 KiB
Bash
Raw Normal View History

2023-03-29 13:30:45 -05:00
#!/bin/vbash
# BGP configuration
2023-12-15 12:17:47 -06:00
## k8s workers
2024-04-18 17:01:46 -05:00
set protocols bgp neighbor 10.1.1.71 address-family ipv4-unicast
set protocols bgp neighbor 10.1.1.71 description 'anduril'
set protocols bgp neighbor 10.1.1.71 remote-as '64512'
set protocols bgp neighbor 10.1.1.72 address-family ipv4-unicast
set protocols bgp neighbor 10.1.1.72 description 'gandalf'
set protocols bgp neighbor 10.1.1.72 remote-as '64512'
set protocols bgp neighbor 10.1.1.73 address-family ipv4-unicast
set protocols bgp neighbor 10.1.1.73 description 'shadowfax'
set protocols bgp neighbor 10.1.1.73 remote-as '64512'
2023-12-15 12:17:47 -06:00
## k8s masters
2023-06-14 09:41:05 -05:00
set protocols bgp neighbor 10.1.1.61 address-family ipv4-unicast
set protocols bgp neighbor 10.1.1.61 description 'galadriel'
set protocols bgp neighbor 10.1.1.61 remote-as '64512'
set protocols bgp neighbor 10.1.1.62 address-family ipv4-unicast
2023-12-15 12:17:47 -06:00
set protocols bgp neighbor 10.1.1.62 description 'thrain'
2023-06-14 09:41:05 -05:00
set protocols bgp neighbor 10.1.1.62 remote-as '64512'
set protocols bgp neighbor 10.1.1.63 address-family ipv4-unicast
set protocols bgp neighbor 10.1.1.63 description 'cirdan'
set protocols bgp neighbor 10.1.1.63 remote-as '64512'
2023-03-29 13:30:45 -05:00
set protocols bgp parameters router-id '10.1.0.1'
set protocols bgp system-as '64512'