How to ping a game server with port ?

I thought the same seems quite obvious, but it wont work.
It would ping web server ip's but when i add port it say's
"Ping requested could not find host 46.109.115.200:28015 Please check the name and try again

see if you can ping this 46.109.115.200:28015.
 
Remove the port number and hope the server responds to ICMP i.e. ping 185.65.45.34 if it doesn't respond to ICMP then you'd need to known the protocol the service on that port is running and whether there is a way to get a timed response from it - usually enough just to send a handshake packet and then disconnect after the reply.
 
can't you telnet to the port and get a response that way?

Much more complicated and usually requires some additional software for timing and understanding of the protocol used by the game server to do a dummy handshake to time the response. (Unless you are just testing to see if the port is open at all rather than find the latency).
 
ICMP seems to be disabled on 46.109.115.200

I did a tracert to it and it was into the 60ms from a fairly low latency UK connection before it hit the point where it started timing out due to routers not responding.

If there is a game server running on the port you can usually stick the IP into favourites for the relevant server browser and get a ping that way.

EDIT: Not getting any response on that port so either nothing is running on it or its not open to the internet.
 
Last edited:
Remove the port number and hope the server responds to ICMP i.e. ping 185.65.45.34 if it doesn't respond to ICMP then you'd need to known the protocol the service on that port is running and whether there is a way to get a timed response from it - usually enough just to send a handshake packet and then disconnect after the reply.

The IP (46.109.115.200) on it's own wont ping either. It's a Rust game server, im searching now what protocol it's using.
 
Seems down

Code:
steve@ubuntudesktop:~$ nmap -p 28015 46.109.115.200

Starting Nmap 6.40 ( http://nmap.org ) at 2016-01-13 13:55 GMT
Note: Host seems down. If it is really up, but blocking our ping probes, try -Pn
Nmap done: 1 IP address (0 hosts up) scanned in 3.03 seconds
steve@ubuntudesktop:~$

Code:
steve@ubuntudesktop:~$ nmap -Pn 28015 46.109.115.200

Starting Nmap 6.40 ( http://nmap.org ) at 2016-01-13 13:56 GMT
Strange error from connect (22):Invalid argument
Stats: 0:00:02 elapsed; 0 hosts completed (2 up), 2 undergoing Connect Scan
Connect Scan Timing: About 50.25% done; ETC: 13:56 (0:00:02 remaining)
Nmap scan report for 28015 (0.0.109.111)
Host is up.
All 1000 scanned ports on 28015 (0.0.109.111) are filtered

Nmap scan report for 46.109.115.200
Host is up (0.062s latency).
Not shown: 998 filtered ports
PORT    STATE SERVICE
21/tcp  open  ftp
990/tcp open  ftps

Nmap done: 2 IP addresses (2 hosts up) scanned in 9.07 seconds
steve@ubuntudesktop:~$
 
Back
Top Bottom