diff options
Diffstat (limited to 'rc.inet1')
-rw-r--r-- | rc.inet1 | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -292,6 +292,10 @@ if_up() { echo "/etc/rc.d/rc.inet1: /sbin/ip link set dev ${1} promisc on" | $LOGGER /sbin/ip link set dev ${1} promisc on fi + # Some settings need a small time to come into effect on the interface. + # This mostly affects IPv6, which needs time to make the interfaces available for the + # daemons to bind() - without this delay, they fail to bind() v6 addresses. + sleep 3 fi else debug_log "${1} is already up, skipping" |