Signed-off-by: Nico Schottelius <nico@manager.schottelius.org>
This commit is contained in:
Nico Schottelius 2017-07-19 17:15:41 +02:00
commit df2daf524d
641 changed files with 140617 additions and 12 deletions

10
smbmessage Normal file
View file

@ -0,0 +1,10 @@
BASE=192.168.0
MESSAGE="Network Failure"
SMBCLIENT="smbclient -n NONE -M"
i=1
while [ $i -lt 255 ]; do
echo $MESSAGE | $SMBCLIENT "$BASE"."$i"
i=$[$i+1]
done