Reznix

Share the Knowledge

Please help support this site

October 7th, 2008

AGEE Certificate Request

 

Question

When purchasing certificates for the NetScaler/Citrix Access Gateway Enterprise Edition from the SSL certificate vendor Web site, what Web server type should you specify?

Read the rest of this entry »

June 26th, 2008

Barracuda Spam Firewall hidden tab

If you have a Barracuda Spam Firewall, there is a hidden tab in the management GUI that allows modification of some additional  advanced parameters.

Read the rest of this entry »

June 26th, 2008

Command line web connections

Question:

How can I find who is connected to my web server from the command line

Answer:

Here are the commands for http (port 80) for windows or linux

Windows:

netstat -an | find “80″

Linux:

netstat -wanutp | grep “.http”
or
netstat -an |grep :80 |wc -l

|