diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/.scripts/AN2Linux.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/scripts/.scripts/AN2Linux.sh b/scripts/.scripts/AN2Linux.sh new file mode 100755 index 0000000..263f932 --- /dev/null +++ b/scripts/.scripts/AN2Linux.sh @@ -0,0 +1,9 @@ +#!/bin/bash + +if [[ $1 && $2 && $3 ]];then + ssh-add -l |grep -q `ssh-keygen -lf $1 | awk '{print $2}'` || ssh-add $1 + ssh root@$2 "/root/AN2Linux.sh start $(\ip addr show $3 | grep "inet " | cut -d'/' -f1 | awk '{print $2}')"; an2linuxserver.py; ssh root@$2 "/root/AN2Linux.sh stop $(\ip addr show $3 | grep "inet " | cut -d'/' -f1 | awk '{print $2}')"; +else + echo "Usage:" + echo " $0 <ssh_key> <ip_server> <interface>" +fi |