View Single Post
Posts: 3,617 | Thanked: 2,412 times | Joined on Nov 2009 @ Cambridge, UK
#134
Originally Posted by kaos_king View Post
Laptop IP = 192.168.1.147
N900 IP = 192.168.1.217

Telnet on the N900 produced:

Code:
/home/user # telnet 192.168.1.147:5900
telnet: could not resolve 192.168.1.147:5900/telnet: Name or service not known
You don't want the colon in there, just:
Code:
telnet 192.168.1.147 5900
Originally Posted by kaos_king View Post
If i do the ip without a port it takes ages and then i get a connection timed out error.
That'll be beacuse you're not running a telnet server.

Originally Posted by kaos_king View Post
Should I be starting up tightvncserver (i dont need to when the laptop connects to itself though). If i do nmap on the laptop i get this:

Code:
kaos@laptop:~$ nmap localhost

Starting Nmap 5.21 ( http://nmap.org ) at 2010-11-25 14:57 GMT
Nmap scan report for localhost (127.0.0.1)
Host is up (0.00052s latency).
Hostname localhost resolves to 2 IPs. Only scanned 127.0.0.1
rDNS record for 127.0.0.1: localhost.localdomain
Not shown: 996 closed ports
PORT     STATE SERVICE
80/tcp   open  http
631/tcp  open  ipp
3306/tcp open  mysql
5900/tcp open  vnc

Nmap done: 1 IP address (1 host up) scanned in 0.07 seconds
It certainly looks like you've got a VNC server running on there already, so no need to start tightvncserver. The only question is whether the server is listening on the network, or just on the local machine. Try running (on the laptop):
Code:
netstat -a -n | grep 5900
 

The Following User Says Thank You to Rob1n For This Useful Post: