From: Roy Marples Date: Mon, 14 Apr 2008 18:50:48 +0000 (+0000) Subject: We should ARP by default. X-Git-Tag: v4.0.2~489 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b16302be0aeec7c595fa045b56c89347997781bc;p=thirdparty%2Fdhcpcd.git We should ARP by default. --- diff --git a/dhcpcd.c b/dhcpcd.c index 1548d310..12a51b82 100644 --- a/dhcpcd.c +++ b/dhcpcd.c @@ -172,8 +172,8 @@ main(int argc, char **argv) snprintf(options->classid, CLASS_ID_MAX_LEN, "%s %s", PACKAGE, VERSION); - options->options |= DHCPCD_GATEWAY | DHCPCD_IPV4LL | DHCPCD_DUID | - DHCPCD_DAEMONISE; + options->options |= DHCPCD_GATEWAY | DHCPCD_ARP | DHCPCD_IPV4LL | + DHCPCD_DUID | DHCPCD_DAEMONISE; options->timeout = DEFAULT_TIMEOUT; gethostname(options->hostname, sizeof(options->hostname));