diff options
author | Bob Gilligan <gilligan@vyatta.com> | 2009-09-22 15:56:01 -0700 |
---|---|---|
committer | Bob Gilligan <gilligan@vyatta.com> | 2009-09-22 15:56:01 -0700 |
commit | 17f02b9665ce0ffd6147605ecaa000e42a189ffd (patch) | |
tree | ad8faaa72524302a5a1383a1c0605f53d83267ee /sysconf | |
parent | 88747654fc7d92a85548461b08649b2752657ad6 (diff) | |
download | vyatta-cfg-system-17f02b9665ce0ffd6147605ecaa000e42a189ffd.tar.gz vyatta-cfg-system-17f02b9665ce0ffd6147605ecaa000e42a189ffd.zip |
Bugfix 4951: Don't fail if IPv6 kernel module is not loaded.
Handle cases where IPv6 kernel module is not loaded more gracefully.
Diffstat (limited to 'sysconf')
-rw-r--r-- | sysconf/vyatta-sysctl.conf | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/sysconf/vyatta-sysctl.conf b/sysconf/vyatta-sysctl.conf index 5b888a8c..1f270d92 100644 --- a/sysconf/vyatta-sysctl.conf +++ b/sysconf/vyatta-sysctl.conf @@ -31,9 +31,6 @@ net.ipv4.icmp_ignore_bogus_error_responses=1 # Send ICMP responses with primary address of exiting interface net.ipv4.icmp_errors_use_inbound_ifaddr=1 -# Enable packet forwarding for IPv6 -net.ipv6.conf.all.forwarding=1 - # Log packets with impossible addresses to kernel log net.ipv4.conf.all.log_martians=1 @@ -58,6 +55,11 @@ net.ipv4.conf.all.accept_source_route=0 # Enable send_redirects by default net.ipv4.conf.all.send_redirects=1 +# IPv6 parameters: + +# Enable packet forwarding for IPv6 +net.ipv6.conf.all.forwarding=1 + # Disable ipv6 accept_source_route by default net.ipv6.conf.default.accept_source_route=-1 |