Search code examples
asp.netc#-4.0ip-addresslan

how to get the network ip address (Internet) using asp.net?


i am developing asp.net website , now my problem is how to get the lan connected ip address using c# code , for example open http://whatismyipaddress.com/ display the IP Information: 183.82.77.56 like that i have to get ip address , now i am writing like this

//Get Lan Connected IP address method
        public string GetLanIPAddress()
        {
            //Get the Host Name
            string stringHostName = Dns.GetHostName();
            //Get The Ip Host Entry
            IPAddress[] arrIpAddress1 = Dns.GetHostAddresses(stringHostName);

            IPHostEntry ipHostEntries = Dns.GetHostEntry(stringHostName);
            //Get The Ip Address From The Ip Host Entry Address List
            IPAddress[] arrIpAddress = ipHostEntries.AddressList;
            return arrIpAddress[arrIpAddress.Length - 1].ToString();
        }
        //Get Visitor IP address method
        public string GetVisitorIpAddress()
        {
            string stringIpAddress;
            stringIpAddress = Request.ServerVariables["HTTP_X_FORWARDED_FOR"];
            if (stringIpAddress == null) //may be the HTTP_X_FORWARDED_FOR is null
            {
                stringIpAddress = Request.ServerVariables["REMOTE_ADDR"];//we can use REMOTE_ADDR
                string add = HttpContext.Current.Request.UserHostAddress;
            }
            return "Your ip is " + stringIpAddress;
        }

but wrong outputs, please help me any one.

Thank u hemanth


Solution

  • Add this code

            foreach (IPAddress ipaddress in ipHostEntries.AddressList)
            {
                IPStr = ipaddress.ToString();
                return IPStr;
            }
            return IPStr;
    

    try this gateway address will be you required

       IPGlobalProperties ipProperties = IPGlobalProperties.GetIPGlobalProperties();
            Console.WriteLine(ipProperties.HostName);
    
            foreach (NetworkInterface networkCard in NetworkInterface.GetAllNetworkInterfaces())
            {
                foreach (GatewayIPAddressInformation gatewayAddr in networkCard.GetIPProperties().GatewayAddresses)
                {
                    Console.WriteLine("Information: ");
                    Console.WriteLine("Interface type: {0}", networkCard.NetworkInterfaceType.ToString());
                    Console.WriteLine("Name: {0}", networkCard.Name);
                    Console.WriteLine("Id: {0}", networkCard.Id);
                    Console.WriteLine("Description: {0}", networkCard.Description);
                    Console.WriteLine("Gateway address: {0}", gatewayAddr.Address.ToString());
                    Console.WriteLine("IP: {0}", System.Net.Dns.GetHostByName(System.Net.Dns.GetHostName()).AddressList[0].ToString());
                    Console.WriteLine("Speed: {0}", networkCard.Speed);
                    Console.WriteLine("MAC: {0}", networkCard.GetPhysicalAddress().ToString());
                }
            }