blob: 7f7e393fc126ec7455eddbb813666294bbe81bb4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
tag:
type: u32
help: Configure Border Gateway Protocol (BGP) parameters
comp_help: \1 <1-4294967294>\tAS number
syntax:expression: $VAR(@) >= 1 && $VAR(@) <= 4294967294 ; \
"AS number must be between 1 and 4294967294"
create: sudo /opt/vyatta/sbin/quagga-manager start bgpd
vyatta-vtysh -c "configure terminal" -c "router bgp $VAR(@)"
# we need to set default parameters in BGP here since we can't do it in
# startup scripts as we don't know the AS number at that point
update: vyatta-vtysh -c "configure terminal" -c "router bgp $VAR(@)" \
-c "bgp network import-check"
delete: vyatta-vtysh -c "configure terminal" -c "no router bgp $VAR(@)"
end: sudo /opt/vyatta/sbin/quagga-manager update
|