Hi, I am looking for a way to add an entire IP block to IP–>Addresses. I need to add 254 and was hoping I do not need to input one at a time.
Attached a screenshot. Thanks!!
DocScreenshot.docx (80.8 KB)
Hi, I am looking for a way to add an entire IP block to IP–>Addresses. I need to add 254 and was hoping I do not need to input one at a time.
Attached a screenshot. Thanks!!
DocScreenshot.docx (80.8 KB)
What’s the reason?
Try explaining,
probably,
for to do the same thing that forces you to do this,
there is a better way to do it …
using scripts maybe much more easier
Normally for such a thing I would use a script on my computer to generate the proper commandline config, and then import or paste that into the router.
It would also be possible to make a script on the router but that is extremely difficult to debug and likely not worth the trouble.
E.g. in bash one would do something like:
for (( i = 1; i < 255; i++ ))
do
echo "/ip address add address=192.168.1.$i interface=bridge1"
done
and the copy/paste the output into a telnet/ssh session to the router.