A Discrete-Event Network Simulator
API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
ns3::Ipv6AddressGenerator Class Reference

This generator assigns addresses sequentially from a provided network address; used in topology code. It also keeps track of all addresses assigned to perform duplicate detection. More...

#include <ipv6-address-generator.h>

Static Public Member Functions

static bool AddAllocated (const Ipv6Address addr)
 Add the Ipv6Address to the list of IPv6 entries. More...
 
static Ipv6Address GetAddress (const Ipv6Prefix prefix)
 Get the Ipv6Address that will be allocated upon NextAddress() More...
 
static Ipv6Address GetNetwork (const Ipv6Prefix prefix)
 Get the current network of the given Ipv6Prefix. More...
 
static void Init (const Ipv6Address net, const Ipv6Prefix prefix, const Ipv6Address interfaceId="::1")
 Initialise the base network and interfaceId for the generator. More...
 
static void InitAddress (const Ipv6Address interfaceId, const Ipv6Prefix prefix)
 Set the interfaceId for the given Ipv6Prefix. More...
 
static Ipv6Address NextAddress (const Ipv6Prefix prefix)
 Allocate the next Ipv6Address for the configured network and prefix. More...
 
static Ipv6Address NextNetwork (const Ipv6Prefix prefix)
 Get the next network acoording to the given Ipv6Prefix. More...
 
static void Reset (void)
 Reset the networks and Ipv6Address to zero.
 
static void TestMode (void)
 Used to turn off fatal errors and assertions, for testing.
 

Detailed Description

This generator assigns addresses sequentially from a provided network address; used in topology code. It also keeps track of all addresses assigned to perform duplicate detection.

Global unicast IPv6 addresses based on RFC 4291 definition:

|         n bits          |   m bits  |       128-n-m bits         |
+-------------------------+-----------+----------------------------+
| global routing prefix   | subnet ID |       interface ID         |
+-------------------------+-----------+----------------------------+

In this class, the first two quantities (n + m) are what is called the 'net', and the 'prefix' defines the length in bits of (n + m).

The way this is expected to be used is that, after initializing the network and interfaceId to a number, a user can call NextAddress () repeatedly to obtain new interface IDs with the current network (for multiple addresses on the link) and can call NextNetwork () to increment the subnet ID.

The interface ID is often an EUI-64 address derived from the MAC address, but can also be a pseudo-random value (RFC 3041). This implementation does not generate EUI-64-based interface IDs.

Definition at line 54 of file ipv6-address-generator.h.

Member Function Documentation

bool ns3::Ipv6AddressGenerator::AddAllocated ( const Ipv6Address  addr)
static

Add the Ipv6Address to the list of IPv6 entries.

Typically, this is used by external address allocators that want to make use of this class's ability to track duplicates. AddAllocated is always called internally for any address generated by NextAddress()

Parameters
addrThe Ipv6Address to be added to the list of Ipv6 entries

Definition at line 587 of file ipv6-address-generator.cc.

References ns3::SimulationSingleton< T >::Get(), and NS_LOG_FUNCTION_NOARGS.

Referenced by ns3::Ipv6AddressHelper::NewAddress().

Ipv6Address ns3::Ipv6AddressGenerator::GetAddress ( const Ipv6Prefix  prefix)
static

Get the Ipv6Address that will be allocated upon NextAddress()

Does not change the internal state; just is used to peek the next address that will be allocated upon NextAddress ()

Parameters
prefixThe Ipv6Prefix for the current network

Definition at line 560 of file ipv6-address-generator.cc.

References ns3::SimulationSingleton< T >::Get(), and NS_LOG_FUNCTION_NOARGS.

Ipv6Address ns3::Ipv6AddressGenerator::GetNetwork ( const Ipv6Prefix  prefix)
static

Get the current network of the given Ipv6Prefix.

Does not change the internal state; this just peeks at the current network

Parameters
prefixThe Ipv6Prefix for the current network

Definition at line 540 of file ipv6-address-generator.cc.

References ns3::SimulationSingleton< T >::Get(), and NS_LOG_FUNCTION_NOARGS.

Referenced by ns3::PointToPointStarHelper::AssignIpv6Addresses(), ns3::PointToPointGridHelper::AssignIpv6Addresses(), ns3::CsmaStarHelper::AssignIpv6Addresses(), ns3::PointToPointDumbbellHelper::AssignIpv6Addresses(), and ns3::Ipv6AddressHelper::NewAddress().

void ns3::Ipv6AddressGenerator::Init ( const Ipv6Address  net,
const Ipv6Prefix  prefix,
const Ipv6Address  interfaceId = "::1" 
)
static

Initialise the base network and interfaceId for the generator.

The first call to NextAddress() or GetAddress() will return the value passed in.

Parameters
netThe network for the base Ipv6Address
prefixThe prefix of the base Ipv6Address
interfaceIdThe base interface ID used for initialization

Definition at line 519 of file ipv6-address-generator.cc.

References ns3::SimulationSingleton< T >::Get(), and NS_LOG_FUNCTION_NOARGS.

Referenced by ns3::PointToPointStarHelper::AssignIpv6Addresses(), ns3::PointToPointGridHelper::AssignIpv6Addresses(), ns3::CsmaStarHelper::AssignIpv6Addresses(), ns3::PointToPointDumbbellHelper::AssignIpv6Addresses(), ns3::Ipv6AddressHelper::Ipv6AddressHelper(), and ns3::Ipv6AddressHelper::SetBase().

void ns3::Ipv6AddressGenerator::InitAddress ( const Ipv6Address  interfaceId,
const Ipv6Prefix  prefix 
)
static

Set the interfaceId for the given Ipv6Prefix.

Parameters
interfaceIdThe interfaceId to set for the current Ipv6Prefix
prefixThe Ipv6Prefix whose address is to be set

Definition at line 549 of file ipv6-address-generator.cc.

References ns3::SimulationSingleton< T >::Get(), and NS_LOG_FUNCTION_NOARGS.

Ipv6Address ns3::Ipv6AddressGenerator::NextAddress ( const Ipv6Prefix  prefix)
static

Allocate the next Ipv6Address for the configured network and prefix.

This operation is a post-increment, meaning that the first address allocated will be the one that was initially configured.

Parameters
prefixThe Ipv6Prefix for the current network

Definition at line 569 of file ipv6-address-generator.cc.

References ns3::SimulationSingleton< T >::Get(), and NS_LOG_FUNCTION_NOARGS.

Referenced by ns3::Ipv6AddressHelper::NewAddress().

Ipv6Address ns3::Ipv6AddressGenerator::NextNetwork ( const Ipv6Prefix  prefix)
static

Get the next network acoording to the given Ipv6Prefix.

This operation is a pre-increment, meaning that the internal state is changed before returning the new network address.

This also resets the interface ID to the base interface ID that was used for initialization.

Parameters
prefixThe Ipv6Prefix used to set the next network

Definition at line 531 of file ipv6-address-generator.cc.

References ns3::SimulationSingleton< T >::Get(), and NS_LOG_FUNCTION_NOARGS.

Referenced by ns3::PointToPointStarHelper::AssignIpv6Addresses(), ns3::PointToPointGridHelper::AssignIpv6Addresses(), ns3::CsmaStarHelper::AssignIpv6Addresses(), ns3::PointToPointDumbbellHelper::AssignIpv6Addresses(), and ns3::Ipv6AddressHelper::NewNetwork().


The documentation for this class was generated from the following files: