I have a task to complete in C#. I have an:

IP Address: 192.168.1.57 and a Subnet Mask: 255.255.0.0

I need to find the Subnet number, which would be, in this case, 192.168.0.0.

However, I need to be able to do this in C# WITHOUT the use of the System.Net library (the system I am programming in does not have access to this library).

It seems like the process should be something like:

1) Split the IP Address into Octets

2) Split the Subnet Mask into Octets

3) Subnet Number Octet 1 = IP Address Octet 1 Anded with Subnet Mask Octet 1

4) Subnet Number Octet 2 = IP Address Octet 2 Anded with Subnet Mask Octet 2

5) Subnet Number Octet 3 = IP Address Octet 3 Anded with Subnet Mask Octet 3

6) Subnet Number Octet 4 = IP Address Octet 4 Anded with Subnet Mask Octet 4

7) Join the Subnet Number Octet 1 + . + Subnet Number Octet 2 + . + Subnet Number Octet 3 + . + Subnet Number Octet 4

8) Voila!

However, my C# is pretty poor. Does anyone have the C# knowledge to help?

link|improve this question
Stackoverflow may be more appropriate. Can somebody move this? – Rilindo Dec 16 '11 at 17:48
4  
Stackoverflow is where you want to be, but your logic is incorrect anyway. Forget the octets - they're for human readability. Join them all up, and compare in binary. Brush up on subnetting here: en.wikipedia.org/wiki/Subnetwork – Dan Dec 16 '11 at 17:50
Dan, thanks for the suggestion of a method. However, I am no further forward. I need some C# to do this! – QuietLeni Dec 16 '11 at 19:06
feedback

migrated from serverfault.com Dec 16 '11 at 18:06

This question came from our site for system administrators and desktop support professionals.

2 Answers

up vote 4 down vote accepted

This should accomplish the procedure you described.

string ipAddress = "192.168.1.57";
string subNetMask = "255.255.0.0";

string[] ipOctetsStr = ipAddress.Split('.');
string[] snOctetsStr = subNetMask.Split('.');

if (ipOctetsStr.Length != 4 || snOctetsStr.Length != 4)
{
   throw new ArgumentException("Invalid input strings.");
}

string[] resultOctets = new string[4];
for (int i = 0; i < 4; i++) 
{
    byte ipOctet = Convert.ToByte(ipOctetsStr[i]);
    byte snOctet = Convert.ToByte(snOctetsStr[i]);
    resultOctets[i] = (ipOctet & snOctet).ToString();
}

string resultIP = string.Join(".", resultOctets);
link|improve this answer
Much neater than my solution, because my C# is terrible. Thanks. – QuietLeni Dec 16 '11 at 23:47
If the input is coming from a user, you might want to add better validation; making sure that each of the input octets is actually a number and within the range 0-255. – Rotem Dec 17 '11 at 10:10
No. It is coming directly from the Network Card, thanks. – QuietLeni Jan 3 at 9:44
feedback

Forgive my VB code, but it is almost identical:

    Dim foo As Net.IPAddress = Net.IPAddress.Parse("192.168.1.57")
    Dim bar As Net.IPAddress = Net.IPAddress.Parse("255.255.0.0")

    Dim fooA() As Byte = foo.GetAddressBytes
    Dim barA() As Byte = bar.GetAddressBytes

    Array.Reverse(fooA)
    Array.Reverse(barA)

    Dim fooNum As Integer = BitConverter.ToInt32(fooA, 0)
    Dim barNum As Integer = BitConverter.ToInt32(barA, 0)

    Dim netNum As Integer = fooNum And barNum
    Dim netNumA() As Byte = BitConverter.GetBytes(netNum)
    Array.Reverse(netNumA)

    Dim subNet As New Net.IPAddress(netNumA)
link|improve this answer
the OP does state that System.Net isn't available to them... – Rob Dec 16 '11 at 18:24
I missed that. If they edit the question that should be in bold. – dbasnett Dec 16 '11 at 18:30
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.