-
Notifications
You must be signed in to change notification settings - Fork 0
Future Work
Arvind Ramachandran edited this page Dec 1, 2017
·
27 revisions
-
Server should be capable of storing a set of address pools which can be assigned to clients requesting an IP from multiple subnets.
- The current server configuration provides IP addresses to incoming clients from a single address pool.
- This pool consists of IP addresses from only the server's subnet.
- The InstallDhcpServer() function adds all the attributes of the server including its own IP address and launches the start application.
- This should be split into 2 separate functions :
-
ApplicationContainer InstallDhcpServer(Ptr<NetDevice> netDevice, Ipv4Address serverAddr, Ipv4Mask Mask)
This function will allocate the server IP address to the Ptr argument passed, install a default traffic control configuration, creates a DHCP server app and returns that pointer.
-
ApplicationContainer AddAddressPool(ApplicationContainer dhcpServerApp, Ipv4Address minAddr, Ipv4Address maxAddr, Ipv4Address gateway)
-