summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJouke Witteveen <j.witteveen@gmail.com>2013-10-21 16:51:00 +0200
committerJouke Witteveen <j.witteveen@gmail.com>2013-10-23 01:43:25 +0200
commit5930a6eebc67b9665ea5d6133306a71030cd94a0 (patch)
tree2f07389dd06cc241a925be197b167ffd246bb7c8 /src
parentf50656d00cac5125b0fd8ae7dbfa314b83597ad4 (diff)
downloadnetctl-5930a6eebc67b9665ea5d6133306a71030cd94a0.tar.gz
netctl-5930a6eebc67b9665ea5d6133306a71030cd94a0.tar.xz
Increase default DHCP timeout
New timeout is 30 seconds, which equals the current dhcpcd default.
Diffstat (limited to 'src')
-rw-r--r--src/lib/ip6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/ip b/src/lib/ip
index d62ac0c..a93eaee 100644
--- a/src/lib/ip
+++ b/src/lib/ip
@@ -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