2

This question is in a direct relation to this one: ssh fails to execute remote command when run from cron bash script - works from CLI

I'm not able to comment on the accepted answer as I don't have enough rep so please bear with me.

I'm running a script on a linux PC machine and the host i'm trying to get the output from is a router with its OS so it's nothing I can influence in terms of configuring the console. Basically executing this under cron: OUT=$(ssh -tt -vv [email protected] "remote command") gets me an empty variable.

debug1: Sending command: remote command debug2: channel 0: request exec confirm 1 debug2: callback done debug2: channel 0: open confirm rwindow 2621440 rmax 262144 debug2: channel 0: read<=0 rfd 4 len 0 debug2: channel 0: read failed 

If I'm executing this outside cron, i.e. in the CLI i'm getting output as expected. As you can see the -tt option to force pseudo-tty allocation doesn't help.

Any solutions for this to help cron overcome the buggy remote console?

10
  • If we could help it might be a good idea to provide the specific router vendor, fw version, etc ... you are working with.... also provide what troubleshooting you have performed... Commented May 24, 2014 at 17:08
  • Is this for a home system? Commented May 24, 2014 at 17:08
  • Router in question is a MikroTik 2011UAS with ROS 5.24. The problem isn't present in e.g. 5.14 or 6.x but an upgrade currently is not an option. This question was purely if there's a workaround from a shell scripting point of view. Commented May 24, 2014 at 17:16
  • 2
    You need to capture the output from stderr of the ssh command OUT=$(ssh -t [email protected] "remote command" 2>/tmp/ssh.out) hopefully it will reveal the problem. Commented May 24, 2014 at 17:29
  • 1
    Possible duplicate of Why is my crontab not working, and how can I troubleshoot it? Commented Dec 25, 2015 at 11:31

3 Answers 3

2

Your command print results stderr or stdout?

You can reroute stderr to stdout using

OUT=$(ssh -tt -vv [email protected] "remote command" 2>&1 ) 
1
  • This appears to be copied nearly verbatim from Iain's comment on the original question. Commented Jul 11, 2016 at 9:18
0

Did you consider to use fully qualified paths for the cronjob?

Use /usr/bin/ssh user@host instead of ssh user@host

1
  • Yes, this is what i'm actually using. Wrote the sample command here. Commented May 24, 2014 at 22:05
-1

Some routers or embedded devices have very bad SSH implementations. I've seen cases where they only know how to read commands from the console, and cannot deal with commands passed on the command line. If this is the case you have, you may want to try piping the remote command into the remote ssh.

echo remote command | ssh user@host 

If this helps, you may have better luck trying to code something with expect.

You must log in to answer this question.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.