Hi, --- On Thu, Sep 17, 2009 at 11:33 AM, Chandan <[email protected]> wrote: | I can ping machine II from maching I but the vice versa doesnt happen. | It shows | PING 172.16.48.131 (172.16.48.131) 56(84) bytes of data. | From 172.16.46.25: icmp_seq=2 Destination Host Unreachable | ... \--
So, what Sharad said is right. They are blocking requests from the server to the local machine. But, what is it that you want to do from the remote machine to the local machine? If you want to just copy files from the remote machine to the local machine, you can try the following from the local machine? $ scp u...@remote-machine:/path/to/file /path/to/local-machine/directory For example, if you wanted to copy /tmp/foo.dat from the remote-machine to your local ~ folder, you can do the following from the local machine: $ scp u...@remote-machine:/tmp/foo.dat ~ You can use -r to recursively copy folders with scp command. Check their man page as well. $ man scp --- | ps -ae | grep ssh | 4832 ? 00:00:00 sshd \-- sshd daemon is running on your system, so this is fine. SK -- Shakthi Kannan http://www.shakthimaan.com --~--~---------~--~----~------------~-------~--~----~ Do you have another question? Click here - http://groups.google.com/group/iitdlug/post l...@iitd community mailing list -- http://groups.google.com/group/iitdlug -~----------~----~----~----~------~----~------~--~---
