Update of /cvsroot/dhcp-agent/dhcp-agent/conf
In directory sc8-pr-cvs1:/tmp/cvs-serv23082/conf
Modified Files:
default.conf
Log Message:
better default.conf
Index: default.conf
===================================================================
RCS file: /cvsroot/dhcp-agent/dhcp-agent/conf/default.conf,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** default.conf 11 May 2003 17:00:04 -0000 1.1
--- default.conf 8 Jun 2003 22:16:10 -0000 1.2
***************
*** 40,57 ****
#
- # DHCP -- try to discover/request three times before giving up.
- #
-
- set dhcp-discovery-retries = 3;
-
- #
- # ICMP -- when doing ICMP retry up to three times.
- #
-
- set icmp-retries = 3;
-
- #
# Router discovery -- should we use ICMP to find the best router?
#
enable do-measure-router-latency = no;
--- 40,52 ----
#
# Router discovery -- should we use ICMP to find the best router?
#
enable do-measure-router-latency = no;
+
+ # Default ARP settings are pretty generous. Unless you experience
+ # problems this should suffice for most networks which don't have
+ # excessive packet loss
+
+ set arp-retries = 1;
+ set arp-timeout-threshold = 1;
|