From f99c94fc7fa32482b44d6a61e038e1c82c17b6b0 Mon Sep 17 00:00:00 2001 From: Christian Poessinger Date: Sun, 3 Jan 2021 13:09:09 +0100 Subject: op-mode: T3178: add "reset ip|ipv6 bgp" commands --- op-mode-definitions/reset-ip-bgp.xml | 203 +++++++++++++++++++++++++++++++++ op-mode-definitions/reset-ipv6-bgp.xml | 62 ++++++++++ src/completion/list_bgp_neighbors.sh | 65 +++++++++++ 3 files changed, 330 insertions(+) create mode 100644 op-mode-definitions/reset-ip-bgp.xml create mode 100644 op-mode-definitions/reset-ipv6-bgp.xml create mode 100755 src/completion/list_bgp_neighbors.sh diff --git a/op-mode-definitions/reset-ip-bgp.xml b/op-mode-definitions/reset-ip-bgp.xml new file mode 100644 index 000000000..931a2a9bc --- /dev/null +++ b/op-mode-definitions/reset-ip-bgp.xml @@ -0,0 +1,203 @@ + + + + + + + + + Clear Border Gateway Protocol (BGP) statistics or status + + + + + Clear all BGP peering sessions + + vtysh -c "clear bgp ipv4 *" + + + + Clear BGP route flap dampening information + + vtysh -c "clear ip bgp dampening" + + + + Clear BGP route flap dampening information for given host|network address + + <x.x.x.x> <x.x.x.x/x> + + + vtysh -c "clear ip bgp dampening $5" + + + + Clear BGP route flap dampening information for given network address + + <x.x.x.x> + + + vtysh -c "clear ip bgp dampening $5 $6" + + + + + + Clear all external peers + + WORD + + + vtysh -c "clear bgp ipv4 external" + + + + Send route-refresh unless using 'soft-reconfiguration inbound' + + vtysh -c "clear bgp ipv4 external in" + + + + Push out prefix-list ORF and do inbound soft reconfig + + vtysh -c "clear bgp ipv4 external in prefix-filter" + + + + + + Resend all outbound updates + + vtysh -c "clear bgp ipv4 external out" + + + + Soft reconfig inbound and outbound updates + + vtysh -c "clear bgp ipv4 external soft" + + + + Clear via soft reconfig of inbound update + + vtysh -c "clear bgp ipv4 external soft in" + + + + Resend all outbound updates + + vtysh -c "clear bgp ipv4 external soft out" + + + + + + + + Clear BGP statistics or status for given peer-group + + WORD + + + vtysh -c "clear bgp ipv4 peer-group $5" + + + + Send route-refresh unless using 'soft-reconfiguration inbound' + + vtysh -c "clear bgp ipv4 peer-group $5 in" + + + + Push out prefix-list ORF and do inbound soft reconfig + + vtysh -c "clear bgp ipv4 peer-group $5 in prefix-filter" + + + + + + Resend all outbound updates + + vtysh -c "clear bgp ipv4 peer-group $5 out" + + + + Soft reconfig inbound and outbound updates + + vtysh -c "clear bgp ipv4 peer-group $5 soft" + + + + Clear via soft reconfig of inbound update + + vtysh -c "clear bgp ipv4 peer-group $5 soft in" + + + + Resend all outbound updates + + vtysh -c "clear bgp ipv4 peer-group $5 soft out" + + + + + + + + + + Clear BGP neighbor IP address + + + + + vtysh -c "clear bgp ipv4 $4" + + + + Send route-refresh unless using 'soft-reconfiguration inbound' + + vtysh -c "clear bgp ipv4 $4 in" + + + + Push out prefix-list ORF and do inbound soft reconfig + + vtysh -c "clear bgp ipv4 $4 in prefix-filter" + + + + + + Resend all outbound updates + + vtysh -c "clear bgp ipv4 $4 out" + + + + Soft reconfig inbound and outbound updates + + vtysh -c "clear bgp ipv4 $4 soft" + + + + Clear via soft reconfig of inbound update + + vtysh -c "clear bgp ipv4 $4 soft in" + + + + Resend all outbound updates + + vtysh -c "clear bgp ipv4 $4 soft out" + + + + + + + + + + diff --git a/op-mode-definitions/reset-ipv6-bgp.xml b/op-mode-definitions/reset-ipv6-bgp.xml new file mode 100644 index 000000000..3c4275331 --- /dev/null +++ b/op-mode-definitions/reset-ipv6-bgp.xml @@ -0,0 +1,62 @@ + + + + + + + + + Clear BGP neighbor IP address + + + + + vtysh -c "clear bgp ipv6 $4" + + + + Send route-refresh unless using 'soft-reconfiguration inbound' + + vtysh -c "clear bgp ipv6 $4 in" + + + + Push out prefix-list ORF and do inbound soft reconfig + + vtysh -c "clear bgp ipv6 $4 in prefix-filter" + + + + + + Resend all outbound updates + + vtysh -c "clear bgp ipv6 $4 out" + + + + Soft reconfig inbound and outbound updates + + vtysh -c "clear bgp ipv6 $4 soft" + + + + Clear via soft reconfig of inbound update + + vtysh -c "clear bgp ipv6 $4 soft in" + + + + Resend all outbound updates + + vtysh -c "clear bgp ipv6 $4 soft out" + + + + + + + + + + diff --git a/src/completion/list_bgp_neighbors.sh b/src/completion/list_bgp_neighbors.sh new file mode 100755 index 000000000..77c626452 --- /dev/null +++ b/src/completion/list_bgp_neighbors.sh @@ -0,0 +1,65 @@ +#!/bin/sh +# Copyright (C) 2021 VyOS maintainers and contributors +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License version 2 or later as +# published by the Free Software Foundation. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +# Return BGP neighbor addresses from CLI, can either request IPv4 only, IPv6 +# only or both address-family neighbors + +ipv4=0 +ipv6=0 + +while [[ "$#" -gt 0 ]]; do + case $1 in + -4|--ipv4) ipv4=1 ;; + -6|--ipv6) ipv6=1 ;; + -b|--both) ipv4=1; ipv6=1 ;; + *) echo "Unknown parameter passed: $1" ;; + esac + shift +done + +declare -a vals +eval "bgp_as=$(cli-shell-api listActiveNodes protocols bgp)" +eval "vals=($(cli-shell-api listActiveNodes protocols bgp $bgp_as neighbor))" + +if [ $ipv4 -eq 1 ] && [ $ipv6 -eq 1 ]; then + echo -n '' '' ${vals[@]} +elif [ $ipv4 -eq 1 ] ; then + echo -n ' ' + for peer in "${vals[@]}" + do + ipaddrcheck --is-ipv4-single $peer + if [ $? -eq "0" ]; then + echo -n "$peer " + fi + done +elif [ $ipv6 -eq 1 ] ; then + echo -n ' ' + for peer in "${vals[@]}" + do + ipaddrcheck --is-ipv6-single $peer + if [ $? -eq "0" ]; then + echo -n "$peer " + fi + done +else + echo "Usage:" + echo "-4|--ipv4 list only IPv4 peers" + echo "-6|--ipv6 list only IPv6 peers" + echo "--both list both IP4 and IPv6 peers" + echo "" + exit 1 +fi + +exit 0 -- cgit v1.2.3