A Discrete-Event Network Simulator
API
dhcp-server.h
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2011 UPB
4  * Copyright (c) 2017 NITK Surathkal
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 as
8  * published by the Free Software Foundation;
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18  *
19  * Author: Radu Lupu <rlupu@elcom.pub.ro>
20  * Ankit Deepak <adadeepak8@gmail.com>
21  * Deepti Rajagopal <deeptir96@gmail.com>
22  *
23  */
24 
25 #ifndef DHCP_SERVER_H
26 #define DHCP_SERVER_H
27 
28 #include "ns3/application.h"
29 #include "ns3/ipv4-address.h"
30 #include "dhcp-header.h"
31 #include <map>
32 
33 namespace ns3 {
34 
35 class InetSocketAddress;
36 class Socket;
37 class Packet;
38 
45 class DhcpServer : public Application
46 {
47 public:
52  static TypeId GetTypeId (void);
53 
54  DhcpServer ();
55  virtual ~DhcpServer ();
56 
63  void AddStaticDhcpEntry (Address chaddr, Ipv4Address addr);
64 
65 
66 protected:
67  virtual void DoDispose (void);
68 
69 private:
70  static const int PORT = 67;
71 
76  void NetHandler (Ptr<Socket> socket);
77 
84  void SendOffer (Ptr<NetDevice> iDev, DhcpHeader header, InetSocketAddress from);
85 
92  void SendAck (Ptr<NetDevice> iDev, DhcpHeader header, InetSocketAddress from);
93 
97  void TimerHandler (void);
98 
102  virtual void StartApplication (void);
103 
107  virtual void StopApplication (void);
108 
115 
117  typedef std::map<Address, std::pair<Ipv4Address, uint32_t> > LeasedAddress;
119  typedef std::map<Address, std::pair<Ipv4Address, uint32_t> >::iterator LeasedAddressIter;
121  typedef std::map<Address, std::pair<Ipv4Address, uint32_t> >::const_iterator LeasedAddressCIter;
122 
124  typedef std::list<Address> ExpiredAddress;
126  typedef std::list<Address>::iterator ExpiredAddressIter;
128  typedef std::list<Address>::const_iterator ExpiredAddressCIter;
129 
131  typedef std::list<Ipv4Address> AvailableAddress;
132 
140 };
141 
142 } // namespace ns3
143 
144 #endif /* DHCP_SERVER_H */
a polymophic address class
Definition: address.h:91
The base class for all ns3 applications.
Definition: application.h:61
BOOTP header with DHCP messages supports the following options: Subnet Mask (1), Address Request (50)...
Definition: dhcp-header.h:82
Implements the functionality of a DHCP server.
Definition: dhcp-server.h:46
EventId m_expiredEvent
The Event to trigger TimerHandler.
Definition: dhcp-server.h:139
static const int PORT
Port number of DHCP server.
Definition: dhcp-server.h:70
virtual ~DhcpServer()
Definition: dhcp-server.cc:98
virtual void StopApplication(void)
Stops the DHCP client application.
Definition: dhcp-server.cc:171
AvailableAddress m_availableAddresses
Available addresses to be used (IP addresses)
Definition: dhcp-server.h:135
std::map< Address, std::pair< Ipv4Address, uint32_t > >::const_iterator LeasedAddressCIter
Leased address const iterator - chaddr + IP addr / lease time.
Definition: dhcp-server.h:121
virtual void DoDispose(void)
Destructor implementation.
Definition: dhcp-server.cc:104
void TimerHandler(void)
Modifies the remaining lease time of addresses.
Definition: dhcp-server.cc:184
Time m_rebind
The rebinding time for an address.
Definition: dhcp-server.h:138
Time m_lease
The granted lease time for an address.
Definition: dhcp-server.h:136
static TypeId GetTypeId(void)
Get the type ID.
Definition: dhcp-server.cc:43
Ipv4Mask m_poolMask
The network mask of the pool.
Definition: dhcp-server.h:113
Ptr< Socket > m_socket
The socket bound to port 67.
Definition: dhcp-server.h:109
ExpiredAddress m_expiredAddresses
Expired addresses to be reused (chaddr of the clients)
Definition: dhcp-server.h:134
std::map< Address, std::pair< Ipv4Address, uint32_t > > LeasedAddress
Leased address container - chaddr + IP addr / lease time.
Definition: dhcp-server.h:117
std::list< Ipv4Address > AvailableAddress
Available address container - IP addr.
Definition: dhcp-server.h:131
void AddStaticDhcpEntry(Address chaddr, Ipv4Address addr)
Add a static entry to the pool.
Definition: dhcp-server.cc:386
LeasedAddress m_leasedAddresses
Leased address and their status (cache memory)
Definition: dhcp-server.h:133
Ipv4Address m_minAddress
The first address in the address pool.
Definition: dhcp-server.h:111
std::list< Address >::iterator ExpiredAddressIter
Expired address iterator - chaddr.
Definition: dhcp-server.h:126
Ipv4Address m_gateway
The gateway address.
Definition: dhcp-server.h:114
Time m_renew
The renewal time for an address.
Definition: dhcp-server.h:137
Ipv4Address m_maxAddress
The last address in the address pool.
Definition: dhcp-server.h:112
virtual void StartApplication(void)
Starts the DHCP Server application.
Definition: dhcp-server.cc:110
Ipv4Address m_poolAddress
The network address available to the server.
Definition: dhcp-server.h:110
std::list< Address >::const_iterator ExpiredAddressCIter
Expired address const iterator - chaddr.
Definition: dhcp-server.h:128
void NetHandler(Ptr< Socket > socket)
Handles incoming packets from the network.
Definition: dhcp-server.cc:209
void SendAck(Ptr< NetDevice > iDev, DhcpHeader header, InetSocketAddress from)
Sends DHCP ACK (or NACK) after receiving Request.
Definition: dhcp-server.cc:326
void SendOffer(Ptr< NetDevice > iDev, DhcpHeader header, InetSocketAddress from)
Sends DHCP offer after receiving DHCP Discover.
Definition: dhcp-server.cc:242
std::map< Address, std::pair< Ipv4Address, uint32_t > >::iterator LeasedAddressIter
Leased address iterator - chaddr + IP addr / lease time.
Definition: dhcp-server.h:119
std::list< Address > ExpiredAddress
Expired address container - chaddr.
Definition: dhcp-server.h:124
An identifier for simulation events.
Definition: event-id.h:54
an Inet address class
Ipv4 addresses are stored in host order in this class.
Definition: ipv4-address.h:41
a class to represent an Ipv4 address mask
Definition: ipv4-address.h:256
Simulation virtual time values and global simulation resolution.
Definition: nstime.h:103
a unique identifier for an interface.
Definition: type-id.h:59
Every class exported by the ns3 library is enclosed in the ns3 namespace.