Good morning, I need to create a list of valid ips from my network. I have 15 class A subnets. That is, my network is 10.5.5.0 by 10.5.20.255 . I was thinking of something like: $IP
for (i=1; i<255; i++)
do $IP.$i
However, in this logic, I would only create ips of class C.
This list would be inserted into a mysql table.
I look forward to suggestions.