From b6472516dc7738d9f11854313c763cebf2747986 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Sun, 3 Sep 2006 16:14:27 +0000 Subject: configure broadcast address explicitly git-svn-id: file:///home/lennart/svn/public/avahi/trunk@1316 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe --- avahi-autoipd/avahi-autoipd.action | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/avahi-autoipd/avahi-autoipd.action b/avahi-autoipd/avahi-autoipd.action index 45ce1b5..5efc255 100755 --- a/avahi-autoipd/avahi-autoipd.action +++ b/avahi-autoipd/avahi-autoipd.action @@ -36,11 +36,11 @@ if [ -x /bin/ip -o -x /sbin/ip ] ; then case "$1" in BIND) - ip addr add "$3"/16 label "$2:avahi" scope link dev "$2" + ip addr add "$3"/16 brd 169.254.255.255 label "$2:avahi" scope link dev "$2" ;; CONFLICT|UNBIND|STOP) - ip addr del "$3"/16 label "$2:avahi" scope link dev "$2" + ip addr del "$3"/16 brd 169.254.255.255 label "$2:avahi" scope link dev "$2" ;; *) @@ -55,7 +55,7 @@ elif [ -x /bin/ifconfig -o -x /sbin/ifconfig ] ; then case "$1" in BIND) - ifconfig "$2" inet "$3" netmask 255.255.0.0 + ifconfig "$2" inet "$3" netmask 255.255.0.0 broadcast 169.254.255.255 ;; CONFLICT|UNBIND|STOP) -- cgit