From 4faeb216ded5ad12b709988a52e1bdbbe06eafee Mon Sep 17 00:00:00 2001 From: patacongo Date: Thu, 19 Jul 2012 22:32:19 +0000 Subject: Fix some questionable MAC addresses git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4956 42af7a65-404d-4744-a932-0658087f49c3 --- apps/examples/dhcpd/target.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'apps/examples/dhcpd') diff --git a/apps/examples/dhcpd/target.c b/apps/examples/dhcpd/target.c index 350bfe15f..d43e86e94 100644 --- a/apps/examples/dhcpd/target.c +++ b/apps/examples/dhcpd/target.c @@ -113,10 +113,10 @@ int MAIN_NAME(int argc, char *argv[]) #ifdef CONFIG_EXAMPLE_DHCPD_NOMAC mac[0] = 0x00; mac[1] = 0xe0; - mac[2] = 0xb0; - mac[3] = 0x0b; - mac[4] = 0xba; - mac[5] = 0xbe; + mac[2] = 0xde; + mac[3] = 0xad; + mac[4] = 0xbe; + mac[5] = 0xef; uip_setmacaddr("eth0", mac); #endif -- cgit v1.2.3