http 80 포트 연결된 상태 갯수 조회
netstat -nap | grep :80 | grep ESTABLISHED | wc -l
https 443 포트 연결된 상태 갯수 조회
netstat -nap | grep :443 | grep ESTABLISHED | wc -l
공간나눔
http 80 포트 연결된 상태 갯수 조회
netstat -nap | grep :80 | grep ESTABLISHED | wc -l
https 443 포트 연결된 상태 갯수 조회
netstat -nap | grep :443 | grep ESTABLISHED | wc -l
Be First to Comment