nixos/home/routing-common: Split DHCP pools
This commit is contained in:
@@ -76,7 +76,9 @@ in
|
||||
];
|
||||
pools = [
|
||||
{
|
||||
pool = "192.168.68.120 - 192.168.71.240";
|
||||
pool = if index == 0
|
||||
then "192.168.68.120 - 192.168.69.255"
|
||||
else "192.168.70.0 - 192.168.71.240";
|
||||
}
|
||||
];
|
||||
reservations = [
|
||||
@@ -103,7 +105,9 @@ in
|
||||
];
|
||||
pools = [
|
||||
{
|
||||
pool = "192.168.72.120 - 192.168.79.240";
|
||||
pool = if index == 0
|
||||
then "192.168.72.120 - 192.168.75.255"
|
||||
else "192.168.76.0 - 192.168.79.240";
|
||||
}
|
||||
];
|
||||
reservations = [
|
||||
|
Reference in New Issue
Block a user