2007-10-05 16:00:04 -07:00
|
|
|
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
|
|
|
|
|
/*
|
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
|
* published by the Free Software Foundation;
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "ns3/log.h"
|
2008-03-31 11:40:40 -07:00
|
|
|
#include "ns3/ipv4-address-generator.h"
|
2007-10-05 16:00:04 -07:00
|
|
|
|
|
|
|
|
NS_LOG_COMPONENT_DEFINE ("TestIpv4");
|
|
|
|
|
|
|
|
|
|
using namespace ns3;
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
main (int argc, char *argv[])
|
|
|
|
|
{
|
|
|
|
|
LogComponentEnable ("TestIpv4", LOG_LEVEL_ALL);
|
|
|
|
|
|
|
|
|
|
NS_LOG_INFO ("Test Ipv4");
|
|
|
|
|
|
|
|
|
|
Ipv4Mask mask1 ("255.0.0.0");
|
|
|
|
|
|
|
|
|
|
for (uint32_t i = 0; i < 10; ++i)
|
|
|
|
|
{
|
2008-03-31 11:40:40 -07:00
|
|
|
Ipv4Address network = Ipv4AddressGenerator::NextNetwork (mask1);
|
|
|
|
|
Ipv4Address address = Ipv4AddressGenerator::NextAddress (mask1);
|
2007-10-05 16:00:04 -07:00
|
|
|
NS_LOG_INFO ("address = " << address);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Ipv4Mask mask2 ("255.255.0.0");
|
2008-03-31 11:40:40 -07:00
|
|
|
Ipv4AddressGenerator::Init (Ipv4Address ("192.168.0.0"), mask2);
|
|
|
|
|
Ipv4AddressGenerator::InitAddress (Ipv4Address ("0.0.0.3"), mask2);
|
2007-10-05 16:00:04 -07:00
|
|
|
|
2008-03-31 11:40:40 -07:00
|
|
|
Ipv4Address network1 = Ipv4AddressGenerator::NextNetwork (mask2);
|
2007-10-05 16:00:04 -07:00
|
|
|
for (uint32_t i = 0; i < 10; ++i)
|
|
|
|
|
{
|
2008-03-31 11:40:40 -07:00
|
|
|
Ipv4Address address = Ipv4AddressGenerator::NextAddress (mask2);
|
2007-10-05 16:00:04 -07:00
|
|
|
NS_LOG_INFO ("address = " << address);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Ipv4Mask mask3 ("255.255.255.0");
|
|
|
|
|
|
|
|
|
|
for (uint32_t i = 0; i < 10; ++i)
|
|
|
|
|
{
|
2008-03-31 11:40:40 -07:00
|
|
|
Ipv4Address network = Ipv4AddressGenerator::NextNetwork (mask3);
|
|
|
|
|
Ipv4Address address = Ipv4AddressGenerator::NextAddress (mask3);
|
2007-10-05 16:00:04 -07:00
|
|
|
NS_LOG_INFO ("address = " << address);
|
|
|
|
|
}
|
|
|
|
|
}
|