mirror of
https://github.com/moexe/FFFGateway-Monitoring.git
synced 2024-11-21 21:53:40 +01:00
13 lines
436 B
Bash
Executable File
13 lines
436 B
Bash
Executable File
#!/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
|