summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-04-07 21:33:21 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-04-07 21:33:21 +0000
commit83c159d8ca280f7bdb4c1b56f149baf1832cbafa (patch)
tree9046ebb7ebb6bd7757e279a76d24195037f34ad9
parentba9c45c214ea6949786eb55d4190533c820c394c (diff)
Changed to bogus information.
-rw-r--r--networkconfig.h23
1 files changed, 14 insertions, 9 deletions
diff --git a/networkconfig.h b/networkconfig.h
index c536639..e44c2fb 100644
--- a/networkconfig.h
+++ b/networkconfig.h
@@ -51,7 +51,7 @@ static struct rtems_bsdnet_ifconfig netdriver_config = {
NULL, /* BOOTP supplies IP address */
NULL, /* BOOTP supplies IP net mask */
#else
- "192.168.1.100", /* IP address */
+ "XXX.YYY.ZZZ.XYZ", /* IP address */
"255.255.255.0", /* IP net mask */
#endif /* !RTEMS_USE_BOOTP */
@@ -80,18 +80,23 @@ struct rtems_bsdnet_config rtems_bsdnet_config = {
0, /* Default mbuf cluster capacity */
#if (!defined (RTEMS_USE_BOOTP))
+ "rtems_host", /* Host name */
+ "nodomain.com", /* Domain name */
+ "XXX.YYY.ZZZ.1", /* Gateway */
+ "XXX.YYY.ZZZ.1", /* Log host */
+ {"XXX.YYY.ZZZ.1" }, /* Name server(s) */
+
+ /*
+ * A real example -- DO NOT USE THIS YOURSELF!!!
+ */
+
#if 0
- "rgamon", /* Host name */
- "usask.ca", /* Domain name */
- "128.233.14.100", /* Gateway */
- "128.233.14.1", /* Log host */
- {"128.233.14.1" }, /* Name server(s) */
-#endif
"dy4", /* Host name */
- "oarcorp.com", /* Domain name */
+ "NOT_oarcorp.com", /* Domain name */
"192.168.1.2", /* Gateway */
"192.168.1.2", /* Log host */
{"192.168.1.2" }, /* Name server(s) */
+#endif
#endif /* !RTEMS_USE_BOOTP */
};
@@ -100,7 +105,7 @@ struct rtems_bsdnet_config rtems_bsdnet_config = {
* For TFTP test application
*/
#if (!defined (RTEMS_USE_BOOTP))
-#define RTEMS_TFTP_TEST_HOST_NAME "192.168.1.2"
+#define RTEMS_TFTP_TEST_HOST_NAME "XXX.YYY.ZZZ.XYZ"
#define RTEMS_TFTP_TEST_FILE_NAME "tftptest"
#endif