How to convert an IPv4 address into a integer in C#? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T06:34:01Z http://stackoverflow.com/feeds/question/461742 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/461742/how-to-convert-an-ipv4-address-into-a-integer-in-c 5 How to convert an IPv4 address into a integer in C#? GateKiller 2009-01-20T15:25:57Z 2009-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#461766 22 Answer by Mehrdad Afshari for How to convert an IPv4 address into a integer in C#? Mehrdad Afshari 2009-01-20T15:30:24Z 2009-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#461770 29 Answer by Barry Kelly for How to convert an IPv4 address into a integer in C#? Barry Kelly 2009-01-20T15:30:52Z 2009-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#461801 0 Answer by Andrew Hare for How to convert an IPv4 address into a integer in C#? Andrew Hare 2009-01-20T15:36:38Z 2009-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#464464 12 Answer by Davy Landman for How to convert an IPv4 address into a integer in C#? Davy Landman 2009-01-21T08:41:30Z 2009-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) &lt;&lt; 24 == 0x40000000 (233 = 0xE9) &lt;&lt; 16 == 0x00E90000 (187 = 0xBB) &lt;&lt; 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 &lt;&lt; 24) | (second &lt;&lt; 16) | (third &lt;&lt; 8) | (fourth); } </code></pre> http://stackoverflow.com/questions/461742/how-to-convert-an-ipv4-address-into-a-integer-in-c/468420#468420 0 Answer by abelenky for How to convert an IPv4 address into a integer in C#? abelenky 2009-01-22T08:32:05Z 2009-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#468503 0 Answer by Coolcoder for How to convert an IPv4 address into a integer in C#? Coolcoder 2009-01-22T09:18:08Z 2009-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 &gt;= 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#827109 0 Answer by James Chambers for How to convert an IPv4 address into a integer in C#? James Chambers 2009-05-05T21:59:31Z 2009-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 =&gt; long.Parse(p)); return octets.Aggregate(0L, (total, octet) =&gt; (total + (octet &lt;&lt; (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#921274 0 Answer by Rubens Farias for How to convert an IPv4 address into a integer in C#? Rubens Farias 2009-05-28T14:55:53Z 2009-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#958542 0 Answer by Marian for How to convert an IPv4 address into a integer in C#? Marian 2009-06-05T23:18:09Z 2009-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>