Detect / Probe Remote IP Cameras

Forum for questions and support relating to the 1.24.x releases only.
Locked
User avatar
Carlwill
Posts: 74
Joined: Wed May 02, 2007 5:12 pm
Location: Orlando, FL

Detect / Probe Remote IP Cameras

Post by Carlwill »

So I finally purchased two remote IP web camera's:

http://www.dealextreme.com/details.dx/sku.26358

They camera's are working fine on the LAN. I've assigned them IP's and when I enter the IP in my browser, I'm greeted with a login screen & when I login with my username and password, I can view, pan, & tilt the unit fine. Now I'm trying to get them to work in Zoneminder and I have not done this before. I add a new monitor and I'm guessing my problem is on the 'Source' tab because I can't see anything:

Screenshot

I don't understand why or what I'm doing wrong when configuring this camera. When I attempt to 'probe' it via the ZM software, I get an error:

Unable to probe network cameras, status is '127'

Not sure what I'm mis-configuring here but I would have thought these camera's work fine. Many people told me they would work no problem and I can't seem to understand how to get them to work. I read the wiki and I don't understand the 'Remote Host Path' as the Wiki shows a .jpg value which makes no sense to me. The camera's work fine when I log into their interface so I know they work...

Can someone please tell me what I'm doing wrong or how I can fix this?
It said install Windows 98 or better so I installed Linux...
cmf
Posts: 10
Joined: Thu Jan 13, 2011 7:48 am

Post by cmf »

try host name: carlos:password@10.1.10.242
host path: /videostream.cgi

host path may be wrong, try to figure out which url you can see the camera view alone.

Btw, I have a similar camera brought from China, the appearance is more or less the same. And I am finding a way to control the pan tilt zoom via zoneminder.
digitaldoom
Posts: 4
Joined: Wed Jan 19, 2011 1:37 am

Post by digitaldoom »

I have a WANSView NC530 IP Camera and I can't figure out how to find where the cgi is. That's hard to find for certain camera's. Too bad there isn't a website out there to track all models, etc.
PacoLM
Posts: 971
Joined: Wed Dec 02, 2009 9:55 pm
Location: Spain

Post by PacoLM »

Hi,

I believe the probing only works for usb cameras. Changing the settings as cmf suggested should work.
Also try to set the resolution to 320x240 in ZM and the camera (using the internal browser). Try to set this resolution later, when you have your system up and running.

Edit the /etc/systctl.conf file and add these lines:

kernel.shmmax = 1610612736
kernel.shmall = 393216

Restart ZM and give it a try.

PacoLM
lostsoulmash
Posts: 2
Joined: Tue Jan 11, 2011 8:57 pm

Post by lostsoulmash »

Maybe you can see the paths inside firmware, download a firmware for you cam and view with editor (ultraedit, hexworshop,notepad2 for example)
User avatar
Carlwill
Posts: 74
Joined: Wed May 02, 2007 5:12 pm
Location: Orlando, FL

Post by Carlwill »

So I've tried to re-configure the settings for my camera on ZM as suggested:

Remote Protocol = HTTP
Remote Method = Simple
Remote Host Name = carlos:password@10.1.10.242
Remote Host Port = 80
Remote Host Path = /videostream.cgi
Remote Image Colors = 24-bit color
Capture Width = 320
Capture Height = 240
Preserve Aspect Ration = Not selected
Orientation = Normal

So when I try and save the 'Source' settings shown above, I get an error from ZoneMinder:

Host must be set to a valid IP address or hostname, do not include http://

Anyone know what I'm doing wrong? Is this an issue with my Host Name or Host Path?

**I did find out from HERE that the URL to view my video stream would simply be 'http://10.1.10.242/video.cgi**

How should I configure that info into my source?
It said install Windows 98 or better so I installed Linux...
PacoLM
Posts: 971
Joined: Wed Dec 02, 2009 9:55 pm
Location: Spain

Post by PacoLM »

Hi,

I recommend you to upgrade your system by doing a apt-get update, then apt-get upgrade, I remember a failure like this and was solved upgrading the applications.

About the settings, try this before upgrading:

Remote Host Name = http://10.1.10.242
Remote Host Port = 80
Remote Host Path = /snapshot.cgi?user=carlos&pwd=password

At least you could test your camera.

Post results!

Saludos,

Paco
jani
Posts: 11
Joined: Sun Jan 16, 2011 8:49 pm

Re: Detect / Probe Remote IP Cameras

Post by jani »

Carlwill wrote:So I finally purchased two remote IP web camera's:

http://www.dealextreme.com/details.dx/sku.26358

They camera's are working fine on the LAN. I've assigned them IP's and when I enter the IP in my browser, I'm greeted with a login screen & when I login with my username and password, I can view, pan, & tilt the unit fine. Now I'm trying to get them to work in Zoneminder and I have not done this before. I add a new monitor and I'm guessing my problem is on the 'Source' tab because I can't see anything:

Screenshot

I don't understand why or what I'm doing wrong when configuring this camera. When I attempt to 'probe' it via the ZM software, I get an error:

Unable to probe network cameras, status is '127'

Not sure what I'm mis-configuring here but I would have thought these camera's work fine. Many people told me they would work no problem and I can't seem to understand how to get them to work. I read the wiki and I don't understand the 'Remote Host Path' as the Wiki shows a .jpg value which makes no sense to me. The camera's work fine when I log into their interface so I know they work...

Can someone please tell me what I'm doing wrong or how I can fix this?
status 127 error is because in the php script: web/skins/classic/views/monitorprobe.php exec will return this error since must specify to the full path to the 'arp' executable.

Code: Select all

$command = "arp -a";
must be changed to

Code: Select all

$command = "/usr/sbin/arp -a";
jani
Posts: 11
Joined: Sun Jan 16, 2011 8:49 pm

Re: Detect / Probe Remote IP Cameras

Post by jani »

Carlwill wrote:So I finally purchased two remote IP web camera's:

http://www.dealextreme.com/details.dx/sku.26358

They camera's are working fine on the LAN. I've assigned them IP's and when I enter the IP in my browser, I'm greeted with a login screen & when I login with my username and password, I can view, pan, & tilt the unit fine. Now I'm trying to get them to work in Zoneminder and I have not done this before. I add a new monitor and I'm guessing my problem is on the 'Source' tab because I can't see anything:

Screenshot

I don't understand why or what I'm doing wrong when configuring this camera. When I attempt to 'probe' it via the ZM software, I get an error:

Unable to probe network cameras, status is '127'

Not sure what I'm mis-configuring here but I would have thought these camera's work fine. Many people told me they would work no problem and I can't seem to understand how to get them to work. I read the wiki and I don't understand the 'Remote Host Path' as the Wiki shows a .jpg value which makes no sense to me. The camera's work fine when I log into their interface so I know they work...

Can someone please tell me what I'm doing wrong or how I can fix this?
in php script web/skins/classic/views/monitorprobe.php locate:
$command = "arp -a";
and change to
$command = "/usr/sbin/arp -a";
jani
Posts: 11
Joined: Sun Jan 16, 2011 8:49 pm

Re: Detect / Probe Remote IP Cameras

Post by jani »

Carlwill wrote:So I finally purchased two remote IP web camera's:

http://www.dealextreme.com/details.dx/sku.26358

They camera's are working fine on the LAN. I've assigned them IP's and when I enter the IP in my browser, I'm greeted with a login screen & when I login with my username and password, I can view, pan, & tilt the unit fine. Now I'm trying to get them to work in Zoneminder and I have not done this before. I add a new monitor and I'm guessing my problem is on the 'Source' tab because I can't see anything:

Screenshot

I don't understand why or what I'm doing wrong when configuring this camera. When I attempt to 'probe' it via the ZM software, I get an error:

Unable to probe network cameras, status is '127'

Not sure what I'm mis-configuring here but I would have thought these camera's work fine. Many people told me they would work no problem and I can't seem to understand how to get them to work. I read the wiki and I don't understand the 'Remote Host Path' as the Wiki shows a .jpg value which makes no sense to me. The camera's work fine when I log into their interface so I know they work...

Can someone please tell me what I'm doing wrong or how I can fix this?
in php script monitorprobe dot php locate:
$command = "arp -a";
and change to
$command = "/usr/sbin/arp -a";
jani
Posts: 11
Joined: Sun Jan 16, 2011 8:49 pm

Re: Detect / Probe Remote IP Cameras

Post by jani »

Carlwill wrote:So I finally purchased two remote IP web camera's:

http://www.dealextreme.com/details.dx/sku.26358

They camera's are working fine on the LAN. I've assigned them IP's and when I enter the IP in my browser, I'm greeted with a login screen & when I login with my username and password, I can view, pan, & tilt the unit fine. Now I'm trying to get them to work in Zoneminder and I have not done this before. I add a new monitor and I'm guessing my problem is on the 'Source' tab because I can't see anything:

Screenshot

I don't understand why or what I'm doing wrong when configuring this camera. When I attempt to 'probe' it via the ZM software, I get an error:

Unable to probe network cameras, status is '127'

Not sure what I'm mis-configuring here but I would have thought these camera's work fine. Many people told me they would work no problem and I can't seem to understand how to get them to work. I read the wiki and I don't understand the 'Remote Host Path' as the Wiki shows a .jpg value which makes no sense to me. The camera's work fine when I log into their interface so I know they work...

Can someone please tell me what I'm doing wrong or how I can fix this?
in php script monitorprobe dot php locate:
$command = arp -a;
and change to
$command = /usr/sbin/arp -a;
jani
Posts: 11
Joined: Sun Jan 16, 2011 8:49 pm

Re: Detect / Probe Remote IP Cameras

Post by jani »

Carlwill wrote:So I finally purchased two remote IP web camera's:

http://www.dealextreme.com/details.dx/sku.26358

They camera's are working fine on the LAN. I've assigned them IP's and when I enter the IP in my browser, I'm greeted with a login screen & when I login with my username and password, I can view, pan, & tilt the unit fine. Now I'm trying to get them to work in Zoneminder and I have not done this before. I add a new monitor and I'm guessing my problem is on the 'Source' tab because I can't see anything:

Screenshot

I don't understand why or what I'm doing wrong when configuring this camera. When I attempt to 'probe' it via the ZM software, I get an error:

Unable to probe network cameras, status is '127'

Not sure what I'm mis-configuring here but I would have thought these camera's work fine. Many people told me they would work no problem and I can't seem to understand how to get them to work. I read the wiki and I don't understand the 'Remote Host Path' as the Wiki shows a .jpg value which makes no sense to me. The camera's work fine when I log into their interface so I know they work...

Can someone please tell me what I'm doing wrong or how I can fix this?
in php script monitorprobe dot php locate:
command = "arp -a";
and change to
command = "usr/sbin/arp -a";
jani
Posts: 11
Joined: Sun Jan 16, 2011 8:49 pm

Re: Detect / Probe Remote IP Cameras

Post by jani »

Carlwill wrote:So I finally purchased two remote IP web camera's:

http://www.dealextreme.com/details.dx/sku.26358

They camera's are working fine on the LAN. I've assigned them IP's and when I enter the IP in my browser, I'm greeted with a login screen & when I login with my username and password, I can view, pan, & tilt the unit fine. Now I'm trying to get them to work in Zoneminder and I have not done this before. I add a new monitor and I'm guessing my problem is on the 'Source' tab because I can't see anything:

Screenshot

I don't understand why or what I'm doing wrong when configuring this camera. When I attempt to 'probe' it via the ZM software, I get an error:

Unable to probe network cameras, status is '127'

Not sure what I'm mis-configuring here but I would have thought these camera's work fine. Many people told me they would work no problem and I can't seem to understand how to get them to work. I read the wiki and I don't understand the 'Remote Host Path' as the Wiki shows a .jpg value which makes no sense to me. The camera's work fine when I log into their interface so I know they work...

Can someone please tell me what I'm doing wrong or how I can fix this?
in php script monitorprobe dot php locate:
jani
Posts: 11
Joined: Sun Jan 16, 2011 8:49 pm

Re: Detect / Probe Remote IP Cameras

Post by jani »

in php script web/skins/classic/views/monitorprobe.php locate:

Code: Select all

$command = "arp -a";
and change it to

Code: Select all

$command = "/usr/sbin/arp -a";
martymoose
Posts: 128
Joined: Tue Jul 12, 2005 9:59 am
Location: australia

Post by martymoose »

mate its a foscam clone
check the wiki
http://www.zoneminder.com/wiki/index.php/Foscam

mine setup
Under source

Remote Protocol http
Remote Method simple
Remote Host Name 192.168.1.x
Remote Host Port 80
Remote Host Path /videostream.cgi?user=XXXX&pwd=XXXX
Remote Host SubPath
Remote Image Colours 24 bit colour
Capture Width (pixels) 640
Capture Height (pixels) 480
Preserve Aspect Ratio
Orientation normal
I donated have YOU?
Locked