mirror of
https://github.com/openwrt/routing.git
synced 2026-07-14 09:24:48 +04:00
4d62e08852
20 August 2019: babeld-1.9.1
* Fixed a crash that could happen when unicast and RTT estimation are
both enabled on an interface. Thanks to Dave Taht.
* Fixed compilation under BSD. Thanks to Dave Taht.
4 August 2019: babeld-1.9.0
* Reworked buffering of unicast packets to use a per-neighbour buffer
rather than a single buffer per interface. This makes unicast as
efficient as multicast, at the cost of slightly higher memory usage.
* Added option "unicast" that allows sending most TLVs over unicast.
This is necessary for the DTLS extension.
* Implemented parsing of unicast Hellos. This makes it possible to
interoperate with neighbours that only speak unicast (e.g. over some
kinds of tunnels that only do unicast).
* Implemented sending of unscheduled unicast Hellos. This makes the
RTT extension work over unicast too.
* Reworked the xroute data structures to use binary search and
linear-time comparison.
* Don't attempt to modify the rp_filter sysctl if it already has the
desired value; this makes it possible to run babeld in an
unpriviledged container. Thanks to Christof Schulze.
* Reinstated logging of late hellos. Thanks to Dave Taht.
* Don't send wildcard requests or Hellos to newish nodes. This makes
acquisition of new neighbours slower, but drastically reduces noise at
startup. Thanks to Teco Boot.
* Remove an arbitrary limit on the number of interfaces. Thanks to
Christof Schulze.
* Removed class E from martian filter. Thanks to Dave Taht.
* Added the ability to set the preferred source address in install filters.
Thanks to Killian Lufau.
* Fixed a number of read-only buffer overflows. Thanks to Leo Stefanesco.
Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
65 lines
1.8 KiB
Makefile
65 lines
1.8 KiB
Makefile
#
|
|
# Copyright (C) 2007-2009 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=babeld
|
|
PKG_VERSION:=1.9.1
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=https://www.irif.fr/~jch/software/files/
|
|
PKG_HASH:=1e1b3c01dd929177bc8d027aff1494da75e1e567e1f60df3bb45a78d5f1ca0b4
|
|
|
|
PKG_MAINTAINER:=Gabriel Kerneis <gabriel@kerneis.info>, \
|
|
Baptiste Jonglez <openwrt-pkg@bitsofnetworks.org>
|
|
PKG_LICENSE:=MIT
|
|
PKG_LICENSE_FILES:=LICENSE
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/babeld
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
SUBMENU:=Routing and Redirection
|
|
TITLE:=A loop-free distance-vector routing protocol
|
|
URL:=https://www.irif.fr/~jch/software/babel/
|
|
DEPENDS:=@IPV6
|
|
endef
|
|
|
|
define Package/babeld/description
|
|
Babel is a loop-avoiding distance-vector routing protocol roughly based
|
|
on DSDV and AODV, but with provisions for link cost estimation and
|
|
redistribution of routes from other routing protocols.
|
|
While it is optimised for wireless mesh networks, Babel will also work
|
|
efficiently on wired networks. It will generate between 1.2 and 2.4 times
|
|
the amount of routing traffic that RIPng would generate, while
|
|
never counting to infinity.
|
|
endef
|
|
|
|
define Package/babeld/conffiles
|
|
/etc/babeld.conf
|
|
/etc/config/babeld
|
|
endef
|
|
|
|
MAKE_FLAGS+= \
|
|
CFLAGS="$(TARGET_CFLAGS)" \
|
|
LDLIBS="" \
|
|
|
|
define Package/babeld/install
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/babeld $(1)/usr/sbin/
|
|
$(INSTALL_DIR) $(1)/etc
|
|
$(INSTALL_CONF) ./files/babeld.conf $(1)/etc/
|
|
$(INSTALL_DIR) $(1)/etc/config
|
|
$(INSTALL_CONF) ./files/babeld.config $(1)/etc/config/babeld
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
$(INSTALL_BIN) ./files/babeld.init $(1)/etc/init.d/babeld
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,babeld))
|