summaryrefslogtreecommitdiff
path: root/accel-pppd/extra
AgeCommit message (Collapse)Author
2014-07-11make IPv4 address to string conversions endian friendlyDmitry Kozlov
2014-05-081.7.4 releaseDmitry Kozlov
* fixed various bugs * introduced accel-cmd program * ippool: impelented persistance * radius: implemented default-realm option * radius: proper handling of Framed-IP-Address=255.255.255.254 * shaper: time range and other fixes * shaper: implemented mtu option * net-snmp: fixed run out of FD_SETSIZE
2014-04-29net-snmp: unshare file descriptors namespaceGuillaume Nault
Use unshare(CLONE_FILES) to create a local file descriptors namespace for the SNMP thread. This is similar to what was done in bf5340 'net-snmp: run snmp in "special" thread', but without calling clone() directly. So the net-snmp plugin keeps running in a regular pthread. Signed-off-by: Guillaume Nault <g.nault@alphalink.fr>
2014-04-29Revert "net-snmp: run snmp in "special" thread"Guillaume Nault
This reverts commit f2774e5a02d29de71eb64a64565b23090b6f6c5e. snmp_thread() needs to be run as regular thread to allow Valgrind analysis. Using a different namespace for file desciptors will be done later on using unshare(). Signed-off-by: Guillaume Nault <g.nault@alphalink.fr>
2014-04-14net-snmp: run snmp in "special" threadDmitry Kozlov
NET-SNMP is built on top of stale file descriptor multiplexing mechanism (select) which prevents to use descriptors with number >= 1024. Due to accel-ppp uses a lots of descriptors NET-SNMP easy overflows this limit and fails and even may crash whole accel-ppp process. This patch runs snmp in special thread which does not share file descritor table with main process, so it can use less descriptors and live in __FD_SETSIZE limit. Signed-off-by: Dmitry Kozlov <xeb@mail.ru>
2013-09-03snmp: properly terminate snmp threadDmitry Kozlov
2013-05-14ippool: add cli command to remove persist entriesKozlov Dmitry
2013-03-18ippool: impelented persistanceKozlov Dmitry
2012-12-26cmake: use CMAKE_FIND_ROOT_PATH and LIB_SUFFIXKozlov Dmitry
2012-11-20chap-secrets: implemented encryptionKozlov Dmitry
2012-11-16ippool: fixed initialization orderKozlov Dmitry
2012-11-03pppd_compat: set rpath to locate depending librariesKozlov Dmitry
2012-09-05add missing netlink libraryKozlov Dmitry
2012-09-05Fix format string errorsGuillaume Nault
Fix several errors and compiler warnings in format string arguments. Signed-off-by: Guillaume Nault <g.nault@alphalink.fr>
2012-09-05gather interface statistics via netlinkKozlov Dmitry
2012-07-30add per-CTRL ip-pool option to specify default ip pool nameKozlov Dmitry
2012-06-04ippool: fixed config parsingKozlov Dmitry
2012-05-15shaper: implemented leaf qdisc attachmentKozlov Dmitry
2012-05-14pppd_compat: use EV_PPP_PRE_FINISHED event to start ip-down script (fixes ↵Kozlov Dmitry
unexpected radattr file removal)
2012-04-30ippool: implemented vendor/attr options to specify which radius attribute ↵Kozlov Dmitry
containes pool name
2012-03-22pppd_compat: fix ip-pre-up script result handlingKozlov Dmitry
2012-03-15pppd_compat: fix ip-down segfaultKozlov Dmitry
2012-01-31changed modules load priorityKozlov Dmitry
2012-01-22implemented advanced shaperKozlov Dmitry
2012-01-19connlimit: if burst timeout was detected don't increase burst counterKozlov Dmitry
2012-01-19connlimit: check for burst timeout before check burst counterKozlov Dmitry
2012-01-18implemented connlimit module which can be used to reduce system overload due ↵Kozlov Dmitry
to flood of connections
2012-01-18add missing install rule for logwtmpKozlov Dmitry
2012-01-18implemented logwtmpKozlov Dmitry
2011-12-27snmp: implemneted new node (ACCEL-PPP-MIB::cli.0) which can be used to send ↵Kozlov Dmitry
cli commands
2011-12-27radius, ippool: implemented Framed-Pool attributeKozlov Dmitry
2011-12-09pppd_compat: fix potential race conditionKozlov Dmitry
2011-09-20shaper_tbf: install temporary shaper in pre-up phaseKozlov Dmitry
2011-09-19shaper_tbf: fix temporary rate change functionalityKozlov Dmitry
2011-09-03implemented crypto library selection: -DCRYPTO=OPENSSL|TOMCRYPT|INTERNAL ↵Kozlov Dmitry
(default OPENSSL)
2011-08-30net-snmp: NETSNMP_PREFIX option to locate net-snmp library at different locationKozlov Dmitry
2011-08-29fix incorrect ppp_terminate callsKozlov Dmitry
2011-08-29ipv6pool: implemented prefix delegation supportKozlov Dmitry
2011-08-28ipv6: initial dhcpv6 supportKozlov Dmitry
2011-08-25add missing ipv6pool installation ruleKozlov Dmitry
2011-08-24ipv6pool: fix incorrect item initializationKozlov Dmitry
2011-08-23radius: ipv6 supportDmitry Kozlov
2011-08-23ppp: ipv6: multiple prefixes, route option, rdnss option implementationKozlov Dmitry
2011-08-23ppp: Neighbor Discovery for IP version 6 (prefix only)Kozlov Dmitry
2011-08-22extra: ipv6pool moduleKozlov Dmitry
2011-08-20Merge branch 'ipv6'Dmitry Kozlov
2011-08-19snmp supportKozlov Dmitry
2011-08-16chap-secrets: fix incorrect ip address assigningKozlov Dmitry
2011-06-22shaper_tbf: do explicit locking over nl_socket_alloc/nl_socket_free due to ↵Kozlov Dmitry
this functions are not thread-safe
2011-06-08changed module init sequenceDmitry Kozlov