15 lines
658 B
Bash
15 lines
658 B
Bash
|
#!/bin/vbash
|
||
|
|
||
|
# BGP configuration
|
||
|
set protocols bgp neighbor 10.1.1.31 address-family ipv4-unicast
|
||
|
set protocols bgp neighbor 10.1.1.31 description 'gandalf'
|
||
|
set protocols bgp neighbor 10.1.1.31 remote-as '64512'
|
||
|
set protocols bgp neighbor 10.1.1.32 address-family ipv4-unicast
|
||
|
set protocols bgp neighbor 10.1.1.32 description 'glamdring'
|
||
|
set protocols bgp neighbor 10.1.1.32 remote-as '64512'
|
||
|
set protocols bgp neighbor 10.1.1.34 address-family ipv4-unicast
|
||
|
set protocols bgp neighbor 10.1.1.34 description 'lembas'
|
||
|
set protocols bgp neighbor 10.1.1.34 remote-as '64512'
|
||
|
set protocols bgp parameters router-id '10.1.0.1'
|
||
|
set protocols bgp system-as '64512'
|