====== SNMP on voyage ====== We do pretty basic stuff, graphing only the Ethernet port's usage. For voyage that should mean: # apt-get install snmp snmpd # snmpconf -i -gbasic_setup and then copy the resulting snmpd.conf in /etc/snmp (keep note that snmpd also uses /etc/hosts.allow and not only the community settings for read / write access). I do not know whether you should change any file paths to point under /rw instead of the normal locations because we run Voyage on a generic PC with lots of disk space and mounting filesystems rw anyway. [Yiorgos Adamopoulos] Forgot to mention that this also needs Perl, so if you are booting off a CF card, this may mean that you need more than 256M [Yiorgos Adamopoulos] [K Ploited] Sometimes, "apt-get install" may not work for the first time, you may need to run #apt-get update To obtain a list of packages. Then, #apt-get install perl snmp snmpd To configure SNMP you may: Use wizard #snmpconf -i -gbasic_setup or Edit /etc/snmp/snmpd.conf #vi /etc/snmp/snmpd.conf To test whether snmpd is working or not #ps -ef | grep snmpd and #snmpwalk -v 1 -c localhost i.e. #snmpwalk -v 1 -c public localhost [K Ploited]