diff options
author | Jouke Witteveen <j.witteveen@gmail.com> | 2013-10-21 16:51:00 +0200 |
---|---|---|
committer | Jouke Witteveen <j.witteveen@gmail.com> | 2013-10-23 01:43:25 +0200 |
commit | 5930a6eebc67b9665ea5d6133306a71030cd94a0 (patch) | |
tree | 2f07389dd06cc241a925be197b167ffd246bb7c8 | |
parent | f50656d00cac5125b0fd8ae7dbfa314b83597ad4 (diff) | |
download | netctl-5930a6eebc67b9665ea5d6133306a71030cd94a0.tar.gz netctl-5930a6eebc67b9665ea5d6133306a71030cd94a0.tar.xz |
Increase default DHCP timeout
New timeout is 30 seconds, which equals the current dhcpcd default.
-rw-r--r-- | docs/netctl.profile.5.txt | 2 | ||||
-rw-r--r-- | src/lib/ip | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/docs/netctl.profile.5.txt b/docs/netctl.profile.5.txt index b1ccde1..17f0537 100644 --- a/docs/netctl.profile.5.txt +++ b/docs/netctl.profile.5.txt @@ -172,7 +172,7 @@ network. In particular, these connection types are +ethernet+, 'TimeoutDHCP=':: Maximum time, in seconds, to wait for DHCP to be successful. - Defaults to `++10++'. + Defaults to `++30++'. 'TimeoutDAD=':: Maximum time, in seconds, to wait for IPv6's Duplicate Address @@ -48,7 +48,7 @@ ip_set() { rm -f "/run/dhcpcd-$Interface".{pid,cache} # If using own dns, tell dhcpcd to NOT replace resolv.conf [[ $DNS ]] && DhcpcdOptions+=" -C resolv.conf" - do_debug dhcpcd -4qL -t "${TimeoutDHCP:-10}" $DhcpcdOptions "$Interface" |& report_debug "$(cat)" + do_debug dhcpcd -4qL -t "${TimeoutDHCP:-30}" $DhcpcdOptions "$Interface" |& report_debug "$(cat)" # The first array value of PIPESTATUS is the exit status of dhcpcd if (( PIPESTATUS != 0 )); then report_error "DHCP IP lease attempt failed on interface '$Interface'" @@ -57,7 +57,7 @@ ip_set() { ;; dhclient) rm -f "/run/dhclient-${Interface}.pid" - if ! do_debug dhclient -4 -q -e "TIMEOUT=${TimeoutDHCP:-10}" -pf "/run/dhclient-$Interface.pid" $DhclientOptions "$Interface"; then + if ! do_debug dhclient -4 -q -e "TIMEOUT=${TimeoutDHCP:-30}" -pf "/run/dhclient-$Interface.pid" $DhclientOptions "$Interface"; then report_error "DHCP IP lease attempt failed on interface '$Interface'" return 1 fi @@ -110,7 +110,7 @@ ip_set() { fi [[ $IP6 == "dhcp-noaddr" ]] && DhclientOptions6+=" -S" rm -f "/run/dhclient6-${Interface}.pid" - if ! do_debug dhclient -6 -q -e "TIMEOUT=${TimeoutDHCP:-10}" -pf "/run/dhclient6-${Interface}.pid" $DhclientOptions6 "$Interface"; then + if ! do_debug dhclient -6 -q -e "TIMEOUT=${TimeoutDHCP:-30}" -pf "/run/dhclient6-${Interface}.pid" $DhclientOptions6 "$Interface"; then report_error "DHCPv6 IP lease attempt failed on interface '$Interface'" return 1 fi |