ShutdownScript
Mit diesem Script werden alle Aktiven Geräte im netz gefunden und ein Shutdown befehl über ssh verschickt.
#!/bin/bash activeips=$(nmap -v -sn -n -T4 10.10.0.2-254 | grep -v down | grep [0-9]$ | cut -d " " -f 5 | sed '1d') for IP in $activeips; do #echo "$activeips" ssh -o "StrictHostKeyChecking no" root@$IP 'shutdown -h now'; done