mirror of
https://github.com/moexe/FFFGateway-Monitoring.git
synced 2024-11-22 05:53:40 +01:00
13 lines
436 B
Bash
13 lines
436 B
Bash
|
#!/bin/bash
|
||
|
# Diese Datei in /etc/sudoers eintragen!!!! z.B. so:
|
||
|
# www-data ALL=(ALL) NOPASSWD: /var/www/html/has-mon/sensors/l2tp-routers.sh
|
||
|
|
||
|
|
||
|
ips=$(ip l2 s tunnel | awk '/From/ {print $4}')
|
||
|
journalctl -u tunneldigger-broker-sued.service > /tmp/td.log
|
||
|
for ip in $ips; do
|
||
|
rname="$rname$(grep $ip /tmp/td.log | awk '/Creating/ {gsub ("\\(","");gsub ("\\)",""); print $10"\\n"}')"
|
||
|
done
|
||
|
|
||
|
echo -e $rname | grep -v ^" " | uniq | sort -f
|