12345678910111213141516171819202122 |
- #
- # $Id $
- ##
- # Simple configuration file to test SNMP module. Read
- # modules/snmp/doc/README,SNMP-HOWTO,HOWTO if you want
- # to know more
- ##
- # where the stats will be dumped upon receipt of SIG_USR1
- # File is opened/closed when signal is received, and stats
- # are appended to it
- statistics="/tmp/statsfile.ser"
- # should load snmp first, so that other modules can register
- # their handlers
- loadmodule "/usr/lib/ser/modules/snmp.so"
- loadmodule "/usr/lib/ser/modules/print.so"
- loadmodule "/usr/lib/ser/modules/sl.so"
- route {
- sl_send_reply("600", "Busy, busy");
- }
|