u
This commit is contained in:
parent
4cc67a822d
commit
06307b8f85
16
ssh-pubkey-to-remote.bat
Normal file
16
ssh-pubkey-to-remote.bat
Normal file
@ -0,0 +1,16 @@
|
||||
echo *** Append ~/.ssh/id_rsa.pub to remote server
|
||||
|
||||
@ if not "%1" == "" (
|
||||
set REMOTEHOST=%1
|
||||
) else (
|
||||
echo Please specify user@remotehost!
|
||||
@ goto END
|
||||
)
|
||||
|
||||
scp %HOMEDRIVE%%HOMEPATH%\.ssh\id_rsa.pub %REMOTEHOST%:~/tmp.pub
|
||||
|
||||
ssh %REMOTEHOST% "mkdir -p ~/.ssh && chmod 700 ~/.ssh && cat ~/tmp.pub >> ~/.ssh/authorized_keys && chmod 600 ~/.ssh/authorized_keys && rm -f ~/tmp.pub"
|
||||
|
||||
echo ~/.ssh/id_rsa.pub is appended to %REMOTEHOST%:~/.ssh/authorized_keys
|
||||
|
||||
:END
|
@ -1,5 +1,7 @@
|
||||
#!/bin/bash
|
||||
|
||||
echo You can also try ssh-copy-id user@remotehost
|
||||
|
||||
if [ $1 ]
|
||||
then
|
||||
REMOTEHOST=$1
|
||||
|
Loading…
Reference in New Issue
Block a user