Having a wider subnet mask for your DHCP pool than the interface itself (255.255.255.0
vs 255.255.255.192
) is going to be problematic. That will mean that other hosts on the network with static allocations won't be able to reach most of the pool because they'll have no route to it (since in their eyes, these addresses aren't adjacent) or else they will have the extra-hop problem because they'll have to go through the router, which may or may not send them an ICMP redirect.
The existing dnsmasq.init in main is passing the parameters as:
ipcalc.sh 192.168.88.1/255.255.255.0 100 100
So ipcalc.sh doesn’t yet seem to accept this format without the pending PR.
Okay, confirmed. Damn. The rewrite to shell was never supposed to take this long to get merged...
1 Like
Try now with master
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.