|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1029 ] | Ericsson Data Backbone and Optical Networks, Inc. |
---|---|
Organisation name | Ericsson Data Backbone and Optical Networks, Inc. |
Short name or acronym | Ericsson Data Backbone and Optical Networks, Inc. |
Organisation type | Company |
Activity type | Call centers Speech technology |
Address | 77 South Bedford Street |
Postal Code | 01803 |
City | Burlington, MA |
Country | United States |
Phone | + |
Fax | + |
dninfo_(on)_ericsson.com | |
Organisation URL | http://www.ericsson.com/datacom/ |
Logo | Description |
![]() |
Ericsson is leading the transformation of today's networks into high-performance, data-optimized, seamlessly mobile and ultra-resilient systems - the future of the New Telecoms World. The unmatched breadth of Ericsson's solutions portfolio spans from network infrastructures and mobile terminals to powerful management tools and advanced Internet applications. Ericsson Datacom delivers the solutions that operators need to build new public data networks. We offer IP and ATM infrastructure solutions for carrier core networks, IP aggregation solutions for service provider points-of-presence, access platforms for narrowband and broadband communications, and edge solutions for large and small enterprises. We enable new applications such as IP Telephony and Virtual Private Networking, and our carrier-class management solutions put total control of these sophisticated networks in the operator's hands. |
Contact | |
Name | |
Function | |
Department | |
Phone | + |
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" |