admin管理员组文章数量:1344193
I'm developing a Node.js application to communicate with a ZKTeco MA300 biometric device over TCP. I'm running a mock server to test the connection, but I'm facing an issue where the connection gets reset with an ECONNRESET error.
What I’ve Done:
- Started a TCP server using Node.js with the net module, listening on port 4370.
- The server successfully accepts connections and receives data from the device.
- It sends a response with the MA300 device info when it detects a known request.
However, after a few messages, the connection gets disconnected with a "
Socket error: read ECONNRESET
" message.
const net = require('net');
const PORT = 4370;
const HOST = '0.0.0.0';
// MA300 Device Info Response
const DEVICE_INFO_RESPONSE = Buffer.from(
'aa01760000004d4133303051544d363234313030303031c0a8003233333265333532653333bc97',
'hex'
);
const server = net.createServer((socket) => {
console.log(`ZK Software connected: ${socket.remoteAddress}:${socket.remotePort}`);
socket.on('data', (data) => {
console.log(`Received: ${data.toString('hex')}`);
if (data.toString('hex').startsWith('aa01760400fefefefe')) {
console.log('Sending MA300 Device Info...');
socket.write(DEVICE_INFO_RESPONSE);
} else {
console.warn('Unknown request received');
}
});
socket.on('error', (err) => {
console.error(`Socket error: ${err.message}`);
});
socket.on('close', () => {
console.log('ZK Software disconnected');
});
});
server.listen(PORT, HOST, () => {
console.log(`Mock ZK MA300 Server running on ${HOST}:${PORT}`);
});
Questions:
- What could be causing the ECONNRESET error after a few responses?
- Does the MA300 require an additional handshake or acknowledgment after sending the device info?
- Are there specific ZKTeco protocol requirements that I might be missing?
本文标签: mockingZKTeco MA300 Connection Issues ECONNRESET on Nodejs TCP ServerStack Overflow
版权声明:本文标题:mocking - ZKTeco MA300 Connection Issues: ECONNRESET on Node.js TCP Server - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743742217a2531102.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论