HTTP 80 üzerinden sağlanmış toplam bağlantı sayısını gösterir.
for http in `netstat -antp | awk ‘{if($4 ~/80/) print $0}’ | uniq | sort -k 5 | wc -l`
do
echo Total HTTP Connection: $http
done
HTTP 80 üzerinden sağlanmış toplam bağlantı sayısını gösterir.
for http in `netstat -antp | awk ‘{if($4 ~/80/) print $0}’ | uniq | sort -k 5 | wc -l`
do
echo Total HTTP Connection: $http
done