Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-02-16 | sort flags in both synopsis and usage | Igor Sobrado | |
ok reyk@ | |||
2008-02-09 | fix a memleak in the snmp engine and the ber i/o; free the dynamically | Reyk Floeter | |
allocated ber write buffer after using it. extend the ber api with a ber_free() function to do the required cleanup. Thanks to Will Backman (bitgeist at yahoo dot com) for testing and for figuring out that there was a memleak. | |||
2008-02-08 | use correct variable for COUNTER64 | Reyk Floeter | |
2008-02-07 | add a imsg which allows to "lock" the control connection, the | Reyk Floeter | |
restricted connection will reject any commands except snmp traps. | |||
2008-02-07 | spacing | Reyk Floeter | |
2008-01-31 | some small fixes for snmp stuff; | Jason McIntyre | |
2008-01-31 | do not leak confd on malloc failure in control_accept() | Henning Brauer | |
found by Igor Zinovik <zinovik@cs.karelia.ru> | |||
2008-01-30 | spacing | Reyk Floeter | |
2008-01-24 | timeticks type | Reyk Floeter | |
2008-01-21 | add names for OpenBSD test MIBs | Reyk Floeter | |
2008-01-21 | move snmpd.conf to the etc/ directory. it is not installed yet by the build. | Reyk Floeter | |
2008-01-21 | update configuration example | Reyk Floeter | |
2008-01-21 | move README to the Attic; ask me directly if you need to know about | Reyk Floeter | |
the TODOs and remaining issues. | |||
2008-01-21 | sync | Reyk Floeter | |
2008-01-18 | free oid data before overwriting it | Reyk Floeter | |
2008-01-18 | implement very basic support of the BRIDGE-MIB which is enough to get | Reyk Floeter | |
recognized as a network device by some NMS. | |||
2008-01-18 | trap.c | Reyk Floeter | |
2008-01-18 | add a snmpctl command to send traps to registered receivers using | Reyk Floeter | |
snmpd's imsg trap interface. | |||
2008-01-17 | swap arguments | Reyk Floeter | |
2008-01-17 | the optional trap varbind elements may be null | Reyk Floeter | |
2008-01-17 | allow to configure optional per trap receiver communities and to | Reyk Floeter | |
restrict the receivers to a specified mib. | |||
2008-01-16 | send a coldStart trap to registered receivers on startup and cleanup | Reyk Floeter | |
the trap code a little bit. | |||
2008-01-16 | document the "trap receiver" option. | Reyk Floeter | |
2008-01-16 | implementation of the SNMP trap sender interface | Reyk Floeter | |
2008-01-16 | typo | Reyk Floeter | |
2008-01-16 | define correct snmpv3 version | Reyk Floeter | |
2008-01-16 | bump copyright | Reyk Floeter | |
2008-01-16 | tweak | Reyk Floeter | |
2008-01-16 | move trap code to an own file; there will be more | Reyk Floeter | |
2008-01-16 | start working on an interface to send traps via snmpd.sock. userland | Reyk Floeter | |
applications will be able to send imsgs defining the trap to snmpd and the daemon will do the ASN.1/BER encoding before sending traps to the registered receivers. there are two advantages of this approach that a) the applications do not need to handle any ASN.1/BER encoding and b) snmpd will provide a central interface to define trap receivers. discussed with thib and others | |||
2008-01-12 | unbreak DEBUG code | Reyk Floeter | |
2008-01-11 | rename snmp context type enum elements | Reyk Floeter | |
2008-01-09 | big endian fixes (tested on sparc64) | Reyk Floeter | |
2008-01-09 | sync | Reyk Floeter | |
2008-01-04 | document the -n and -N command line options. | Reyk Floeter | |
2008-01-04 | always bzero the oid lookup key before initializing it. | Reyk Floeter | |
2008-01-03 | send the correct length | Reyk Floeter | |
2008-01-03 | handle no more than 2147483647 (0x7fffffff) variable bindings | Reyk Floeter | |
From RFC3416 | |||
2008-01-03 | scalars have an index of 0 in the returned oid (like sysDescr.0). | Reyk Floeter | |
2008-01-03 | fix parsing of get* requests with multiple varbind elements | Reyk Floeter | |
2008-01-02 | Make sure that a key belongs to the table before returning a match. | Mats O Jansson | |
Change smi_odi_cmp to return int as expected by RB-tree. -moj ok reyk@ | |||
2007-12-29 | add the IP-MIB ipAddrTable. it requires to encode the ipv4 addresses | Reyk Floeter | |
in the OIDs as the table index. the next step is to simplify the common mib implementation regarding the special requirements of these strange snmp tables. | |||
2007-12-28 | shrink the max number of supported OID elements from 128 to 32. | Reyk Floeter | |
2007-12-28 | set the default port in host byte order to get the correct result | Reyk Floeter | |
2007-12-28 | sync | Reyk Floeter | |
2007-12-28 | split code handling the "structure of management information" and the | Reyk Floeter | |
"message processing subsystem" into separate files smi.c and mps.c | |||
2007-12-28 | split the MIB declarations (names) from the definitions (implementation). | Reyk Floeter | |
2007-12-28 | spacing | Reyk Floeter | |
2007-12-28 | use the snmp camelCase for MIB definitions, this allows to simplify | Reyk Floeter | |
the code a bit and is mostly a stylistic change. | |||
2007-12-27 | Make a snmpwalk against snmpd on hppa and macppc work. armish still dont | Mats O Jansson | |
work. -moj |