Hi!
I am using a database for registering ip adresses.
now I want to know which ip adresses are still free
so I want to check a subnet 2 - 254 if there are any unused numbers in it.
My try was the following:
I created a table with only 1 field and entered the number 2 to 254
then I tried to make a query with my ip-field (last field of the ipadress) but the output shows only when both fields match.
But it should look like this:
So I can see that 48, 51, 52 are free.
please help me
I am using a database for registering ip adresses.
now I want to know which ip adresses are still free
so I want to check a subnet 2 - 254 if there are any unused numbers in it.
My try was the following:
I created a table with only 1 field and entered the number 2 to 254
then I tried to make a query with my ip-field (last field of the ipadress) but the output shows only when both fields match.
But it should look like this:
Code:
ip-range in-use
.
.
.
45 45
46 46
47 47
48
49 49
50 50
51
52
53 53
.
.
.
So I can see that 48, 51, 52 are free.
please help me