Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Connecting fingerprint biometric device to desktop

I want to access the contents of the biometric device using a command prompt or a shared folder instead of using the software that comes with it. I am new in networking, I did the following:

    1. Set a static IP to my biometric device: 192.168.1.201 port 4370 (default)
    2. configure ethernet in my PC using ip: 192.168.1.1, subnet 255.255.255.0
    3. Connected my PC to the device using crossover cable.

The device is pingable, my firewall is off. I cannot access the device in browser http://192.168.1.201, or in directory \\192.168.1.201

I am planning to create a vbscript or a php code to access the biometric instead of the software that comes with it. So as a requirement, I need to have access to the device

like image 506
Joey Avatar asked Sep 02 '25 03:09

Joey


1 Answers

You can not access the biometric machine through telnet. The username and password is set by the manufacturer. They will use the telnet account credentials only for their internal development and testinng purpose. @Hans-Martin Mosner, machine can well connect with port 80. Only thing is software will not listen at port 80 as it has been bound with http. If you remove the port 80 from listening for http then you can make your application to connect with port 80

If you are trying for accessing the biometric machines to associate with your web application, go for CAMSUnit machines. CAMS provides the WEB APIs for their biometric machines. It supports registering the callback URL which gets called every time new attendance gets registered.

like image 89
Victor Avatar answered Sep 05 '25 00:09

Victor