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?
| M | T | W | T | F | S | S |
|---|---|---|---|---|---|---|
| « Oct | ||||||
| 1 | 2 | 3 | 4 | |||
| 5 | 6 | 7 | 8 | 9 | 10 | 11 |
| 12 | 13 | 14 | 15 | 16 | 17 | 18 |
| 19 | 20 | 21 | 22 | 23 | 24 | 25 |
| 26 | 27 | 28 | 29 | 30 | 31 | |
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?
If you have a Barracuda Spam Firewall, there is a hidden tab in the management GUI that allows modification of some additional advanced parameters.
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
