From 370d9f69d9fe646450c1a3214e8944fd5bbb211e Mon Sep 17 00:00:00 2001 From: Clemens John Date: Sun, 4 Aug 2013 17:02:45 +0000 Subject: [PATCH] Add option for interface name so netmon does not need to add a dummy interface like configurator_ipv6 --- bsp/default/root_file_system/etc/configurator.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bsp/default/root_file_system/etc/configurator.sh b/bsp/default/root_file_system/etc/configurator.sh index 7838ad0..e6c2520 100644 --- a/bsp/default/root_file_system/etc/configurator.sh +++ b/bsp/default/root_file_system/etc/configurator.sh @@ -110,7 +110,7 @@ autoadd_ipv6_address() { ipv6_link_local_addr=$(ip addr show dev br-mesh scope link | awk '/inet6/{print $2}') ipv6_link_local_netmask=${ipv6_link_local_addr##*/} ipv6_link_local_addr=${ipv6_link_local_addr%%/*} - ergebnis=$(wget -T $API_TIMEOUT -q -O - "http://$netmon_api/api_csv_configurator.php?section=autoadd_ipv6_address&authentificationmethod=$CRAWL_METHOD&nickname=$CRAWL_NICKNAME&password=$CRAWL_PASSWORD&router_auto_update_hash=$CRAWL_UPDATE_HASH&router_id=$CRAWL_ROUTER_ID&ip=$ipv6_link_local_addr&netmask=$ipv6_link_local_netmask") + ergebnis=$(wget -T $API_TIMEOUT -q -O - "http://$netmon_api/api_csv_configurator.php?section=autoadd_ipv6_address&authentificationmethod=$CRAWL_METHOD&nickname=$CRAWL_NICKNAME&password=$CRAWL_PASSWORD&router_auto_update_hash=$CRAWL_UPDATE_HASH&router_id=$CRAWL_ROUTER_ID&networkinterface_name=br-mesh&ip=$ipv6_link_local_addr&netmask=$ipv6_link_local_netmask") ret=${ergebnis%%,*} if [ "$ret" = "success" ]; then uci set configurator.@netmon[0].autoadd_ipv6_address='0'