Bug 1719 - IPv6 default state is set to not forward packets

This commit is contained in:
Tommaso Pecorella
2013-06-25 00:13:50 +02:00
parent f91ad6f841
commit e83e0ee9f8
2 changed files with 2 additions and 1 deletions

View File

@@ -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
------------

View File

@@ -36,7 +36,7 @@ TypeId Ipv6::GetTypeId (void)
static TypeId tid = TypeId ("ns3::Ipv6")
.SetParent<Object> ()
.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 ())