I have an ip range. 192.168.1.0/28
so ips are
192.168.1.1
192.168.1.2
.
.
.
192.168.1.13
192.168.1.14
Let's say some of these ips are being used. And this information is available to me.
192.168.1.1
192.168.1.2
Now, I need to calculate all the available addresses left in the range given. Answer should be
192.168.1.3
192.168.1.4
.
.
192.168.1.13
192.168.1.14
How can I calculate this with vbscript?
I have used a very easy range for the sake of making the question simple but in real world I need to perform this operation on much larger subnets.
Thanks