vote up 0 vote down star

The following code does not work

scp /home/username/public_html/site/pictures/* myUsernameAtMyMac@myIpAddress:/home/Masi/Desktop/

I have "Allow only essential services" in my Mac's firewall.

How can you solve the problem?

[edit]

I get the following error after I have "Remote Login" in the list of allowed services. I also allowed "All users".

scp favicon.ico Masi@11.111.11.111:/home/Masi/Dropbox/
ssh: connect to host 11.111.11.111 port 22: Connection timed out
lost connection

[edit] I tried to login to my computer from another Macbook unsuccessfully by the following command

ssh Masi@11.111.11.111

I get an operation timeout error.

I managed once to connect from my server to my computer with the above command, but the connection was quickly timeout.

flag

"does not work" is not a good description of what happens when you type that command. – tdavies Mar 10 at 12:17
How is this programming related? – Paul Tomblin Mar 10 at 12:20
Do you get any error messages or feedback at all? Can you run the command from outside your program? – Sakkle Mar 10 at 12:21
It looks like you have a networking problem (ssh not able to find the host, ping not working). Can you describe your network setup (is your server on the Internet, is your Mac behind a NAT gateway or firewall, are the IP addresses both public, is there port-forwarding configured correctly, etc.)? – x-way Mar 10 at 14:58
@x-way: My server is on the internet. My Mac is behind NAT gateway and Mac's own firewall. The ip address of my server is public. I am not sure about my Macbook: I have stealth mode enabled. I do not use port-forwarding. – Masi Mar 10 at 15:57
show 1 more comment

3 Answers

vote up 3 vote down check

You need to add the SSH service to the allowed applications in the firewall configuration of your Mac and change your firewall settings to “Set access for specific services and applications.”.

Having your firewall set to “Allow only essential services.” blocks incoming connections to services running on your machine.

See also on the Apple support site: http://docs.info.apple.com/article.html?path=Mac/10.5/en/11783.html

link|flag
If users are using FileVault they will not be able to use SSH keys for authentication as discuss in page 121 of this document (manuals.info.apple.com/en_US/…) – Pierre-Luc Simard Mar 10 at 12:36
How can I allow the SSH service? – Masi Mar 10 at 13:22
When you activate the SSH service in the 'Sharing' preferences, it is automatically added to the list of allowed applications, but you still need to set the firewall to “Set access for specific services and applications”. – x-way Mar 10 at 13:28
@Pierre: I am not using FileVault. @x-way: I have not yet any programs in the firewall list. Which one of “Allow only essential services” and “Set access for specific services and applications” is more safe to use? – Masi Mar 10 at 13:32
@x-way: I set "Remote Login" to be allowed. I get an error when I try to connect, please, see the question. – Masi Mar 10 at 13:39
show 1 more comment
vote up 1 vote down

The scp command itself is OK.

As for your problem, impossible to say with the information given. Can you ping the machine? Try to ssh with the "-v" switch to see if you get some more relevant info about the connection procedure.

link|flag
I get the error when I try to ping my computer at my server: ping: icmp open socket: Operation not permitted – Masi Mar 10 at 13:24
vote up 0 vote down

Try this command using your mac. Should work without any firewall modifications or router settings.

scp yourUsernameAtYourServer@YourServer:/home/username/public_html/site/pictures/* /home/Masi/Desktop/

If you are using NAT to get more then one box connected to the internet this does not work. The IP of your Mac is not visible outside your home network. In this case you have to add a port forwarding rule to yout router.

myUsernameAtMyMac@myIpAddress
link|flag
scp does not do globbing on the remote side, try copying the whole folder instead: scp -r youUsernameAtYourServer@YourServer:/home/username/public_html/site/pictures /home/Masi/Desktop/ – x-way Mar 10 at 13:31

Your Answer

Get an OpenID
or

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