Actions
Feature #2323
openGUI doesn't allow to configure DHCP server to serve IP addresses belonging to subnets wich are not associated with an interface
Status:
New
Priority:
Low
Assignee:
-
Category:
DHCP (IPv4)
Target version:
-
Start date:
03/29/2012
Due date:
% Done:
0%
Estimated time:
Plus Target Version:
Release Notes:
Description
What I'm trying to do is actually to relay DHCP requests received in multicast by a switch to pfSense using unicast.
So pfSense doesn't need to have an interface configured in the subnet to which the DHCP served IP belongs.
I was able to do this by configuring an empty statement in /var/dhcpd/etc/dhcpd.conf :
subnet 172.24.0.0 netmask 255.255.255.0 { ### The network to which belongs the IP configured on the DHCP enabled interface.
}
subnet 172.24.3.0 netmask 255.255.255.0 { ### No pfSense interface is configured with an IP in this network.
pool {
range 172.24.3.10 172.24.3.0;
}
option routers 172.24.3.3;
option domain-name-servers 172.24.3.3;
}
Updated by Chris Buechler over 12 years ago
- Tracker changed from Bug to Feature
- Priority changed from Normal to Low
- Affected Version deleted (
2.0.1)
Actions