短いですが、前回の続き。
前回、 MRTG でグラフ化するデータを取得するために SNMP のパッケージも入れました。
インストールすだけで起動しているので見てみます。
$ netstat -lun Active Internet connections (only servers) Proto Recv-Q Send-Q Local Address Foreign Address State udp 0 0 127.0.0.1:161 0.0.0.0:*
このように UDP 127.0.0.1 で待機しています。
サーバ内部で使用する場合はこれでも良いのですが 別のサーバからも SNMP にアクセスすることを 考えて設定を変更します。
SNMP の設定ファイルを編集します。
$ sudo vi /etc/snmp/snmpd.conf
これを。
# Listen for connections from the local system only agentAddress udp:127.0.0.1:161
こうします。
# Listen for connections from the local system only agentAddress udp:161
あとはサービスを再起動。
$ sudo /etc/init.d/snmpd restart
これで別サーバからもアクセスできるようになりました。
$ netstat -lun Active Internet connections (only servers) Proto Recv-Q Send-Q Local Address Foreign Address State udp 0 0 0.0.0.0:161 0.0.0.0:*
今回はここまで。