I am trying to SSH to a server using a username whose password is: Pa55w0rd12#45^78(
The command i tried are:
[manu@xxx ]$ ssh manu:Pa55w0rd12#45^78(@xxxxxxx
-bash: syntax error near unexpected token `('
[manu@xxx ]$ ssh manu:"Pa55w0rd12#45^78("@xxxx
Password:
I have to follow the same command as this is in-product code and cannot be changed:
ssh username:password@server
Can anyone please direct me to a solution?
man ssh
. That's not a valid way of specifying a password tossh
. Also readman ssh-copy-id
. – waltinator Aug 19 '20 at 15:07