|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3142 ] | GoPacket Networks, Inc |
---|---|
Organisation name | GoPacket Networks, Inc |
Short name or acronym | GoPacket Networks, Inc |
Organisation type | CONVERGED NETWORKS SOLUTION COMPANY |
Activity type | |
Address | 1263, Oakmead Parkway |
Postal Code | 94085 |
City | Sunnyvale, California |
Country | United States |
Phone | + 408 737 7110 |
Fax | + 408 737 7120 |
go-info_(on)_gopacket.com | |
Organisation URL | http://www.gopacket.com |
Logo | Description |
![]() |
Making todays networks seamlessly migrate to the next generation packet networks, GoPacket Networks, a Silicon Valley start up provides the most scaleable and cost effective solution for the service providers worldwide. GoPacket RCP platforms not only provide 7 NINES reliability, but also can scale from 384 Voice/Data/Video channels at 64 kbps to 64,000 Channels. GoPacket solutions cater to the traditional Telco world as well as to the Cable and the Wireless world. With the best in class flexible architecture, GoPacket platforms users can build their TDM and packet networks for Voice, Data and Video applications most cost effectively. Using GoPacket Network's platform, service providers can: Relieve TDM network congestion Improve TDM network efficiencies Broadband access aggregation Packet Cable telephony and data applications Offer new TDM based voice and data services Implement a cost effective Class 5 switch alternative Migrate to packet-based voice solutions Deploy 100% PacketVoice carrier grade networks |
Contact | |
Name | Ms Nadia Latif |
Function | Marketing Communications |
Department | Marketing |
nadia_(on)_gopacket.com | |
Phone | + 91 80 6781612 |
Fax | + 91 80 6781847 |
![]() |
Last update: 2003-04-17 08:27:41 #!/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" |