How to find out HTTP port for camera's

normel

Getting the hang of it
Joined
Dec 1, 2014
Messages
288
Reaction score
22
I have some camera's installed, and changed http port for some of those. Unfortunately, the sadp tool, doesnt show me which ip camera uses what port.

So if i forget the http port of a camera, how can i find out which http port is used by which ip adres?

I hope my question is clear.. English not my first language
 

alastairstevenson

Staff member
Joined
Oct 28, 2014
Messages
15,980
Reaction score
6,802
Location
Scotland
The excellent Windows open-source tool 'ONVIF Device Manager' from sourceforge.net will tell you that, and much more than is ever in a camera user manual. The 'ONVIF port' is often not documented, sometimes the RTSP string too. You'll find the web admin port on the 'Web page' page.

And it you're into networking, nmap is pretty handy too, though a lot less friendly.
nmap -sS 192.168.254.11
Starting Nmap 6.40 ( http://nmap.org ) at 2015-05-17 17:18 GMT Daylight Time
Nmap scan report for 192.168.254.11
Host is up (0.0050s latency).
Not shown: 991 closed ports
PORT STATE SERVICE
22/tcp open ssh
23/tcp open telnet
90/tcp open dnsix
443/tcp open https
554/tcp open rtsp
7001/tcp open afs3-callback
8000/tcp open http-alt
8200/tcp open trivnet1
9010/tcp open sdr
Nmap done: 1 IP address (1 host up) scanned in 4.27 seconds
 
Top