반응형
nload 사용법
nload는 터미널에서 네트워크 트래픽을 실시간으로 모니터링하는 도구입니다.
1. nload 설치
- Ubuntu 시스템
sudo apt-get install nload
- CentOS 시스템
sudo yum install nload
2. nload 명령어의 기본 사용 구문 및 옵션
nload [options]
$ nload -h
nload version 0.7.4
Copyright (C) 2001 - 2012 by Roland Riegel <feedback@roland-riegel.de>
nload comes with ABSOLUTELY NO WARRANTY. This is free software, and you are
welcome to redistribute it under certain conditions. For more details see the
GNU General Public License Version 2 (http://www.gnu.org/copyleft/gpl.html).
Command line syntax:
nload [options] [devices]
nload --help|-h
Options:
-a period Sets the length in seconds of the time window for average
calculation.
Default is 300.
-i max_scaling Specifies the 100% mark in kBit/s of the graph indicating the
incoming bandwidth usage. Ignored if max_scaling is 0 or the
switch -m is given.
Default is 10240.
-m Show multiple devices at a time; no traffic graphs.
-o max_scaling Same as -i but for the graph indicating the outgoing bandwidth
usage.
Default is 10240.
-t interval Determines the refresh interval of the display in milliseconds.
Default is 500.
-u h|b|k|m|g Sets the type of unit used for the display of traffic numbers.
H|B|K|M|G h: auto, b: Bit/s, k: kBit/s, m: MBit/s etc.
H: auto, B: Byte/s, K: kByte/s, M: MByte/s etc.
Default is h.
-U h|b|k|m|g Same as -u, but for a total amount of data (without "/s").
H|B|K|M|G Default is H.
devices Network devices to use.
Default is to use all auto-detected devices.
--help
-h Print this help.
example: nload -t 200 -i 1024 -o 128 -U M
The options above can also be changed at run time by pressing the 'F2' key.
728x90
3. nload 사용 예시
- 모든 인터페이스의 트래픽 모니터링
- 기본적으로 nload는 모든 인터페이스의 트래픽을 실시간으로 보여줍니다.
nload
- 특정 인터페이스의 트래픽 모니터링
- 특정 네트워크 인터페이스(예: eth0)의 트래픽을 모니터링합니다.
nload eth0
- 트래픽 단위 변경 (킬로바이트)
- -U 옵션을 사용하여 트래픽의 단위를 변경합니다. 위의 예시는 킬로바이트(KB) 단위로 변경하는 것입니다.
nload -U k
- 최대 속도 제한 (100Mbps)
- -m 옵션을 사용하여 최대 속도를 제한합니다. 위의 예시는 100Mbps로 제한하는 것입니다.
- 커스텀 컬러 변경 및 갱신 간격 설정
- -u, -U, -t, -A 등의 옵션을 사용하여 커스텀 컬러를 지정하고 갱신 간격을 설정합니다.
- -u: 사용자 정의 컬러 사용
- -U: 트래픽 단위 (예: k는 킬로바이트)
- -t: 갱신 간격 (밀리세컨드)
- -A: 끊김 없이 출력
- -u, -U, -t, -A 등의 옵션을 사용하여 커스텀 컬러를 지정하고 갱신 간격을 설정합니다.
nload -u M -U k -t 200 -A
- 매뉴얼 페이지 확인
man nload
nload는 이러한 간단한 명령어들로 다양한 옵션을 활용할 수 있습니다. 사용자의 환경과 요구에 맞게 옵션을 조절하여 트래픽을 효과적으로 모니터링할 수 있습니다.
참고URL
- 우분 로그 : 네트워크 트래픽을 제어하는 단말용 프로그램 Nload
728x90
반응형
'리눅스' 카테고리의 다른 글
Ansible playbook에서 현재 날짜 및 시간을 얻는 방법(ansible-playbook) (0) | 2024.01.03 |
---|---|
Nginx에서 로그 파일을 생성하는 방법 (0) | 2024.01.02 |
bmon 사용법 (0) | 2023.12.28 |
리눅스에서 메모리 사용률이 높은 프로세스를 찾는 방법 (0) | 2023.12.28 |
자빅스 Discovery actions과 Autoregistration actions의 차이점 (0) | 2023.12.21 |