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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

cdr/alarm boards

Status
Not open for further replies.

6324

Technical User
May 20, 2009
7
US
I have been assigned to configure cdr and alarm for many sites that use MD110. Most of these site do not have SIU board and available NIU ports (or no license). Are there any other boards that I can use in MD110 to program cdr and alert, especially the alert.
And how can I program the board for cdr or alert.
 
6324,

only SIU or NIU are able to make CDR.
SIU and NIU programming are different:

SIU:

/***ADD A SIU BOARD***/
CNBOI:BPOS=1-1-70,BRDID=29,NUMIND=2;
/***ASSIGN SIU PORT***/
EDEQI:DEV=SI-0,EQU=1-1-70-0,PRIO=A;
/***DEFINE SIU PORT***/
EDICC:DEV=SI-0,BAUDR=9600,WORDL=8,STPBIT=1,PARITY=NO;
/***INITIATE A FILE****/
EDFII:FILE=CDR;
/***LINK FILE AND PORT***/
EDDFI:DEV=SI-0,FILE=CDR;
/****DEFINE MESSAGE FORMAT***/
CLOHI:FILE=CDR,FORM=2,DMPSIZ=1,DISCR=0;
/***CHOOSE CRITERIA***/
/*** IN THIS EXAMPLE YOU DIAL 9 TO REACH PUBLIC NETWORK***/
CLODI:FILE=CDR,ORIG=ALL,DIAL=9,TIME=0-00-03;
/***START THE SERVICE***/
CLTGI;

NIU:

/***ADD A NIU BOARD***/
CNBOI:BPOS=2-3-70,BRDID=106,NUMIND=8;
/***ASSIGN NIU PORT***/
IOEQI:IODEV=CIL-1,USAGE=OUT,EQU=1-0-60-1;
/***DEFINE NIU PORT***/
IOIFC:IODEV=CIL-1,BAUDR=9600,WORDL=8,STPBIT=1,PARITY=NONE;
/***INITIATE A FILE****/
CLDFI:FILE=CDR,IODEV=CIL-1,USER=CIL-1,PRIO=A;
/****DEFINE MESSAGE FORMAT***/
CLOHI:FILE=CDR,FORM=2,DMPSIZ=1,DISCR=0;
/***CHOOSE CRITERIA***/
/*** IN THIS EXAMPLE YOU DIAL 9 TO REACH PUBLIC NETWORK***/
CLODI:FILE=CDR,DIAL=9,TIME=0-00-03;
/***START THE SERVICE***/
CLTGI;



The Curious
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top