1c8bacb007
Signed-off-by: Qi Luo <qiluo-msft@users.noreply.github.com>
21 lines
598 B
Django/Jinja
Executable File
21 lines
598 B
Django/Jinja
Executable File
#!/bin/bash
|
|
## vtysh only accepts script in stdin, so cannot be directly used in shebang
|
|
## Cut the tail of this script and feed vtysh stdin
|
|
sed -n -e '9,$p' < "$0" | vtysh "$@"
|
|
## Exit with vtysh return code
|
|
exit $?
|
|
|
|
## vtysh script start from next line, which line number MUST equal in 'sed' command above
|
|
|
|
configure terminal
|
|
router bgp {{ DEVICE_METADATA['localhost']['bgp_asn'] }}
|
|
{% for neighbor_ip in BGP_NEIGHBOR %}
|
|
no neighbor {{ neighbor_ip }} route-map ISOLATE out
|
|
{% endfor %}
|
|
exit
|
|
exit
|
|
|
|
{% for neighbor_ip in BGP_NEIGHBOR %}
|
|
clear ip bgp {{ neighbor_ip }} soft out
|
|
{% endfor %}
|