Is there a (free) way to set up remote desktop sharing without configuring the router?

DynDNS removes the need for a static IP address by providing you with an easy to remember DNS name (yourhomelinux.dyndns.org) so you don't have to remember your IP address or keep track of its changes. There can be a few minutes of inaccessibility when your IP changes if DynDNS does not get notified right away, or if there are a few minutes left on the TTL for DNS records if your DNS server caches.

Your router may support DynDNS in which case every time the router sees it gets a new IP, it tells DynDNS to update your hostname with the new IP. If your router doesn't support it, you install a piece of software on a PC that pings them periodically and causes an update if the IP has changed.

That still doesn't answer remote access. All you are able to do now is find your house, but you still don't have a key to the door. When you try to ping your DynDNS name, it is really pinging your router. If your router is configured to not respond to a ping (which it sounds like that may be the case), you will still not get a reply when you ping your host.

After you have DynDNS working and you confirmed it is pointing to your home IP, you need to set up a port forward in your router to map an external port on the router, to an IP address and port of a PC on your local network.

For example you could map port 22222 on your router to the LAN address 192.168.0.50:22 so you could SSH into your server remotely ssh -p 22222 [email protected] Using non-standard port numbers is good because 1) it can resolve port conflicts (what if you want to be able to SSH into 3 machines on the LAN) and 2) it is a little more secure as lots of hackers scan for port 22 (among many others) to see if they can gain access to systems.

To do remote desktop, you will need some sort of VNC server or other remote desktop server for Linux. Once you get a remote desktop service running, you set up a port forward similar to the previous example, except you forward to the VNC port of your local PC.

There may be some linux remote desktop solutions here that are suitable for you.

What worked particularly well for me to be able to access my work computer from home on occasion is to use Team Viewer. Their server runs on Linux and is always fast for me. I don't even have an account, I just run the software and use the PIN to access my PC.

I haven't had good experiences using VNC for Linux, usually the connection is choppy through VNC while other remote desktop services on the same PC worked much more smoothly.

EDIT: I'm not sure if the title changed, or I misread it initially, but you will have to do some configuration to the router. You can't do remote desktop to your LAN without at least one change to the router. Otherwise how does it know which PC on your network to control? Using something like LogMeIn doesn't require changes to your router, but it also depends on a 3rd party server, and doesn't work on Linux.

Hope that helps!