What would be a efficient way to generate all possible IP v4 addresses? other than iterating all bytes in a one giant nested for loop.
|
feedback
|
|
Edit: My previous answer would have gone from
Note: if you're confused how this loop will ever end (i.e. how adding 1 to -1 enough times makes it -1 again), read up on two's complement. Basically, adding one to Old answer. Still hits all IPs, but probably not in the order you desire:
Please note: If the loop control variable was an | |||||||||
feedback
|
|
Not all IPv4 addresses are valid, depending on what purpose they're intended for. See the section on reserved address blocks and the linked RFCs here: http://en.wikipedia.org/wiki/IPv4 So depending on what you want to do, you might need to check for reserved addresses and leave them out. | |||
|
feedback
|
|
All Possible? 0.0.0.0 to 255.255.255.255 which is 0 to 0xFFFFFFFF | |||||||||
feedback
|
|
You can start with an unsigned int/long (32-bit data type) initialized to zero and keep incrementing until you reach 0xffffffff. The increment operator is usually slightly more efficient than nested loops. Use bit masks and bit shift operators to pull out any given byte that you are interested in. | |||
|
feedback
|
|
In terms of "efficiency", I don't think there is a much better way than looping through all possible values. Do take note of two things: 1. There are a lot of addresses, so it won't be that efficient. 2. Not all IP addresses are valid (and there are plenty of addresses which you probably don't intend to go over). For an example of what IP addresses are valid, take note that all addresses between 224.0.0.0 and 239.255.255.255 are multicast addresses, all addresses starting with 127.x.x.x are invalid, etc. | |||
|
feedback
|