From e83e0ee9f8870cbe74a06b7287d240d316dbc0ee Mon Sep 17 00:00:00 2001 From: Tommaso Pecorella Date: Tue, 25 Jun 2013 00:13:50 +0200 Subject: [PATCH] Bug 1719 - IPv6 default state is set to not forward packets --- RELEASE_NOTES | 1 + src/internet/model/ipv6.cc | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/RELEASE_NOTES b/RELEASE_NOTES index 210633e50..eca3b91d6 100644 --- a/RELEASE_NOTES +++ b/RELEASE_NOTES @@ -38,6 +38,7 @@ Bugs fixed - Bug 1701 - Ipv6StaticRouting: the source address should match the destination scope - Bug 1703 - Nodes don't react to a DAD - Bug 1718 - Ipv4StaticRouting log component is misspelled +- Bug 1719 - IPv6 default state is set to not forward packets Known issues ------------ diff --git a/src/internet/model/ipv6.cc b/src/internet/model/ipv6.cc index 91465ca19..7524647e2 100644 --- a/src/internet/model/ipv6.cc +++ b/src/internet/model/ipv6.cc @@ -36,7 +36,7 @@ TypeId Ipv6::GetTypeId (void) static TypeId tid = TypeId ("ns3::Ipv6") .SetParent () .AddAttribute ("IpForward", "Globally enable or disable IP forwarding for all current and future IPv6 devices.", - BooleanValue (false), + BooleanValue (true), MakeBooleanAccessor (&Ipv6::SetIpForward, &Ipv6::GetIpForward), MakeBooleanChecker ())