IP Suche mit regex bei weg.

Etwas aufgeraeumt und die Millionen Leerzeichen raus.
Space -> Tab
This commit is contained in:
Robert Langhammer 2018-10-25 23:33:01 +02:00
parent 1d0e47bd65
commit 73c7ba8250
1 changed files with 67 additions and 67 deletions

View File

@ -62,47 +62,48 @@ data=$(echo "dump" | nc ::1 33123)
<% <%
if ! [ ${GET_routes} ] && ! [ ${GET_v4table} ] && ! [ ${GET_v6table} ] && ! [ ${GET_weg} ] ; then if ! [ ${GET_routes} ] && ! [ ${GET_v4table} ] && ! [ ${GET_v6table} ] && ! [ ${GET_weg} ] ; then
%> %>
<H2>Interfaces</H2> <H2>Interfaces</H2>
<% <%
echo "$data" | grep interface | while read line ; do echo "$data" | grep interface | while read line ; do
echo "$line" echo "$line"
echo "<br>" echo "<br>"
done done
%> %>
<br /> <br />
<H2>Neighbours</H2> <H2>Neighbours</H2>
<% <%
echo "$data" | grep neighbour | while read line ; do echo "$data" | grep neighbour | while read line ; do
echo $line echo $line
echo "<br>" echo "<br>"
done done
%> %>
<br /> <br />
<H2>Redistributed routes</H2> <H2>Redistributed routes</H2>
<% <%
echo "$data" | grep xroute | while read line ; do echo "$data" | grep xroute | while read line ; do
echo $line echo $line
echo "<br>" echo "<br>"
done done
%> %>
<% <%
fi fi
if [ ${GET_routes} ]; then if [ ${GET_routes} ]; then
%> %>
<H2>All routes</H2> <H2>All routes</H2>
<% <%
echo "$data" | grep route | grep -v xroute | while read line ; do echo "$data" | grep -w route | while read line ; do
echo $line echo $line
echo "<br>" echo "<br>"
done done
fi fi
if [ ${GET_v4table} ]; then if [ ${GET_v4table} ]; then
%> %>
<H2>Show IPv6 Routing Tabele</H2> <H2>Show IPv6 Routing Tabele</H2>
<% <%
v4routen=$(ip ro sh tab 10) v4routen=$(ip ro sh tab 10)
echo "$v4routen" | while read line ; do echo "$v4routen" | while read line ; do
echo $line echo $line
@ -111,9 +112,9 @@ if [ ${GET_v4table} ]; then
fi fi
if [ ${GET_v6table} ]; then if [ ${GET_v6table} ]; then
%> %>
<H2>Show IPv6 Routing Tabele</H2> <H2>Show IPv6 Routing Tabele</H2>
<% <%
v6routen=$(ip -6 ro sh tab 10) v6routen=$(ip -6 ro sh tab 10)
echo "$v6routen" | while read line ; do echo "$v6routen" | while read line ; do
echo $line echo $line
@ -122,11 +123,10 @@ if [ ${GET_v6table} ]; then
fi fi
if [ ${GET_weg} ]; then if [ ${GET_weg} ]; then
%> %>
<H2>Wege zu <%# echo ${GET_ip} %></H2> <H2>Wege zu <%# echo ${GET_ip} %></H2>
<% <%
v6routen=$(ip -6 ro sh tab 10) echo "$data" | grep -w route | grep "${GET_ip}" | while read line ; do
echo "$v6routen" | while read line ; do
echo $line echo $line
echo "<br>" echo "<br>"
done done