How to do remote ssh non-interactively
Asked Answered
M

3

15

I am trying to connect to a remote host from my local host through the below command.But there was a setting in the remote host that soon after we login it will prompt to enter a badge ID,password and reason for logging in, because it was coded like that in profile file on remote-host How can I overcome those steps and login directly non-interactively, without disturbing the code in profile.

jsmith@local-host$ ssh -t -t generic_userID@remote-host
Enter your badgeID, < exit > to abort:
Enter your password for <badgeID> :
Enter a one line justification for your interactive login to generic_userID
Malaya answered 13/6, 2013 at 14:34 Comment(1)
What is your default shell on the remote host?Clam
F
14

Small amendment: to overcome remote server expect approach is required, but in case local script connects to bunch of remote servers, which configuration may be broken, just use SSH options:

ssh -f -q -o BatchMode=yes -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null USER@TARGETSYSTEM

This will omit ask for password in case there is no ssh_key setup, exit silently and continue with script/other hosts.

Puts ssh to background with -f, which is required when calling ssh command from sh (batch) file to remove local console redirect to remote input (implies -n).

Forde answered 4/2, 2018 at 12:1 Comment(2)
Having StrictHostKeyChecking and UserKnownHostsFile in the ssh and in the ssh config file was the only way I got a non interactive ssh.Bellyache
This helped me when trying to SSH from AWS CodeBuild project into an Amazone EC2 instanceCorissa
D
2

Look into setting up a wrapper script around expect. This should do exactly what you're looking for.

Here are a few examples you can work from.

Dollop answered 20/6, 2013 at 10:18 Comment(0)
C
1

I have upvoted Marvin Pinto's answer because there is every reason to script this, in case there are other features in the profile that you need, such as Message of the Day motd.

However, there is a quick and dirty alternative if you don't want to make a script and you don't want other features from the profile. Depending on your preferred shell on the remote host, you can insist that the shell bypasses the profile files. For example, if bash is available on the remote host, you can invoke it with:

ssh -t -t generic_userID@remote-host bash --noprofile

I tested the above on the macOS 10.13 version of OpenSSH. Normally the command at the end of the ssh invocation is run non-interactively, but the -t flag allows bash to start an interactive shell.

Details are in the Start-up files section of the Bash Reference Manual.

Clam answered 31/12, 2017 at 11:11 Comment(3)
This may not work as expected. That ssh command would cause sshd to invoke the string "bash --noprofile" as a shell command. In other words, sshd is going to invoke the equivalent of $SHELL -c 'bash --noprofile'. The shell instance started by sshd will still go through whatever initialization it performs.Telltale
@Telltale I tested this with bash as the default shell, and ~/.bash_profile does not run.Clam
-t user@host bash --noprofile was helpful in simulating a non-interactive shell on a remote host. I wanted to simulate the environment (specifically $PATH) under which a script will execute, since non-interactive shells do not implicitly source .bash_profile as an interactive shell does.Aubarta

© 2022 - 2024 — McMap. All rights reserved.