Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

KXTDE 100 Management console show error EA03201

Status
Not open for further replies.

shihaaab

Technical User
Sep 5, 2015
4
AE
When i connect wih IP address and port number, its showing Error EA03201 settings error, but when i use same system same IP same port number ti Communication Assistant Externally, Its working, may any can help?
Is it possible connect and work CA as inbuild System of Kxtde 100 PBX unified management console
CA_qduuhj.png
 
Maintenance port 35300, i know. maintenance working well, i want to connect communication assistant it inbuild in KXTDE100 software
 
why are you showing maintenance tool it is nothing to do with the tool
 
can I ask one? Call incoming out going log report is available with PBX Unified Maintenance software as inbuilt?
for that need any External Software ?
 
The system will give you SMDR records
CA accounting will collect the data but is not supported by panasonic and will only run on 32 bit machines. But there are lots or call reporting software options that will work with it
 
If u know how to node JS
+ Set SMDR good

Code:
var net = require('net');
var port = 2300;
var host = '192.168.0.101';
var user = 'SMDR';
var passwd = 'PCCSMDR';

function connectionListener(conn) {
console.log('Connected to PBX!');
}
var conn = net.createConnection(port, host, connectionListener);

conn.setEncoding('ascii');
conn.on('data', processdata);

function processdata(data){
   console.log(data);
   if (data.match("^-")){
	conn.write(user+'\r\n');
	conn.write(passwd+'\r\n');
	}
};

have fun logging yourself :)

Panasonic TDA/TDE/NCP/NS Series
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top