Code: Select all
/ip dhcp-server network
add address=10.1.10.0/32 comment=defconf dns-server=10.1.10.1 gateway=\
10.1.10.1 netmask=24
add address=10.1.10.0/24 comment=defconf dns-server=10.1.10.1 gateway=\
10.1.10.1 netmask=24
/ip dhcp-server network
add address=10.1.10.0/32 comment=defconf dns-server=10.1.10.1 gateway=\
10.1.10.1 netmask=24
add address=10.1.10.0/24 comment=defconf dns-server=10.1.10.1 gateway=\
10.1.10.1 netmask=24
Address: 10.1.10.0
Gateway: 10.1.10.1
Netmask: 24
Is not wrong, is just for exactly 10.1.10.0 (/32) that is provided dns-server=10.1.10.1 gateway=10.1.10.1 netmask=24The first one is "wrong".
address=10.1.10.0/32 with netmask=24 makes no sense, but it is strange that it is the result of an upgrade, or, if it is, there may well be other things you have not noticed.
/ip dhcp-server network # the address field really is a CIDR used for IPs interval, is not one address literally... # to 10.1.10.15 provide this... add address=10.1.10.15/32 comment=defconf dns-server=10.1.10.2 gateway=10.1.10.2 netmask=24 # from 10.1.10.16 to 10.1.10.32 provide this... add address=10.1.10.16/28 comment=defconf dns-server=8.8.8.8 gateway=10.1.10.8 netmask=24 # from 10.1.10.0 to 10.1.10.255 provide this... add address=10.1.10.0/24 comment=defconf dns-server=10.1.10.1 gateway=10.1.10.1 netmask=24