CentOS 6
Sponsored Link

MRTG : インストール2015/01/25

 
MRTG (Multi Router Traffic Grapher) をインストールし、ネットワークの送受信データをグラフで閲覧できるよう設定します。
[1]
[2] MRTG, SNMP をインストールします。
[root@dlp ~]#
yum -y install net-snmp net-snmp-utils mrtg
[3] SNMP (Simple Network Management Protocol) を設定します。
[root@dlp ~]#
vi /etc/snmp/snmpd.conf
# 41行目:コメントにする

#
com2sec notConfigUser   default       public
# 74,75行目:コメント解除して変更

# mynetwork は自ネットワークに変更

# コミュニティ名は public, private 以外に変更

com2sec local     localhost    
Serverworld

com2sec mynetwork    
10.0.0.0/24     Serverworld
# 78,79行目:コメント解除

group MyRWGroup  any        local
group MyROGroup  any        mynetwork

# 85行目:コメント解除

view all    included  .1                 80

# 93,94行目:コメント解除

access MyROGroup ""      any       noauth    0      all    none   none
access MyRWGroup ""      any       noauth    0      all    all    all

[root@dlp ~]#
/etc/rc.d/init.d/snmpd start

Starting snmpd: [ OK ]
[root@dlp ~]#
chkconfig snmpd on
# 動作確認 (「Serverworld」の箇所は設定したコミュニティ名)

[root@dlp ~]#
snmpwalk -v2c -c Serverworld localhost system

SNMPv2-MIB::sysDescr.0 = STRING: Linux dlp.srv.world 2.6.32-504.3.3.el6.x86_64 #1 SMP 
Wed Dec 17 01:55:02 UTC 2014 x86_64
SNMPv2-MIB::sysObjectID.0 = OID: NET-SNMP-MIB::netSnmpAgentOIDs.10
DISMAN-EVENT-MIB::sysUpTimeInstance = Timeticks: (168142) 0:28:01.42
...
...
SNMPv2-MIB::sysORUpTime.7 = Timeticks: (4) 0:00:00.04
SNMPv2-MIB::sysORUpTime.8 = Timeticks: (4) 0:00:00.04
[4] MRTG の設定です。
[root@dlp ~]#
cfgmaker --ifref=descr --ifdesc=descr Serverworld@10.0.0.30 > /etc/mrtg/mrtg.cfg

[root@dlp ~]#
vi /etc/mrtg/mrtg.cfg
# 9行目:追記

WorkDir: /var/www/mrtg
# 16行目:コメント解除

Options[_]: growright, bits
# 73行目あたり:以下のようにコメント解除されていることを確認

Target[10.0.0.30_eth0]: \eth0:Serverworld@10.0.0.30:
SetEnv[10.0.0.30_eth0]: MRTG_INT_IP="10.0.0.30" MRTG_INT_DESCR="eth0"
MaxBytes[10.0.0.30_eth0]: 125000000
Title[10.0.0.30_eth0]: eth0 -- dlp.srv.world
PageTop[10.0.0.30_eth0]: <h1>eth0 -- dlp.srv.world</h1>
# mrtg を3回手動実行 (過去ファイルを処理するため初回は 2回目実行分まで警告が出る)

[root@dlp ~]#
for (( i=1 ; i <= 3 ; i++ )); do env LANG=C mrtg /etc/mrtg/mrtg.cfg; done

2015-01-25 21:33:23, Rateup WARNING: /usr/bin/rateup could not read the primary log file for 10.0.0.30_eth0
2015-01-25 21:33:23, Rateup WARNING: /usr/bin/rateup The backup log file for 10.0.0.30_eth0 was invalid as well
2015-01-25 21:33:23, Rateup WARNING: /usr/bin/rateup Can't remove 10.0.0.30_eth0.old updating log file
2015-01-25 21:33:23, Rateup WARNING: /usr/bin/rateup Can't rename 10.0.0.30_eth0.log to 10.0.0.30_eth0.old updating log file
2015-01-25 21:33:23, Rateup WARNING: /usr/bin/rateup Can't remove 10.0.0.30_eth0.old updating log file
# インデックスファイル作成

[root@dlp ~]#
indexmaker --columns=1 /etc/mrtg/mrtg.cfg > /var/www/mrtg/index.html
# 以後は Cron 設定で 5分おきに自動更新される

[root@dlp ~]#
cat /etc/cron.d/mrtg

*/5 * * * * root LANG=C LC_ALL=C /usr/bin/mrtg /etc/mrtg/mrtg.cfg --lock-file /var/lock/mrtg/mrtg_l --confcache-file /var/lib/mrtg/mrtg.ok
[5] ローカルホスト以外からも MRTG のグラフが閲覧できるよう httpd を設定します。
[root@dlp ~]#
vi /etc/httpd/conf.d/mrtg.conf
# 11行目:アクセス許可する範囲を追記

Allow from 127.0.0.1
10.0.0.0/24
[root@dlp ~]#
/etc/rc.d/init.d/httpd restart

Stopping httpd: [  OK  ]
Starting httpd: [  OK  ]
[6] 任意のアクセス許可したネットワーク内のクライアントから「http://(MRTGサーバー名またはIPアドレス)/mrtg/」にアクセスすると、 以下のようにネットワークトラフィック量が閲覧できます。
関連コンテンツ