1# DHCPv4 subnet declaration inside another subnet declaration config
2
3# DHCPv4 subnet declaration
4subnet 10.254.239.32 netmask 255.255.255.224 {
5 # can't put another subnet declaration here
6 subnet 10.5.5.0 netmask 255.255.255.224 {
7 default-lease-time 1800;
8 }
9}
10
11