[packages] net-snmp: Enable UDP IPv6 transport (closes #5338)

git-svn-id: svn://svn.openwrt.org/openwrt/packages@16812 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
acinonyx 2009-07-12 15:37:48 +00:00
parent 2fc1f95dab
commit 09e52cc3c8
3 changed files with 14 additions and 3 deletions

View File

@ -141,15 +141,16 @@ SNMP_MIB_MODULES_EXCLUDED = \
udp-mib \
utilities \
SNMP_TRANSPORTS_INCLUDED = Callback UDP
SNMP_TRANSPORTS_INCLUDED = Callback UDP UDPIPv6
SNMP_TRANSPORTS_EXCLUDED = TCP TCPv6 UDPv6 Unix
SNMP_TRANSPORTS_EXCLUDED = TCP TCPIPv6 Unix
TARGET_CFLAGS += $(FPIC)
CONFIGURE_ARGS += \
--enable-shared \
--enable-static \
--enable-ipv6 \
--with-endianness=little \
--with-logfile=/var/log/snmpd.log \
--with-persistent-directory=/usr/lib/snmp/ \
@ -158,7 +159,6 @@ CONFIGURE_ARGS += \
--with-sys-location=Unknown \
--enable-applications \
--disable-debugging \
--disable-ipv6 \
--disable-manuals \
--disable-mibs \
--disable-scripts \

View File

@ -1,3 +1,6 @@
config agent
option agentaddress UDP:161
config com2sec public
option secname ro
option source default

View File

@ -9,6 +9,13 @@ RUN_D=/var/run
PID_F=$RUN_D/snmpd.pid
RUN_C=$RUN_D/snmpd.conf
snmpd_agent_add() {
local cfg="$1"
config_get agentaddress "$cfg" agentaddress
[ -n "$agentaddress" ] || return 0
echo "agentaddress $agentaddress" >> $RUN_C
}
snmpd_system_add() {
local cfg="$1"
config_get syslocation "$cfg" sysLocation
@ -110,6 +117,7 @@ start() {
config_load snmpd
config_foreach snmpd_agent_add agent
config_foreach snmpd_system_add system
config_foreach snmpd_com2sec_add com2sec
config_foreach snmpd_group_add group