When a IP-Range is written as aaa.bbb.ccc.ddd/ I need to calculate the first and the last included ip address in this range with C#.
Example:
Input: 192.168.0.1/25
Result: 192.168.0.1 - 192.168.0.126
|
|
When a IP-Range is written as aaa.bbb.ccc.ddd/ I need to calculate the first and the last included ip address in this range with C#. Example: Input: 192.168.0.1/25 Result: 192.168.0.1 - 192.168.0.126
|
||
|
|
|
|
my good friend Alessandro have a nice post regarding bit operators in C#, you should read about it so you know what to do. It's pretty easy. If you break down the IP given to you to binary, the network address is the ip address where all of the host bits (the 0's in the subnet mask) are 0,and the last address, the broadcast address, is where all the host bits are 1. For example:
The bolded parts is the HOST bits (the rest are network bits). If you turn all the host bits to 0 on the IP, you get the first possible IP:
If you turn all the host bits to 1's, then you get the last possible IP (aka the broadcast address):
So for my example:
|
||||
|
|
|
I'll just post the code:
|
|||
|
|
|
|
Invert mask (XOR with ones), AND it with IP. Add 1. This will be the starting range. OR IP with mask. This will be the ending range. |
||
|
|
|
|
You might already know this, but to check that you're getting this stuff right have a look at http://www.subnet-calculator.com/ - you can see there how the bits represent the network and host portions of the address. |
||
|
|