Alright, so I setup a pve DHCP server that runs webmin to manage our business network. As of right now, all the computers on our network are getting their IP leased from the default subnet 192.168.0.2 - 192.168.0.254. I'm trying to figure out how to get new leases to be taken from 192.168.1.xx, instead of defaulting to the 192.168.0.xx. What changes do I need to make to our subnet in webmin for this to happen? I'm trying to keep the range of 192.168.0.xx for our private computers, while new client computers can connect under the range of 192.168.1.xx.
EDIT 12/14/16:
Alright, I found something on the Redhat forums that solved my problem. So for anyone in the future who runs into this issue, you need a shared network defined if you want to have multiple subnets on the same physical router. Example:
EDIT 12/14/16:
Alright, I found something on the Redhat forums that solved my problem. So for anyone in the future who runs into this issue, you need a shared network defined if you want to have multiple subnets on the same physical router. Example:
Code:
shared-network name {
option domain-search "test.redhat.com";
option domain-name-servers ns1.redhat.com, ns2.redhat.com;
option routers 192.168.0.254;
#more parameters for EXAMPLE shared-network
subnet 192.168.1.0 netmask 255.255.252.0 {
#parameters for subnet
range 192.168.1.1 192.168.1.254;
}
subnet 192.168.2.0 netmask 255.255.252.0 {
#parameters for subnet
range 192.168.2.1 192.168.2.254;
}
}
Last edited: