On 2011-08-26 15:28, Nigel Verity wrote: > I use Filezilla on a regular basis to transfer files between devices via my > home router. It's a great utility which I would highly recommend. From time > to time it would be useful to access files on devices located at home when > I am away. Could anyone suggest how to do this? I use an ordinary ISP (Talk > Talk) for internet access. There are often 4 or 5 devices connected to my > router, so I am uncertain as to which IP address to use as the "target"; > that of the router or that of the device containing the files. > > I imagine that the solution for Filezilla will apply equally to using > Nautilus to connect to a server.
Since you presumably have one public IP and use NAT, you need to forward ports to access SSH internally. Configure some TCP port forwards like this: 10001 -> 192.168.0.1 port 22 10002 -> 192.168.0.2 port 22 You could then access SFTP/SSH by: ssh -p 10001 user@routerpublicip sftp://user@routerpublicip:10001/home/user However, you still need to know your public IP. If this is static, great. If not, you'll need to configure dynamic DNS as well. Also, a VPN may be a better solution, but more work. Regards, Tyler -- "Always hold your sales meetings in rooms too small for the audience, even if it means holding them in the WC. 'Standing room only' creates an atmosphere of success, as in theatres and restaurants, while a half-empty auditorium smells of failure." -- David Ogilvy, "Ogilvy on Advertising" -- [email protected] https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk https://wiki.ubuntu.com/UKTeam/
