How to convert an IPv4 address into a integer in C#? - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T06:34:01Zhttp://stackoverflow.com/feeds/question/461742http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/461742/how-to-convert-an-ipv4-address-into-a-integer-in-c5How to convert an IPv4 address into a integer in C#?GateKiller2009-01-20T15:25:57Z2009-06-06T14:12:33Z
<p>I was going to attempt to write this function myself but I thought that someone on SO might know the answer :)</p>
<p>I'm basically looking for a function that will convert a standard IPv4 address into an Integer. Bonus points available for a function that will do the opposite.</p>
<p>Solution should be in C#.net.</p>
http://stackoverflow.com/questions/461742/how-to-convert-an-ipv4-address-into-a-integer-in-c/461766#46176622Answer by Mehrdad Afshari for How to convert an IPv4 address into a integer in C#?Mehrdad Afshari2009-01-20T15:30:24Z2009-06-06T14:12:33Z<pre><code>// IPv4
int intAddress = BitConverter.ToInt32(IPAddress.Parse(address).GetAddressBytes(), 0);
string ipAddress = new IPAddress(BitConverter.GetBytes(intAddress)).ToString();
</code></pre>
<p>EDIT: As noted in other answers, when running this snippet on a little endian machine, it'll give out the bytes in the reverse order as defined by the standard. However, the question asks for a mapping between an integer and an IP address, not converting to the standard integer format. To do so, you have to consider the endian-ness of the machine you're running on.</p>
http://stackoverflow.com/questions/461742/how-to-convert-an-ipv4-address-into-a-integer-in-c/461770#46177029Answer by Barry Kelly for How to convert an IPv4 address into a integer in C#?Barry Kelly2009-01-20T15:30:52Z2009-01-21T09:17:59Z<p>32-bit unsigned integers <strong>are</strong> IPv4 addresses. Meanwhile, the <code>IPAddress.Address</code> property, while deprecated, is an Int64 that returns the unsigned 32-bit value of the IPv4 address (the catch is, it's in network byte order, so you need to swap it around).</p>
<p>For example, my local google.com is at <code>64.233.187.99</code>. That's equivalent to:</p>
<pre><code>64*2^24 + 233*2^16 + 187*2^8 + 99
= 1089059683
</code></pre>
<p>And indeed, <a href="http://1089059683/" rel="nofollow">http://1089059683/</a> works as expected (at least in Windows, tested with IE, Firefox and Chrome; doesn't work on iPhone though).</p>
<p>Here's a test program to show both conversions, including the network/host byte swapping:</p>
<pre><code>using System;
using System.Net;
class App
{
static long ToInt(string addr)
{
// careful of sign extension: convert to uint first;
// unsigned NetworkToHostOrder ought to be provided.
return (long) (uint) IPAddress.NetworkToHostOrder(
(int) IPAddress.Parse(addr).Address);
}
static string ToAddr(long address)
{
return IPAddress.Parse(address.ToString()).ToString();
// This also works:
// return new IPAddress((uint) IPAddress.HostToNetworkOrder(
// (int) address)).ToString();
}
static void Main()
{
Console.WriteLine(ToInt("64.233.187.99"));
Console.WriteLine(ToAddr(1089059683));
}
}
</code></pre>
http://stackoverflow.com/questions/461742/how-to-convert-an-ipv4-address-into-a-integer-in-c/461801#4618010Answer by Andrew Hare for How to convert an IPv4 address into a integer in C#?Andrew Hare2009-01-20T15:36:38Z2009-01-20T15:36:38Z<p>If you were interested in the function not just the answer here is how it is done:</p>
<pre><code>int ipToInt(int first, int second,
int third, int fourth)
{
return Convert.ToInt32((first * Math.Pow(256, 3))
+ (second * Math.Pow(256, 2)) + (third * 256) + fourth);
}
</code></pre>
<p>with <code>first</code> through <code>fourth</code> being the segments of the IPv4 address.</p>
http://stackoverflow.com/questions/461742/how-to-convert-an-ipv4-address-into-a-integer-in-c/464464#46446412Answer by Davy Landman for How to convert an IPv4 address into a integer in C#?Davy Landman2009-01-21T08:41:30Z2009-01-21T08:41:30Z<p>@Barry Kelly and @Andrew Hare, actually, I don't think multiplying is the most clear way to do this (alltough correct).</p>
<p>An Int32 "formatted" IP address can be seen as the following structure</p>
<pre><code>[StructLayout(LayoutKind.Sequential, Pack = 1)]
struct IPv4Address
{
public Byte A;
public Byte B;
public Byte C;
public Byte D;
}
// to actually cast it from or to an int32 I think you
// need to reverse the fields due to little endian
</code></pre>
<p>So to convert the ip address 64.233.187.99 you could do:</p>
<pre><code>(64 = 0x40) << 24 == 0x40000000
(233 = 0xE9) << 16 == 0x00E90000
(187 = 0xBB) << 8 == 0x0000BB00
(99 = 0x63) == 0x00000063
---------- =|
0x40E9BB63
</code></pre>
<p>so you could add them up using + or you could binairy or them together. Resulting in 0x40E9BB63 which is 1089059683. (In my opinion looking in hex it's much easier to see the bytes)</p>
<p>So you could write the function as:</p>
<pre><code>int ipToInt(int first, int second,
int third, int fourth)
{
return (first << 24) | (second << 16) | (third << 8) | (fourth);
}
</code></pre>
http://stackoverflow.com/questions/461742/how-to-convert-an-ipv4-address-into-a-integer-in-c/468420#4684200Answer by abelenky for How to convert an IPv4 address into a integer in C#?abelenky2009-01-22T08:32:05Z2009-01-22T08:32:05Z<p>Take a look at some of the crazy parsing examples in .Net's IPAddress.Parse:
(<a href="http://msdn.microsoft.com/en-us/library/system.net.ipaddress.parse.aspx" rel="nofollow">MSDN</a>)</p>
<p>"65536" ==> 0.0.255.255<bR>
"20.2" ==> 20.0.0.2<bR>
"20.65535" ==> 20.0.255.255<bR>
"128.1.2" ==> 128.1.0.2 <bR></p>
http://stackoverflow.com/questions/461742/how-to-convert-an-ipv4-address-into-a-integer-in-c/468503#4685030Answer by Coolcoder for How to convert an IPv4 address into a integer in C#?Coolcoder2009-01-22T09:18:08Z2009-01-22T09:18:08Z<p>My question was closed, I have no idea why . The accepted answer here is not the same as what I need. </p>
<p>This gives me the correct integer value for an IP..</p>
<pre><code>public double IPAddressToNumber(string IPaddress)
{
int i;
string [] arrDec;
double num = 0;
if (IPaddress == "")
{
return 0;
}
else
{
arrDec = IPaddress.Split('.');
for(i = arrDec.Length - 1; i >= 0 ; i = i -1)
{
num += ((int.Parse(arrDec[i])%256) * Math.Pow(256 ,(3 - i )));
}
return num;
}
}
</code></pre>
http://stackoverflow.com/questions/461742/how-to-convert-an-ipv4-address-into-a-integer-in-c/827109#8271090Answer by James Chambers for How to convert an IPv4 address into a integer in C#?James Chambers2009-05-05T21:59:31Z2009-05-05T21:59:31Z<p>here's a solution that I worked out today (should've googled first!):</p>
<pre><code> private static string IpToDecimal2(string ipAddress)
{
// need a shift counter
int shift = 3;
// loop through the octets and compute the decimal version
var octets = ipAddress.Split('.').Select(p => long.Parse(p));
return octets.Aggregate(0L, (total, octet) => (total + (octet << (shift-- * 8)))).ToString();
}
</code></pre>
<p>i'm using LINQ, lambda and some of the extensions on generics, so while it produces the same result it uses some of the new language features and you can do it in three lines of code.</p>
<p>i have the explanation on my blog if you're interested.</p>
<p>cheers,
-jc</p>
http://stackoverflow.com/questions/461742/how-to-convert-an-ipv4-address-into-a-integer-in-c/921274#9212740Answer by Rubens Farias for How to convert an IPv4 address into a integer in C#?Rubens Farias2009-05-28T14:55:53Z2009-05-28T14:55:53Z<p>Try this ones:</p>
<pre><code>private int IpToInt32(string ipAddress)
{
return BitConverter.ToInt32(IPAddress.Parse(ipAddress).GetAddressBytes().Reverse().ToArray(), 0);
}
private string Int32ToIp(int ipAddress)
{
return new IPAddress(BitConverter.GetBytes(ipAddress).Reverse().ToArray()).ToString();
}
</code></pre>
http://stackoverflow.com/questions/461742/how-to-convert-an-ipv4-address-into-a-integer-in-c/958542#9585420Answer by Marian for How to convert an IPv4 address into a integer in C#?Marian2009-06-05T23:18:09Z2009-06-05T23:18:09Z<p>I think this is wrong: "65536" ==> 0.0.255.255"
Should be: "65535" ==> 0.0.255.255" or "65536" ==> 0.1.0.0"</p>