From e4384c1c4253f415814e65fc6d2e3d3fa17c7d1d Mon Sep 17 00:00:00 2001 From: Michael Shigorin Date: Wed, 9 Mar 2016 18:24:06 +0300 Subject: [PATCH] net-eth: bumped DHCP_TIMEOUT from 3 to 7 This has been requested by Balbes so as to avoid premature DHCP timeouts with some gigabit networks; see also http://forum.altlinux.org/index.php?topic=36495.msg281385#msg281385 --- features.in/net-eth/rootfs/image-scripts.d/50-net-eth | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/features.in/net-eth/rootfs/image-scripts.d/50-net-eth b/features.in/net-eth/rootfs/image-scripts.d/50-net-eth index 90d5cdcd..427b1f28 100755 --- a/features.in/net-eth/rootfs/image-scripts.d/50-net-eth +++ b/features.in/net-eth/rootfs/image-scripts.d/50-net-eth @@ -38,7 +38,7 @@ write_etcnet_iface() { append= case "$proto" in dhcp) - append="DHCP_TIMEOUT=3" + append="DHCP_TIMEOUT=7" ;; static) echo "$ipv4addr" > "$dir/ipv4address"