summaryrefslogtreecommitdiff
path: root/src/completion/list_bgp_neighbors.sh
blob: 869a7ab0aacb487a1db76ccbe163e1bbb02c726d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#!/bin/sh
# Copyright (C) 2021-2022 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 <http://www.gnu.org/licenses/>.

# Return BGP neighbor addresses from CLI, can either request IPv4 only, IPv6
# only or both address-family neighbors

ipv4=0
ipv6=0
vrf=""

while [[ "$#" -gt 0 ]]; do
    case $1 in
        -4|--ipv4) ipv4=1 ;;
        -6|--ipv6) ipv6=1 ;;
        -b|--both) ipv4=1; ipv6=1 ;;
        --vrf) vrf="vrf name $2"; shift ;;
        *) echo "Unknown parameter passed: $1" ;;
    esac
    shift
done

declare -a vals
eval "vals=($(cli-shell-api listActiveNodes $vrf protocols bgp neighbor))"

if [ $ipv4 -eq 1 ] && [ $ipv6 -eq 1 ]; then
    echo -n '<x.x.x.x>' '<h:h:h:h:h:h:h:h>' ${vals[@]}
elif [ $ipv4 -eq 1 ] ; then
     echo -n '<x.x.x.x> '
     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 '<h:h:h:h:h:h:h:h> '
     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 "--vrf <name>   apply command to given VRF (optional)"
    echo ""
    exit 1
fi

exit 0