vote up 0 vote down star

Is there a tool that will allow me to issue commands over the network without SSH?

For example, I'd like to create a new linux box armed with DVD burners and send this command over the network "growisofs -dvd-compat -Z /dev/dvd -dvd-video dvd" with arguments and send the file to burn. The system would be automated so I need something that can do this easily and efficiently.

flag

0% accept rate
4  
Why do you have a problem with using ssh? It can easily be used to issue the commands, coupled with sftp/ftp for copying the files you want to burn. – Jefromi Aug 28 at 23:28
1  
An attempt to preempt your response: I wonder if perhaps it's SSH's password prompt you're trying to avoid? You don't have to use passwords to log in - you can use a public/private key pair. See the man pages for ssh-keygen and ssh-copy-id. – Jefromi Aug 28 at 23:34
@Jefromi: maybe he's unaware that ssh can be used with single commands, and can be configured to operate securely without prompting for passwords. – Jim Lewis Aug 28 at 23:37
1  
@Jefromi: GET OUT OF MY MIND! :-) – Jim Lewis Aug 28 at 23:38
Ok basically I want one computer to be able to control another over the network but with that specific DVD burning service. I'm not trying to do it manually myself, as I can SSH in. So if I'm trying to have the computer automatically issue the commands (so for example I can have a PHP script that can execute the DVD burn command), is SSH still the most efficient way? – unknown (google) Aug 28 at 23:58
show 4 more comments

2 Answers

vote up 0 vote down

You could use netcat with a shell bind. This is, of course, quite dangerous if the network is publicly exposed.

Google search

link|flag
Yea i think this is more into what I was looking for. Thanks. – unknown (google) Aug 29 at 0:56
vote up 1 vote down

Here's my comment in elaborated answer form.

On the local host, run ssh-keygen, most likely saving the key in the default location and not using a passphrase. Next, use ssh copy-id <user@host> to copy the public key to the remote host.

For your script, do something like:

scp "$FILE_TO_BURN" $REMOTE_USER@$REMOTE_HOST:"$BURN_DROP_DIR"
ssh $REMOTE_USER@$REMOTE_HOST $BURN_COMMAND
ssh $REMOTE_USER@$REMOTE_HOST rm "$BURN_DROP_DIR/$(basename $FILE_TO_BURN)"

Feel free to flesh it out with error detection by capturing the exit status/output of the ssh commands. You might also want to look into doing this without copying the whole file first using something like sshfs (packaged by most distros) to mount the directory containing the file to burn over the network.

link|flag
Actually I should state my question is how to make a program network accessible. I want people to be able to execute my PHP script and have my PHP script dynamically execute the burning program. So is having PHP executing "scp "$FILE_TO_BURN" $REMOTE_USER@$REMOTE_HOST:"$BURN_DROP_DIR" ssh $REMOTE_USER@$REMOTE_HOST $BURN_COMMAND ssh $REMOTE_USER@$REMOTE_HOST rm "$BURN_DROP_DIR/$(basename $FILE_TO_BURN)" really the best way to do this? – unknown (google) Aug 29 at 0:24

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.