2015-01-15 04:26:50 +08:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
|
|
|
# see misc/tools/kconfig-language.txt.
|
|
|
|
#
|
|
|
|
|
|
|
|
if NET_IPv6
|
|
|
|
menu "ICMPv6 Networking Support"
|
|
|
|
|
|
|
|
config NET_ICMPv6
|
|
|
|
bool "Enable ICMPv6 networking"
|
|
|
|
default n
|
|
|
|
depends on NET
|
|
|
|
---help---
|
|
|
|
Enable minimal ICMPv6 support. Includes built-in support
|
|
|
|
for sending replies to received ECHO (ping) requests.
|
|
|
|
|
|
|
|
if NET_ICMPv6
|
|
|
|
|
2015-01-21 01:06:51 +08:00
|
|
|
config NET_ICMPv6_PING
|
|
|
|
bool "ICMPv6 ping interfaces"
|
|
|
|
default n
|
|
|
|
---help---
|
|
|
|
Provide interfaces to support application level support for
|
|
|
|
for sending ECHO (ping) requests and associating ECHO replies.
|
|
|
|
|
2015-02-03 00:49:50 +08:00
|
|
|
config NET_ICMPv6_NEIGHBOR
|
|
|
|
bool "Solicit destination addresses"
|
|
|
|
default n
|
|
|
|
---help---
|
|
|
|
Enable logic to send ICMPv6 neighbor solicitation requests if
|
|
|
|
the target IPv6 address mapping does not appear in the Neighbor
|
|
|
|
table.
|
|
|
|
|
2015-02-03 01:34:51 +08:00
|
|
|
if NET_ICMPv6_NEIGHBOR
|
|
|
|
|
|
|
|
config ICMPv6_NEIGHBOR_MAXTRIES
|
|
|
|
int "ICMPv6 solicitation retries"
|
|
|
|
default 5
|
|
|
|
---help---
|
|
|
|
Send the Neighbor solicitation this number of times before giving
|
|
|
|
up and deciding that the target IP6 address is non reachable.
|
|
|
|
|
|
|
|
config ICMPv6_NEIGHBOR_DELAYMSEC
|
|
|
|
int "ICMPv6 re-solicit delay"
|
2015-02-03 04:09:06 +08:00
|
|
|
default 100
|
2015-02-03 01:34:51 +08:00
|
|
|
---help---
|
|
|
|
Wait this number of milliseconds after sending the Neighbor
|
|
|
|
Solicitation before checking if the IPv6 address mapping is present
|
|
|
|
in the Neighbor Table. This time should be related to the maximum
|
|
|
|
round trip time on the network since it is basically the time from
|
|
|
|
when an Neighbor Solicitation is sent until the Neighbor
|
|
|
|
Advertisement is received.
|
|
|
|
|
|
|
|
endif # NET_ICMPv6_NEIGHBOR
|
|
|
|
|
2015-01-15 04:26:50 +08:00
|
|
|
endif # NET_ICMPv6
|
|
|
|
endmenu # ICMPv6 Networking Support
|
|
|
|
endif # NET_IPv6
|