How can generate a range of IP addresses from a start and end IP address?
Example for a network \"192.168.0.0/24\":
String start = \"192.168.0.2\" S
Start at 2, count to 254, and put a "192.168.0." in front of it:
for (int i = 2; i <= 254; i++) { System.out.println("192.168.0." + i); }