-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfind_sw_err.sh
executable file
·96 lines (82 loc) · 1.83 KB
/
find_sw_err.sh
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
#!/bin/bash
# Find err_disable port on cisco switches using expect
if [ "$1" = "" ] || [ "$2" = "" ]
then
echo "Informar usuário e senha no mínimo.
Usage: find_sw_err username password \"string de busca\" \"Switches\"
Ex: find_sw_err.sh afrs pass err 8AND"
exit
else
echo "Usage: find_sw_err username password \"string de busca\" \"Switches\"
Ex: find_sw_err.sh afrs pass err 8AND"
fi
user=$1
pass=$2
string=$3
andar=$4
# Busca normal
if [ "$andar" != "" ] && [ "$string" != "" ]
then
echo "Busca Normal"
# SSH
for host in `cat sw_ips | grep -v NOT | grep SSH | grep -i $andar | cut -f1`
do
echo $host
echo ================================================
./ex_ssh $host $user $pass | grep -i $string
echo
done
# Telnet
for host in `cat sw_ips | grep -v NOT | grep -v SSH | grep -i $andar |cut -f1`
do
echo $host
echo ================================================
./ex_tel $host $user $pass | grep -i $string
echo
done
exit
fi
# Busca TUDO em TODOS
if [ "$string" = "" ]
then
echo "Mostra TUDO em TODOS os SW"
# SSH
for host in `cat sw_ips | grep -v NOT | grep SSH | cut -f1`
do
echo $host
echo ================================================
./ex_ssh $host $user $pass
echo
done
# Telnet
for host in `cat sw_ips | grep -v NOT | grep -v SSH | cut -f1`
do
echo $host
echo ================================================
./ex_tel $host $user $pass
echo
done
exit
fi
# Busca TUDO em Andares
if [ "$string" != "" ]
then
echo "Busca String de busca em TODOS os SW"
# SSH
for host in `cat sw_ips | grep -v NOT | grep SSH | cut -f1`
do
echo $host
echo ================================================
./ex_ssh $host $user $pass | grep -i $string
echo
done
# Telnet
for host in `cat sw_ips | grep -v NOT | grep -v SSH | cut -f1`
do
echo $host
echo ================================================
./ex_tel $host $user $pass | grep -i $string
echo
done
exit
fi