Linux mrtg configure how to
作者 佚名技术
来源 Linux系统
浏览
发布时间 2012-05-17
group MyROGroup usm mynetwork Again scroll down bit and locate following line: Find line: view systemview included system Replace with: view all included .1 80 Again scroll down bit and change: Find line: access notConfigGroup "" any noauth exact systemview none none Replace with: access MyROGroup "" any noauth exact all none none access MyRWGroup "" any noauth exact all all none Scroll down bit and change: Find lines: syslocation Unknown (edit /etc/snmp/snmpd.conf) syscontact Root (configure /etc/snmp/snmp.local.conf) Replace with (make sure you supply appropriate values): syslocation Linux (RH3_UP2), Home Linux Router.
syscontact Vivek G Gite <[email]vivek@nixcraft.com[/email]> For your convenient, here is my /etc/snmp/snmpd.conf file. Feel free to use this file. Make sure you make backup of your existing file if you use this file as it is. Start your snmp server and test it: (a) Make sure when linux comes up snmpd always starts: # chkconfig snmpd on (b) Make sure service start whenever Linux comes up (after reboot): # service snmpd start (c) Finally test your snmp server: # snmpwalk -v 1 -c public localhost IP-MIB::ipAdEntIfIndex Step # 4 : Install mrtg if not installed Mrtg software may install during initial installation; you can verify if MRTG installed or not with following RPM command: rpm -qa | grep mrtg If mrtg already installed please see step # 5; else use rpmfind.net to find MRTG rpm or up2date command to install MRTG software: # up2date -v -i mrtg Fedora Linux user can use yum command as follows to install MRTG: # yum install mrtg Step # 5 : Commands to Configure mrtg (a) Create document root to store mrtg graphs/html pages: # mkdir -p /var/www/html/mymrtg/ (b) Run any one of the following cfgmaker command to create mrtg configuration file: #cfgmaker --global ''WorkDir: /var/www/html/mymrtg'' --output /etc/mrtg/mymrtg.cfg public@localhost or (make sure your FQDN resolves, in following example i''m using rh9.test.com which is my router FQDN address) # cfgmaker --global ''WorkDir: /var/www/html/mymrtg'' --output /etc/mrtg/mymrtg1.cfg [email]public@rh9.test.com[/email] (c) Create default index page for your MRTG configuration: # indexmaker --output=/var/www/html/mymrtg/index.html /etc/mrtg/mymrtg.cfg (d) Copy all tiny png files to your mrtg path: # cp -av /var/www/html/mrtg/*.png /var/www/html/mymrtg/ Step # 6 First test run of mrtg (a) Run mrtg command from command line with your configuration file: # mrtg /etc/mrtg/mymrtg.cfg
Note: You may get few warning message for first time; ignore them. (b) Fire your favorite web browser (like FireFox :D ) and type url [url]http://www.your.com/mymrtg/[/url] or [url]http://your-ip/mymrtg/[/url] Step # 7 Create crontab entry so that mrtg graph / images get generated every 5 minutes (a) Login as a root user or login as a mrtg user and type following command: # crontab -e (b) Add mrtg cron j |
||
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
上一篇: 关于C语言中getopt()函数的使用方法下一篇: Linux系统存储交换机日志
关于Linux mrtg configure how to的所有评论