|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0577 ] | Anatel Communications |
---|---|
Organisation name | Anatel Communications |
Short name or acronym | Anatel Communications |
Organisation type | Company |
Activity type | Call centers Speech technology |
Address | 8 Centennial Drive |
Postal Code | 01960 |
City | Peabody, MA |
Country | United States |
Phone | + +1 978 977 6817 |
Fax | + +1 978 532 6813 |
Organisation URL | http://www.anatel.net |
Logo | Description |
![]() |
Anatel Communications Corporation, established as a standalone subsidiary of Analogic Corporation in March 2000, is one of the largest suppliers of Voice over Internet Protocol (VoIP) resource boards to the communications industry. Our VoIP boards offer the highest performance and best price per port in the industry, using powerful memory management techniques and parallel Digital Signal Processing (DSP) arrays. Our T1/E1 interface uses the same reliable DSP architecture, which enables us to offer Original Equipment Manufacturers (OEMs) single-slot VoIP or Media Gateway development systems for space- and price-sensitive applications in Central Office (CO) and Internet Service Provider (ISP) locations. |
Contact | |
Name | Mr. David Fridley |
Function | Director of Marketing |
Department | Marketing |
dfridley_(on)_anatel.net | |
Phone | + +1 978 977 6817 x3521 |
Fax | + |
![]() |
Last update: 2002-04-10 12:32:58 #!/usr/bin/ksh # cntr.cgi -- # version 0 DOC=$DOCUMENT_ROOT$DOCUMENT_URI VSTART=28-08-2008 WRONGLOG=${DOCUMENT_ROOT}/cntr.txt echo Content-type:text/html echo case $DOC in *experts*) CDIR=${DOCUMENT_ROOT}/cntex ;; *orgs*) CDIR=${DOCUMENT_ROOT}/cntor ;; *) WRONG=yes ;; esac CFILE=${DOC##*/} case ${CFILE} in [0-9][0-9][0-9][0-9].html) WRONG=no ;; *) WRONG=yes ;; esac [ $WRONG = yes ] && { echo "$(date) $REMOTE_ADDR ${DOC}" >> $WRONGLOG exit } CCNT=${CDIR}/${CFILE%.html}.txt CLCK=${CDIR}/${CFILE%.html}.lck [ -s $CCNT ] && COUNT=$(head -1 $CCNT) COUNT=$(( ${COUNT:-0} + 1 )) [ -f $CLCK ] || { touch $CLCK echo $COUNT > $CCNT rm -f $CLCK } echo " Visits since $VSTART: $COUNT" |