package/net/olsrd:
- build arprefresh plugin too - introduce new 6and4 mode to allow both ipv4 and ipv6 olsrd instances at the same time - fix incorrect quoting for the Ip6AddrType parameter - bump package revision patch from Alina Friedrichsen - thanks! git-svn-id: svn://svn.openwrt.org/openwrt/packages@13286 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
fede4dec48
commit
3f528d97bd
@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk
|
|||||||
|
|
||||||
PKG_NAME:=olsrd
|
PKG_NAME:=olsrd
|
||||||
PKG_VERSION:=0.5.6-r2
|
PKG_VERSION:=0.5.6-r2
|
||||||
PKG_RELEASE:=1
|
PKG_RELEASE:=2
|
||||||
|
|
||||||
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)/
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)/
|
||||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
||||||
@ -26,7 +26,6 @@ define Package/olsrd/template
|
|||||||
CATEGORY:=Network
|
CATEGORY:=Network
|
||||||
TITLE:=OLSR (Optimized Link State Routing) daemon
|
TITLE:=OLSR (Optimized Link State Routing) daemon
|
||||||
URL:=http://www.olsr.org/
|
URL:=http://www.olsr.org/
|
||||||
MENU:=1
|
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/olsrd
|
define Package/olsrd
|
||||||
@ -36,7 +35,13 @@ define Package/olsrd
|
|||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/olsrd/conffiles
|
define Package/olsrd/conffiles
|
||||||
/etc/olsrd.conf
|
/etc/config/olsrd
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Package/olsrd-mod-arprefresh
|
||||||
|
$(call Package/olsrd/template)
|
||||||
|
DEPENDS:=olsrd
|
||||||
|
TITLE:=Kernel ARP cache refresh plugin
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/olsrd-mod-dot-draw
|
define Package/olsrd-mod-dot-draw
|
||||||
@ -60,7 +65,7 @@ endef
|
|||||||
define Package/olsrd-mod-dyn-gw-plain
|
define Package/olsrd-mod-dyn-gw-plain
|
||||||
$(call Package/olsrd/template)
|
$(call Package/olsrd/template)
|
||||||
DEPENDS:=olsrd
|
DEPENDS:=olsrd
|
||||||
TITLE:=Simplified and more efficient dynamic internet gateway plugin by Sven-Ola Tuecke
|
TITLE:=Dynamic internet gateway plain plugin
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/olsrd-mod-httpinfo
|
define Package/olsrd-mod-httpinfo
|
||||||
@ -109,20 +114,24 @@ define Build/Compile
|
|||||||
MANDIR="$(PKG_INSTALL_DIR)/usr/share/man" \
|
MANDIR="$(PKG_INSTALL_DIR)/usr/share/man" \
|
||||||
STRIP="true" \
|
STRIP="true" \
|
||||||
INSTALL_LIB="true" \
|
INSTALL_LIB="true" \
|
||||||
SUBDIRS="bmf dot_draw dyn_gw dyn_gw_plain httpinfo nameservice secure txtinfo" \
|
SUBDIRS="arprefresh bmf dot_draw dyn_gw dyn_gw_plain httpinfo nameservice secure txtinfo" \
|
||||||
all libs install install_libs
|
all libs install install_libs
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/olsrd/install
|
define Package/olsrd/install
|
||||||
$(INSTALL_DIR) $(1)/etc/config
|
$(INSTALL_DIR) $(1)/etc/config
|
||||||
$(INSTALL_DATA) ./files/olsrd.config $(1)/etc/config/olsrd
|
$(INSTALL_DATA) ./files/olsrd.config $(1)/etc/config/olsrd
|
||||||
$(INSTALL_DATA) $(PKG_BUILD_DIR)/src/cfgparser/olsrd.conf.example $(1)/etc/olsrd.conf
|
|
||||||
$(INSTALL_DIR) $(1)/usr/sbin
|
$(INSTALL_DIR) $(1)/usr/sbin
|
||||||
$(INSTALL_BIN) $(PKG_BUILD_DIR)/olsrd $(1)/usr/sbin/
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/olsrd $(1)/usr/sbin/
|
||||||
$(INSTALL_DIR) $(1)/etc/init.d
|
$(INSTALL_DIR) $(1)/etc/init.d
|
||||||
$(INSTALL_BIN) ./files/olsrd.init $(1)/etc/init.d/olsrd
|
$(INSTALL_BIN) ./files/olsrd.init $(1)/etc/init.d/olsrd
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
define Package/olsrd-mod-arprefresh/install
|
||||||
|
$(INSTALL_DIR) $(1)/usr/lib
|
||||||
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/lib/arprefresh/olsrd_arprefresh.so.* $(1)/usr/lib/
|
||||||
|
endef
|
||||||
|
|
||||||
define Package/olsrd-mod-dot-draw/install
|
define Package/olsrd-mod-dot-draw/install
|
||||||
$(INSTALL_DIR) $(1)/usr/lib
|
$(INSTALL_DIR) $(1)/usr/lib
|
||||||
$(INSTALL_BIN) $(PKG_BUILD_DIR)/lib/dot_draw/olsrd_dot_draw.so.* $(1)/usr/lib/
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/lib/dot_draw/olsrd_dot_draw.so.* $(1)/usr/lib/
|
||||||
@ -166,6 +175,7 @@ define Package/olsrd-mod-txtinfo/install
|
|||||||
endef
|
endef
|
||||||
|
|
||||||
$(eval $(call BuildPackage,olsrd))
|
$(eval $(call BuildPackage,olsrd))
|
||||||
|
$(eval $(call BuildPackage,olsrd-mod-arprefresh))
|
||||||
$(eval $(call BuildPackage,olsrd-mod-dot-draw))
|
$(eval $(call BuildPackage,olsrd-mod-dot-draw))
|
||||||
$(eval $(call BuildPackage,olsrd-mod-bmf))
|
$(eval $(call BuildPackage,olsrd-mod-bmf))
|
||||||
$(eval $(call BuildPackage,olsrd-mod-dyn-gw))
|
$(eval $(call BuildPackage,olsrd-mod-dyn-gw))
|
||||||
|
@ -5,7 +5,7 @@ START=50
|
|||||||
|
|
||||||
OLSRD_OLSRD_SCHEMA='ignore:internal config_file:internal DebugLevel=0 IpVersion=4 AllowNoInt:bool=1 Pollrate=0.025 TcRedundancy=2 MprCoverage=3 LinkQualityFishEye=1 LinkQualityWinSize=100 LinkQualityDijkstraLimit=0+9.0 LinkQualityLevel=2 UseHysteresis:bool=0 FIBMetric=flat ClearScreen:bool=1 Willingness=3 LinkQualityAging=0.1 LinkQualityAlgorithm=etx_fpm'
|
OLSRD_OLSRD_SCHEMA='ignore:internal config_file:internal DebugLevel=0 IpVersion=4 AllowNoInt:bool=1 Pollrate=0.025 TcRedundancy=2 MprCoverage=3 LinkQualityFishEye=1 LinkQualityWinSize=100 LinkQualityDijkstraLimit=0+9.0 LinkQualityLevel=2 UseHysteresis:bool=0 FIBMetric=flat ClearScreen:bool=1 Willingness=3 LinkQualityAging=0.1 LinkQualityAlgorithm=etx_fpm'
|
||||||
OLSRD_IPCCONNECT_SCHEMA='ignore:internal Host:list Net:list2'
|
OLSRD_IPCCONNECT_SCHEMA='ignore:internal Host:list Net:list2'
|
||||||
OLSRD_LOADPLUGIN_SCHEMA='ignore:internal library:internal Host:list Net:list2 Ping:list redistribute:list NonOlsrIf:list name:list lat lon latlon_infile HNA:list2 hosts:list2'
|
OLSRD_LOADPLUGIN_SCHEMA='ignore:internal library:internal Host4:list Net4:list2 Host:list Net:list2 Host6:list Net6:list2 Ping:list redistribute:list NonOlsrIf:list name:list lat lon latlon_infile HNA:list2 hosts:list2'
|
||||||
OLSRD_INTERFACE_SCHEMA='ignore:internal interface:internal AutoDetectChanges:bool Ip4Broadcast=255.255.255.255 HelloInterval=2.0 HelloValidityTime=40.0 TcInterval=5.0 TcValidityTime=100.0 MidInterval=18.0 MidValidityTime=324.0 HnaInterval=18.0 HnaValidityTime=108.0'
|
OLSRD_INTERFACE_SCHEMA='ignore:internal interface:internal AutoDetectChanges:bool Ip4Broadcast=255.255.255.255 HelloInterval=2.0 HelloValidityTime=40.0 TcInterval=5.0 TcValidityTime=100.0 MidInterval=18.0 MidValidityTime=324.0 HnaInterval=18.0 HnaValidityTime=108.0'
|
||||||
|
|
||||||
T=' '
|
T=' '
|
||||||
@ -13,38 +13,38 @@ N='
|
|||||||
'
|
'
|
||||||
|
|
||||||
validate_varname() {
|
validate_varname() {
|
||||||
local varname=$1
|
local varname="$1"
|
||||||
[ -z "$varname" -o "$varname" != "${varname%%[!A-Za-z0-9_]*}" ] && return 1
|
[ -z "$varname" -o "$varname" != "${varname%%[!A-Za-z0-9_]*}" ] && return 1
|
||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
|
|
||||||
validate_ifname() {
|
validate_ifname() {
|
||||||
local ifname=$1
|
local ifname="$1"
|
||||||
[ -z "$ifname" -o "$ifname" != "${ifname%%[!A-Za-z0-9.:_-]*}" ] && return 1
|
[ -z "$ifname" -o "$ifname" != "${ifname%%[!A-Za-z0-9.:_-]*}" ] && return 1
|
||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
|
|
||||||
validate_olsrd_option() {
|
validate_olsrd_option() {
|
||||||
local str=$1
|
local str="$1"
|
||||||
[ -z "$str" -o "$str" != "${str%%[! 0-9A-Za-z./:_-]*}" ] && return 1
|
[ -z "$str" -o "$str" != "${str%%[! 0-9A-Za-z./:_-]*}" ] && return 1
|
||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
|
|
||||||
get_ifname() {
|
get_ifname() {
|
||||||
IFNAME=
|
IFNAME=
|
||||||
local interface=$1
|
local interface="$1"
|
||||||
validate_varname "$interface" || return 1
|
validate_varname "$interface" || return 1
|
||||||
local ifname
|
local ifname
|
||||||
|
|
||||||
config_get ifname "$interface" ifname
|
config_get ifname "$interface" ifname
|
||||||
validate_ifname "$ifname" || return 1
|
validate_ifname "$ifname" || return 1
|
||||||
IFNAME=$ifname
|
IFNAME="$ifname"
|
||||||
|
|
||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
|
|
||||||
system_config() {
|
system_config() {
|
||||||
local cfg=$1
|
local cfg="$1"
|
||||||
local cfgt
|
local cfgt
|
||||||
local hostname
|
local hostname
|
||||||
local latlon
|
local latlon
|
||||||
@ -53,8 +53,8 @@ system_config() {
|
|||||||
|
|
||||||
if [ "$cfgt" = "system" ]; then
|
if [ "$cfgt" = "system" ]; then
|
||||||
config_get hostname "$cfg" hostname
|
config_get hostname "$cfg" hostname
|
||||||
hostname=${hostname:-OpenWrt}
|
hostname="${hostname:-OpenWrt}"
|
||||||
SYSTEM_HOSTNAME=$hostname
|
SYSTEM_HOSTNAME="$hostname"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -z "$SYSTEM_LAT" -o -z "$SYSTEM_LON" ]; then
|
if [ -z "$SYSTEM_LAT" -o -z "$SYSTEM_LON" ]; then
|
||||||
@ -62,13 +62,20 @@ system_config() {
|
|||||||
IFS=" ${T}${N},"
|
IFS=" ${T}${N},"
|
||||||
set -- $latlon
|
set -- $latlon
|
||||||
unset IFS
|
unset IFS
|
||||||
SYSTEM_LAT=$1
|
SYSTEM_LAT="$1"
|
||||||
SYSTEM_LON=$2
|
SYSTEM_LON="$2"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -z "$SYSTEM_LAT" -o -z "$SYSTEM_LON" ]; then
|
||||||
|
config_get latlon "$cfg" latitude
|
||||||
|
SYSTEM_LAT="$latlon"
|
||||||
|
config_get latlon "$cfg" longitude
|
||||||
|
SYSTEM_LON="$latlon"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
olsrd_find_config_file() {
|
olsrd_find_config_file() {
|
||||||
local cfg=$1
|
local cfg="$1"
|
||||||
validate_varname "$cfg" || return 0
|
validate_varname "$cfg" || return 0
|
||||||
|
|
||||||
config_get_bool ignore "$cfg" ignore 0
|
config_get_bool ignore "$cfg" ignore 0
|
||||||
@ -79,11 +86,11 @@ olsrd_find_config_file() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
warning_invalid_value() {
|
warning_invalid_value() {
|
||||||
local package=$1
|
local package="$1"
|
||||||
validate_varname "$package" || package=
|
validate_varname "$package" || package=
|
||||||
local config=$2
|
local config="$2"
|
||||||
validate_varname "$config" || config=
|
validate_varname "$config" || config=
|
||||||
local option=$3
|
local option="$3"
|
||||||
validate_varname "$option" || option=
|
validate_varname "$option" || option=
|
||||||
|
|
||||||
echo -n "Warning: Invalid value" 1>&2
|
echo -n "Warning: Invalid value" 1>&2
|
||||||
@ -98,13 +105,13 @@ warning_invalid_value() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
olsrd_write_option() {
|
olsrd_write_option() {
|
||||||
local param=$1
|
local param="$1"
|
||||||
local cfg=$2
|
local cfg="$2"
|
||||||
validate_varname "$cfg" || return 1
|
validate_varname "$cfg" || return 1
|
||||||
local option=$3
|
local option="$3"
|
||||||
validate_varname "$option" || return 1
|
validate_varname "$option" || return 1
|
||||||
local value=$4
|
local value="$4"
|
||||||
local option_type=$5
|
local option_type="$5"
|
||||||
|
|
||||||
if [ "$option_type" = bool ]; then
|
if [ "$option_type" = bool ]; then
|
||||||
case "$value" in
|
case "$value" in
|
||||||
@ -120,7 +127,7 @@ olsrd_write_option() {
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "$value" != "${value%%[G-Zg-z_-]*}" ]; then
|
if [ "$value" != "${value%%[G-Zg-z_-]*}" ]; then
|
||||||
if [ "$value" != "yes" -a "$value" != "no" ]; then
|
if [ "$option" != "Ip6AddrType" -a "$value" != "yes" -a "$value" != "no" ]; then
|
||||||
value="\"$value\""
|
value="\"$value\""
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
@ -131,13 +138,13 @@ olsrd_write_option() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
olsrd_write_plparam() {
|
olsrd_write_plparam() {
|
||||||
local param=$1
|
local param="$1"
|
||||||
local cfg=$2
|
local cfg="$2"
|
||||||
validate_varname "$cfg" || return 1
|
validate_varname "$cfg" || return 1
|
||||||
local option=$3
|
local option="$3"
|
||||||
validate_varname "$option" || return 1
|
validate_varname "$option" || return 1
|
||||||
local value=$4
|
local value="$4"
|
||||||
local option_type=$5
|
local option_type="$5"
|
||||||
local _option
|
local _option
|
||||||
|
|
||||||
if [ "$option_type" = bool ]; then
|
if [ "$option_type" = bool ]; then
|
||||||
@ -160,7 +167,7 @@ olsrd_write_plparam() {
|
|||||||
_option="$option"
|
_option="$option"
|
||||||
if [ "$option" = 'hosts' ]; then
|
if [ "$option" = 'hosts' ]; then
|
||||||
set -- $value
|
set -- $value
|
||||||
option=$1
|
option="$1"
|
||||||
shift
|
shift
|
||||||
value="$*"
|
value="$*"
|
||||||
fi
|
fi
|
||||||
@ -172,13 +179,13 @@ olsrd_write_plparam() {
|
|||||||
|
|
||||||
config_update_schema() {
|
config_update_schema() {
|
||||||
unset IFS
|
unset IFS
|
||||||
local schema_varname=$1
|
local schema_varname="$1"
|
||||||
validate_varname "$schema_varname" || return 1
|
validate_varname "$schema_varname" || return 1
|
||||||
local command=$2
|
local command="$2"
|
||||||
validate_varname "$command" || return 1
|
validate_varname "$command" || return 1
|
||||||
local option=$3
|
local option="$3"
|
||||||
validate_varname "$option" || return 1
|
validate_varname "$option" || return 1
|
||||||
local value=$4
|
local value="$4"
|
||||||
local schema
|
local schema
|
||||||
local cur_option
|
local cur_option
|
||||||
|
|
||||||
@ -213,12 +220,12 @@ config_update_schema() {
|
|||||||
|
|
||||||
config_write_options() {
|
config_write_options() {
|
||||||
unset IFS
|
unset IFS
|
||||||
local schema=$1
|
local schema="$1"
|
||||||
local cfg=$2
|
local cfg="$2"
|
||||||
validate_varname "$cfg" || return 1
|
validate_varname "$cfg" || return 1
|
||||||
local write_func=$3
|
local write_func="$3"
|
||||||
[ -z "$write_func" ] && output_func=echo
|
[ -z "$write_func" ] && output_func=echo
|
||||||
local write_param=$4
|
local write_param="$4"
|
||||||
local schema_entry
|
local schema_entry
|
||||||
local option
|
local option
|
||||||
local option_length
|
local option_length
|
||||||
@ -232,14 +239,14 @@ config_write_options() {
|
|||||||
local position
|
local position
|
||||||
|
|
||||||
for schema_entry in $schema; do
|
for schema_entry in $schema; do
|
||||||
default=${schema_entry#*[=]}
|
default="${schema_entry#*[=]}"
|
||||||
[ "$default" = "$schema_entry" ] && default=
|
[ "$default" = "$schema_entry" ] && default=
|
||||||
option=${schema_entry%%[=]*}
|
option="${schema_entry%%[=]*}"
|
||||||
IFS=':'
|
IFS=':'
|
||||||
set -- $option
|
set -- $option
|
||||||
unset IFS
|
unset IFS
|
||||||
option=$1
|
option="$1"
|
||||||
option_type=$2
|
option_type="$2"
|
||||||
validate_varname "$option" || continue
|
validate_varname "$option" || continue
|
||||||
[ -z "$option_type" ] || validate_varname "$option_type" || continue
|
[ -z "$option_type" ] || validate_varname "$option_type" || continue
|
||||||
[ "$option_type" = internal ] && continue
|
[ "$option_type" = internal ] && continue
|
||||||
@ -295,15 +302,22 @@ config_write_options() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
olsrd_write_olsrd() {
|
olsrd_write_olsrd() {
|
||||||
local cfg=$1
|
local cfg="$1"
|
||||||
validate_varname "$cfg" || return 0
|
validate_varname "$cfg" || return 0
|
||||||
local ignore
|
local ignore
|
||||||
|
local ipversion
|
||||||
|
|
||||||
config_get_bool ignore "$cfg" ignore 0
|
config_get_bool ignore "$cfg" ignore 0
|
||||||
[ "$ignore" -ne 0 ] && return 0
|
[ "$ignore" -ne 0 ] && return 0
|
||||||
|
|
||||||
[ "$OLSRD_COUNT" -gt 0 ] && return 0
|
[ "$OLSRD_COUNT" -gt 0 ] && return 0
|
||||||
|
|
||||||
|
config_get ipversion "$cfg" IpVersion
|
||||||
|
if [ "$ipversion" = "6and4" ]; then
|
||||||
|
OLSRD_IPVERSION_6AND4=1
|
||||||
|
config_set "$cfg" IpVersion '6'
|
||||||
|
fi
|
||||||
|
|
||||||
config_write_options "$OLSRD_OLSRD_SCHEMA" "$cfg" olsrd_write_option
|
config_write_options "$OLSRD_OLSRD_SCHEMA" "$cfg" olsrd_write_option
|
||||||
echo
|
echo
|
||||||
OLSRD_COUNT=$((OLSRD_COUNT + 1))
|
OLSRD_COUNT=$((OLSRD_COUNT + 1))
|
||||||
@ -312,7 +326,7 @@ olsrd_write_olsrd() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
olsrd_write_ipcconnect() {
|
olsrd_write_ipcconnect() {
|
||||||
local cfg=$1
|
local cfg="$1"
|
||||||
validate_varname "$cfg" || return 0
|
validate_varname "$cfg" || return 0
|
||||||
local ignore
|
local ignore
|
||||||
|
|
||||||
@ -330,7 +344,7 @@ olsrd_write_ipcconnect() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
olsrd_write_hna4() {
|
olsrd_write_hna4() {
|
||||||
local cfg=$1
|
local cfg="$1"
|
||||||
validate_varname "$cfg" || return 0
|
validate_varname "$cfg" || return 0
|
||||||
local ignore
|
local ignore
|
||||||
|
|
||||||
@ -357,7 +371,7 @@ olsrd_write_hna4() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
olsrd_write_hna6() {
|
olsrd_write_hna6() {
|
||||||
local cfg=$1
|
local cfg="$1"
|
||||||
validate_varname "$cfg" || return 0
|
validate_varname "$cfg" || return 0
|
||||||
local ignore
|
local ignore
|
||||||
|
|
||||||
@ -384,7 +398,7 @@ olsrd_write_hna6() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
olsrd_write_loadplugin() {
|
olsrd_write_loadplugin() {
|
||||||
local cfg=$1
|
local cfg="$1"
|
||||||
validate_varname "$cfg" || return 0
|
validate_varname "$cfg" || return 0
|
||||||
local ignore
|
local ignore
|
||||||
local name
|
local name
|
||||||
@ -441,7 +455,7 @@ olsrd_write_loadplugin() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
olsrd_write_interface() {
|
olsrd_write_interface() {
|
||||||
local cfg=$1
|
local cfg="$1"
|
||||||
validate_varname "$cfg" || return 0
|
validate_varname "$cfg" || return 0
|
||||||
local ignore
|
local ignore
|
||||||
local interfaces
|
local interfaces
|
||||||
@ -497,6 +511,7 @@ olsrd_update_schema() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
olsrd_write_config() {
|
olsrd_write_config() {
|
||||||
|
OLSRD_IPVERSION_6AND4=0
|
||||||
OLSRD_COUNT=0
|
OLSRD_COUNT=0
|
||||||
config_foreach olsrd_write_olsrd olsrd
|
config_foreach olsrd_write_olsrd olsrd
|
||||||
IPCCONNECT_COUNT=0
|
IPCCONNECT_COUNT=0
|
||||||
@ -548,7 +563,20 @@ start() {
|
|||||||
|
|
||||||
[ -z "$OLSRD_CONFIG_FILE" ] && return 1
|
[ -z "$OLSRD_CONFIG_FILE" ] && return 1
|
||||||
|
|
||||||
|
local bindv6only='0'
|
||||||
|
if [ "$OLSRD_IPVERSION_6AND4" -ne 0 ]; then
|
||||||
|
bindv6only="$(sysctl -n net.ipv6.bindv6only)"
|
||||||
|
sysctl -w net.ipv6.bindv6only=1
|
||||||
|
fi
|
||||||
|
|
||||||
olsrd -f "$OLSRD_CONFIG_FILE" -nofork < /dev/null > /dev/null &
|
olsrd -f "$OLSRD_CONFIG_FILE" -nofork < /dev/null > /dev/null &
|
||||||
|
|
||||||
|
if [ "$OLSRD_IPVERSION_6AND4" -ne 0 ]; then
|
||||||
|
sed -e 's/^IpVersion[ ][ ]*6$/IpVersion 4/' < "$OLSRD_CONFIG_FILE" > /var/etc/olsrd.conf.ipv4
|
||||||
|
olsrd -f /var/etc/olsrd.conf.ipv4 -nofork < /dev/null > /dev/null &
|
||||||
|
sleep 3
|
||||||
|
sysctl -w net.ipv6.bindv6only="$bindv6only"
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
stop() {
|
stop() {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user