aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/networking/ip-sysctl.txt
diff options
context:
space:
mode:
authorBen Greear <greearb@candelatech.com>2014-06-25 17:44:53 -0400
committerDavid S. Miller <davem@davemloft.net>2014-07-01 15:16:24 -0400
commitd93331965729850303f6111381c1a4a9e9b8ae5a (patch)
treea2d5fbd89ff16883d860fff197cf50f4abed26ae /Documentation/networking/ip-sysctl.txt
parentf2a762d8a97032e58c09c5798832e25268e1c111 (diff)
ipv6: Allow accepting RA from local IP addresses.
This can be used in virtual networking applications, and may have other uses as well. The option is disabled by default. A specific use case is setting up virtual routers, bridges, and hosts on a single OS without the use of network namespaces or virtual machines. With proper use of ip rules, routing tables, veth interface pairs and/or other virtual interfaces, and applications that can bind to interfaces and/or IP addresses, it is possibly to create one or more virtual routers with multiple hosts attached. The host interfaces can act as IPv6 systems, with radvd running on the ports in the virtual routers. With the option provided in this patch enabled, those hosts can now properly obtain IPv6 addresses from the radvd. Signed-off-by: Ben Greear <greearb@candelatech.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'Documentation/networking/ip-sysctl.txt')
-rw-r--r--Documentation/networking/ip-sysctl.txt12
1 files changed, 12 insertions, 0 deletions
diff --git a/Documentation/networking/ip-sysctl.txt b/Documentation/networking/ip-sysctl.txt
index ab42c95f9985..10e216c6e05e 100644
--- a/Documentation/networking/ip-sysctl.txt
+++ b/Documentation/networking/ip-sysctl.txt
@@ -1210,6 +1210,18 @@ accept_ra_defrtr - BOOLEAN
1210 Functional default: enabled if accept_ra is enabled. 1210 Functional default: enabled if accept_ra is enabled.
1211 disabled if accept_ra is disabled. 1211 disabled if accept_ra is disabled.
1212 1212
1213accept_ra_from_local - BOOLEAN
1214 Accept RA with source-address that is found on local machine
1215 if the RA is otherwise proper and able to be accepted.
1216 Default is to NOT accept these as it may be an un-intended
1217 network loop.
1218
1219 Functional default:
1220 enabled if accept_ra_from_local is enabled
1221 on a specific interface.
1222 disabled if accept_ra_from_local is disabled
1223 on a specific interface.
1224
1213accept_ra_pinfo - BOOLEAN 1225accept_ra_pinfo - BOOLEAN
1214 Learn Prefix Information in Router Advertisement. 1226 Learn Prefix Information in Router Advertisement.
1215 1227