summaryrefslogtreecommitdiff
path: root/apps/nshlib
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2015-01-20 13:48:03 -0600
committerGregory Nutt <gnutt@nuttx.org>2015-01-20 13:48:03 -0600
commit26579ef724d2617383e7f4530eef693d05a828be (patch)
tree0bb29cc058bc4476b69d1966c41ee508221bf4e7 /apps/nshlib
parentea61ca860ff132a95330b55a8f71fcc9709b7c52 (diff)
downloadnuttx-26579ef724d2617383e7f4530eef693d05a828be.tar.gz
nuttx-26579ef724d2617383e7f4530eef693d05a828be.tar.bz2
nuttx-26579ef724d2617383e7f4530eef693d05a828be.zip
Fix defaults for IPv6 netmask
Diffstat (limited to 'apps/nshlib')
-rw-r--r--apps/nshlib/Kconfig34
1 files changed, 17 insertions, 17 deletions
diff --git a/apps/nshlib/Kconfig b/apps/nshlib/Kconfig
index f863bb946..dd4676a59 100644
--- a/apps/nshlib/Kconfig
+++ b/apps/nshlib/Kconfig
@@ -1119,83 +1119,83 @@ comment "IPv6 Network mask"
config NSH_IPv6NETMASK_1
hex "[0]"
- default 0xffff
+ default 0xfe00
range 0x0 0xffff
---help---
Network mask. This is a 16-bit integer value in host order. Each
of the eight values forming the full IP address must be specified
individually. This is the first of the 8-values. The default for
- all eight values is ffff:ffff:ffff:ffff:ffff:ffff:ffff:ff80.
+ all eight values is fe00:0000:0000:0000:0000:0000:0000:0000.
config NSH_IPv6NETMASK_2
hex "[1]"
- default 0xffff
+ default 0x0000
range 0x0 0xffff
---help---
Network mask. This is a 16-bit integer value in host order. Each
of the eight values forming the full IP address must be specified
individually. This is the second of the 8-values. The default for
- all eight values is ffff:ffff:ffff:ffff:ffff:ffff:ffff:ff80.
+ all eight values is fe00:0000:0000:0000:0000:0000:0000:0000.
config NSH_IPv6NETMASK_3
hex "[2]"
- default 0xffff
+ default 0x0000
range 0x0 0xffff
---help---
Network mask. This is a 16-bit integer value in host order. Each
of the eight values forming the full IP address must be specified
individually. This is the third of the 8-values. The default for
- all eight values is ffff:ffff:ffff:ffff:ffff:ffff:ffff:ff80.
+ all eight values is fe00:0000:0000:0000:0000:0000:0000:0000.
config NSH_IPv6NETMASK_4
hex "[3]"
- default 0xffff
- range 0x0 0xffff
+ default 0x0000
+ range 0x0 0x0000
---help---
Network mask. This is a 16-bit integer value in host order. Each
of the eight values forming the full IP address must be specified
individually. This is the fourth of the 8-values. The default for
- all eight values is ffff:ffff:ffff:ffff:ffff:ffff:ffff:ff80.
+ all eight values is fe00:0000:0000:0000:0000:0000:0000:0000.
config NSH_IPv6NETMASK_5
hex "[4]"
- default 0xffff
+ default 0x0000
range 0x0 0xffff
---help---
Network mask. This is a 16-bit integer value in host order. Each
of the eight values forming the full IP address must be specified
individually. This is the fifth of the 8-values. The default for
- all eight values is ffff:ffff:ffff:ffff:ffff:ffff:ffff:ff80.
+ all eight values is fe00:0000:0000:0000:0000:0000:0000:0000.
config NSH_IPv6NETMASK_6
hex "[5]"
- default 0xffff
+ default 0x0000
range 0x0 0xffff
---help---
Network mask. This is a 16-bit integer value in host order. Each
of the eight values forming the full IP address must be specified
individually. This is the sixth of the 8-values. The default for
- all eight values is ffff:ffff:ffff:ffff:ffff:ffff:ffff:ff80.
+ all eight values is fe00:0000:0000:0000:0000:0000:0000:0000.
config NSH_IPv6NETMASK_7
hex "[6]"
- default 0xffff
+ default 0x0000
range 0x0 0xffff
---help---
Network mask. This is a 16-bit integer value in host order. Each
of the eight values forming the full IP address must be specified
individually. This is the seventh of the 8-values. The default for
- all eight values is ffff:ffff:ffff:ffff:ffff:ffff:ffff:ff80.
+ all eight values is fe00:0000:0000:0000:0000:0000:0000:0000.
config NSH_IPv6NETMASK_8
hex "[7]"
- default 0xff80
+ default 0x0000
range 0x0 0xffff
---help---
Network mask. This is a 16-bit integer value in host order. Each
of the eight values forming the full IP address must be specified
individually. This is the eighth of the 8-values. The default for
- all eight values is ffff:ffff:ffff:ffff:ffff:ffff:ffff:ff80.
+ all eight values is fe00:0000:0000:0000:0000:0000:0000:0000.
endif #NET_IPv6
endmenu # IP Address Configuration