Revert changeset 9854. Ipv6 forwarding should be off by default
--- a/RELEASE_NOTES Tue Jul 02 21:56:54 2013 +0200
+++ b/RELEASE_NOTES Tue Jul 02 23:08:26 2013 +0200
@@ -39,7 +39,6 @@
- Bug 1703 - Nodes don't react to a DAD
- Bug 1712 - The IP (v4 and v6) forwarding needs a test
- Bug 1718 - Ipv4StaticRouting log component is misspelled
-- Bug 1719 - IPv6 default state is set to not forward packets
- Bug 1720 - IPv6 Fragmentation cause crashes
- Bug 1727 - Ping6 should use a proper source address
--- a/src/internet/model/ipv6.cc Tue Jul 02 21:56:54 2013 +0200
+++ b/src/internet/model/ipv6.cc Tue Jul 02 23:08:26 2013 +0200
@@ -36,7 +36,7 @@
static TypeId tid = TypeId ("ns3::Ipv6")
.SetParent<Object> ()
.AddAttribute ("IpForward", "Globally enable or disable IP forwarding for all current and future IPv6 devices.",
- BooleanValue (true),
+ BooleanValue (false),
MakeBooleanAccessor (&Ipv6::SetIpForward,
&Ipv6::GetIpForward),
MakeBooleanChecker ())