Create sshjump.new
This commit is contained in:
parent
051233b038
commit
6c2be14a3d
|
@ -0,0 +1,21 @@
|
|||
#!/bin/bash
|
||||
|
||||
arg1=$1
|
||||
|
||||
if [ $arg1 = list ]; then
|
||||
sqlite3 /opt/sshjump/sshjump.db 'select host,id from sshjump'
|
||||
fi
|
||||
|
||||
if [ $arg1 = host ]; then
|
||||
user=$2
|
||||
host=$3
|
||||
port=$(sqlite3 /opt/sshjump/sshjump.db 'select port from sshjump where host = host')
|
||||
ssh -p $port $user@localhost
|
||||
fi
|
||||
|
||||
if [ $arg1 = id ]; then
|
||||
user=$2
|
||||
id=$3
|
||||
port=$(sqlite3 /opt/sshjump/sshjump.db 'select port from sshjump where id = id')
|
||||
ssh -p $port $user@localhost
|
||||
fi
|
Loading…
Reference in New Issue