시간 경과에 따른 네트워크 트래픽 측정

시간 경과에 따른 네트워크 트래픽 측정

내 컴퓨터가 얼마나 많은 네트워크 트래픽을 사용하고 있는지, 즉 30GB의 전송 한도가 너무 적은지 알고 싶습니다. 그것을 측정하는 가장 좋은 도구는 무엇입니까?

리눅스 민트 17 사용하기

답변1

vnstat는 CLI 옵션입니다. vnstat는 CLI에서 쿼리할 수 있는 데몬 프로세스로 실행될 수 있습니다.

apt-get install -y vnstat # install the software
vnstat -u -i eth0 # enable monitoring of eth0 by default
service vnstat restart # this may not work on Mint, I don't have a system to test with, but it does work on CentOS
vnstat -h # show per-hour breakdown of traffic for the past 24 hours

관련 정보