vote up 0 vote down star

For my system I have to know whether I can do SCP (with or without transfering a file) with a particular number of systems in the network repeatedly.

We may not transfer files but we have to know how we can do SCP without giving a password.

flag
Is this even a question? – Welbog Jun 10 at 17:22
Ya, what are you asking? Are you asking how to copy a file over the network or are you asking to check if you have ssh keys to a certain machine, or how to use ssh keys? Or something entirely different. – icco Jun 10 at 17:25
My intention is not to copy a file using scp but I want to know can i do scp a file from my system to another system in the network but actual problem is in my network systems are password protected and i don't have passwds with me – kishore Jun 11 at 9:37

2 Answers

vote up 2 vote down

You may find Net::SCP Perl module helpful.

link|flag
vote up 1 vote down

You could try to see if the remote host responds on port 22. There are various tools that try to open a port. For example, try

curl :22

this will print something different depending on whether the port responds or not. I'm sure there are better tools (nmap, for example) that could do the job, but that's the first that came to mind.

This won't of course test whether SCP will actually work. could be that ssh but not scp is enabled. But it will get you closer.

link|flag

Your Answer

Get an OpenID
or

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