/usr/share/doc/kamailio/examples/snmp.cfg is in kamailio 4.0.4-1ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | #
# $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");
}
|