提交 904bc0f9 编写于 作者: D Dmitry Kozlov

1.9.0 release

* radius: major improvments
* radius: use NAS-Port-Id in Access-Accept for interface renaming
* radius: introduced "weight" and "backup" per-server options
* radius: introduced "attr-tunnel-type" option
* radius: introduced "max-fail" option
* ipoe: introduced "ip-unnumbered" option
* ipoe: improved vlan monitor
* ipoe: introduced "attr-dhcp-lease-time" option
* ipoe: send option 82 from DHCP request to radius
* ipoe: fixed passing packets in 'redirect on reject' mode
* ipoe: implemented handling relayed DHCP clients
* ipoe: implemented "L4 redirect on reject" for DHCP sessions
* ipoe: implemneted ability to send L4 redirect table/L4 redirect ipset via radius attributes
* pppoe: introduced "called-sid" option
* pppoe: improved AC-Cookie mechanism
* ippool: introduced "shuffle" option
* core: improved "single-session=replace" handling
* shaper: apply rate multiplier to integer values
* shaper: implemented fq_codel leaf qdisc
* shaper: fixed passing quantum parameter to kernel
* shaper: introduced "moderate-quantum" option
* shaper: introduced "fwmark" option
* ipv6: add support for prefixes greater than 64
* ppp: make LCP magic number negotiation not mandatory
* ppp: implement address/control and protocol field compression
* ppp: implemented delayed unit close via unit cache
* pppd_compat: pass IPV6_PREFIX and IPV6_DELEGATED_PREFIX to ip-up/ip-down scripts
* cli: introduced verbose option
上级 8780e9b1
...@@ -30,7 +30,7 @@ IF (EXISTS ${CMAKE_HOME_DIRECTORY}/.git AND NOT IGNORE_GIT) ...@@ -30,7 +30,7 @@ IF (EXISTS ${CMAKE_HOME_DIRECTORY}/.git AND NOT IGNORE_GIT)
) )
STRING(STRIP ${ACCEL_PPP_VERSION} ACCEL_PPP_VERSION) STRING(STRIP ${ACCEL_PPP_VERSION} ACCEL_PPP_VERSION)
ELSE (EXISTS ${CMAKE_HOME_DIRECTORY}/.git AND NOT IGNORE_GIT) ELSE (EXISTS ${CMAKE_HOME_DIRECTORY}/.git AND NOT IGNORE_GIT)
SET (ACCEL_PPP_VERSION 1.8.0) SET (ACCEL_PPP_VERSION 1.9.0)
ENDIF (EXISTS ${CMAKE_HOME_DIRECTORY}/.git AND NOT IGNORE_GIT) ENDIF (EXISTS ${CMAKE_HOME_DIRECTORY}/.git AND NOT IGNORE_GIT)
ADD_DEFINITIONS(-DACCEL_PPP_VERSION="${ACCEL_PPP_VERSION}") ADD_DEFINITIONS(-DACCEL_PPP_VERSION="${ACCEL_PPP_VERSION}")
...@@ -64,17 +64,12 @@ if (NOT BUILD_DRIVER_ONLY) ...@@ -64,17 +64,12 @@ if (NOT BUILD_DRIVER_ONLY)
add_subdirectory(accel-cmd) add_subdirectory(accel-cmd)
endif (NOT BUILD_DRIVER_ONLY) endif (NOT BUILD_DRIVER_ONLY)
if (BUILD_PPTP_DRIVER OR BUILD_DRIVER_ONLY) if (BUILD_PPTP_DRIVER)
if (BUILD_PPTP_DRIVER)
add_subdirectory(drivers/pptp) add_subdirectory(drivers/pptp)
endif (BUILD_PPTP_DRIVER) endif (BUILD_PPTP_DRIVER)
endif (BUILD_PPTP_DRIVER OR BUILD_DRIVER_ONLY)
if (BUILD_IPOE_DRIVER OR BUILD_DRIVER_ONLY) if (BUILD_IPOE_DRIVER)
if (BUILD_IPOE_DRIVER)
add_subdirectory(drivers/ipoe) add_subdirectory(drivers/ipoe)
endif (BUILD_IPOE_DRIVER) endif (BUILD_IPOE_DRIVER)
endif (BUILD_IPOE_DRIVER OR BUILD_DRIVER_ONLY)
CONFIGURE_FILE(${CMAKE_CURRENT_SOURCE_DIR}/config.h.in ${CMAKE_CURRENT_BINARY_DIR}/config.h) CONFIGURE_FILE(${CMAKE_CURRENT_SOURCE_DIR}/config.h.in ${CMAKE_CURRENT_BINARY_DIR}/config.h)
...@@ -15,12 +15,13 @@ auth_chap_md5 ...@@ -15,12 +15,13 @@ auth_chap_md5
auth_pap auth_pap
radius radius
#chap-secrets
ippool ippool
sigchld
pppd_compat pppd_compat
#shaper #shaper
#chap-secrets
#net-snmp #net-snmp
#logwtmp #logwtmp
#connlimit #connlimit
......
INCLUDE(InstallRequiredSystemLibraries) INCLUDE(InstallRequiredSystemLibraries)
SET(CPACK_PACKAGE_VERSION_MAJOR "1") SET(CPACK_PACKAGE_VERSION_MAJOR "1")
SET(CPACK_PACKAGE_VERSION_MINOR "8") SET(CPACK_PACKAGE_VERSION_MINOR "9")
SET(CPACK_PACKAGE_VERSION_PATCH "0") SET(CPACK_PACKAGE_VERSION_PATCH "0")
SET(CPACK_PACKAGE_NAME "accel-ppp") SET(CPACK_PACKAGE_NAME "accel-ppp")
......
...@@ -2121,7 +2121,7 @@ static int __init ipoe_init(void) ...@@ -2121,7 +2121,7 @@ static int __init ipoe_init(void)
{ {
int err, i; int err, i;
printk("IPoE session driver v1.8.0.3\n"); printk("IPoE session driver v1.9.0\n");
/*err = register_pernet_device(&ipoe_net_ops); /*err = register_pernet_device(&ipoe_net_ops);
if (err < 0) if (err < 0)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册