How to get Client or visitor IP Address:: Despite multiple tries Didn't get solution:
How to get Client or visitor IP Address:: Despite multiple tries Didn't get solution: Below what I tried:
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
string ipAddress33 = Request.UserHostAddress.ToString();
string strHostName = System.Net.Dns.GetHostName();
string clientIPAddress22 = System.Net.Dns.GetHostAddresses(strHostName).GetValue(1).ToString();
Response.Write("System.Net.Dns.GetHostAddresses(strHostName).GetValue(1).ToString(); : " + clientIPAddress22 + "<br />");
string ipaddress;
string IP = Request.UserHostAddress;
string clientIPAddress = this.Page.Request.ServerVariables["REMOTE_ADDR"];
string IP2 = Environment.GetEnvironmentVariable("CLIENTNAME");
ipaddress = Request.ServerVariables["HTTP_X_FORWARDED_FOR"];
if (ipaddress == "" || ipaddress == null)
ipaddress = Request.ServerVariables["REMOTE_ADDR"];
Response.Write("Request.ServerVariables['HTTP_X_FORWARDED_FOR'] : " + ipaddress + "<br />");
Response.Write("Request.UserHostAddress.ToString() : " + ipAddress33 + "<br />");
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
}
Response.Write("Request.ServerVariables['REMOTE_ADDR'] : " + stringIpAddress + "<br />");
//Get the Host Name
string stringHostName = Dns.GetHostName();
//Get The Ip Host Entry
IPHostEntry ipHostEntries = Dns.GetHostEntry(stringHostName);
//Get The Ip Address From The Ip Host Entry Address List
IPAddress arrIpAddress = ipHostEntries.AddressList;
Response.Write("Dns.GetHostName(): " + arrIpAddress[arrIpAddress.Length - 1].ToString());
}
}
This is the results I got:
System.Net.Dns.GetHostAddresses(strHostName).GetValue(1).ToString(); : 190.80.90.75
Request.ServerVariables['HTTP_X_FORWARDED_FOR'] : 190.80.90.225
Request.UserHostAddress.ToString() : 190.80.90.225
Request.ServerVariables['REMOTE_ADDR'] : 190.80.90.225
Dns.GetHostName(): 190.80.90.75
Which is not the correct IP address of the visitor.
c# vb.net
add a comment |
How to get Client or visitor IP Address:: Despite multiple tries Didn't get solution: Below what I tried:
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
string ipAddress33 = Request.UserHostAddress.ToString();
string strHostName = System.Net.Dns.GetHostName();
string clientIPAddress22 = System.Net.Dns.GetHostAddresses(strHostName).GetValue(1).ToString();
Response.Write("System.Net.Dns.GetHostAddresses(strHostName).GetValue(1).ToString(); : " + clientIPAddress22 + "<br />");
string ipaddress;
string IP = Request.UserHostAddress;
string clientIPAddress = this.Page.Request.ServerVariables["REMOTE_ADDR"];
string IP2 = Environment.GetEnvironmentVariable("CLIENTNAME");
ipaddress = Request.ServerVariables["HTTP_X_FORWARDED_FOR"];
if (ipaddress == "" || ipaddress == null)
ipaddress = Request.ServerVariables["REMOTE_ADDR"];
Response.Write("Request.ServerVariables['HTTP_X_FORWARDED_FOR'] : " + ipaddress + "<br />");
Response.Write("Request.UserHostAddress.ToString() : " + ipAddress33 + "<br />");
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
}
Response.Write("Request.ServerVariables['REMOTE_ADDR'] : " + stringIpAddress + "<br />");
//Get the Host Name
string stringHostName = Dns.GetHostName();
//Get The Ip Host Entry
IPHostEntry ipHostEntries = Dns.GetHostEntry(stringHostName);
//Get The Ip Address From The Ip Host Entry Address List
IPAddress arrIpAddress = ipHostEntries.AddressList;
Response.Write("Dns.GetHostName(): " + arrIpAddress[arrIpAddress.Length - 1].ToString());
}
}
This is the results I got:
System.Net.Dns.GetHostAddresses(strHostName).GetValue(1).ToString(); : 190.80.90.75
Request.ServerVariables['HTTP_X_FORWARDED_FOR'] : 190.80.90.225
Request.UserHostAddress.ToString() : 190.80.90.225
Request.ServerVariables['REMOTE_ADDR'] : 190.80.90.225
Dns.GetHostName(): 190.80.90.75
Which is not the correct IP address of the visitor.
c# vb.net
How do you know that the address is wrong?
– Nico Schertler
Nov 20 at 7:59
I matched with the LAN IP address provided to the system and it didn't matched
– sunil492307
Nov 20 at 10:35
The global IP address that your computer uses to communicate with the internet is most likely not the same as the local one in your LAN.
– Nico Schertler
Nov 20 at 14:03
Thanks Nico schertler, I came to know that when we are using subnets and firewalls, it is not possible to get the clients ip address i.e lan ip address.
– sunil492307
Nov 20 at 17:40
add a comment |
How to get Client or visitor IP Address:: Despite multiple tries Didn't get solution: Below what I tried:
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
string ipAddress33 = Request.UserHostAddress.ToString();
string strHostName = System.Net.Dns.GetHostName();
string clientIPAddress22 = System.Net.Dns.GetHostAddresses(strHostName).GetValue(1).ToString();
Response.Write("System.Net.Dns.GetHostAddresses(strHostName).GetValue(1).ToString(); : " + clientIPAddress22 + "<br />");
string ipaddress;
string IP = Request.UserHostAddress;
string clientIPAddress = this.Page.Request.ServerVariables["REMOTE_ADDR"];
string IP2 = Environment.GetEnvironmentVariable("CLIENTNAME");
ipaddress = Request.ServerVariables["HTTP_X_FORWARDED_FOR"];
if (ipaddress == "" || ipaddress == null)
ipaddress = Request.ServerVariables["REMOTE_ADDR"];
Response.Write("Request.ServerVariables['HTTP_X_FORWARDED_FOR'] : " + ipaddress + "<br />");
Response.Write("Request.UserHostAddress.ToString() : " + ipAddress33 + "<br />");
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
}
Response.Write("Request.ServerVariables['REMOTE_ADDR'] : " + stringIpAddress + "<br />");
//Get the Host Name
string stringHostName = Dns.GetHostName();
//Get The Ip Host Entry
IPHostEntry ipHostEntries = Dns.GetHostEntry(stringHostName);
//Get The Ip Address From The Ip Host Entry Address List
IPAddress arrIpAddress = ipHostEntries.AddressList;
Response.Write("Dns.GetHostName(): " + arrIpAddress[arrIpAddress.Length - 1].ToString());
}
}
This is the results I got:
System.Net.Dns.GetHostAddresses(strHostName).GetValue(1).ToString(); : 190.80.90.75
Request.ServerVariables['HTTP_X_FORWARDED_FOR'] : 190.80.90.225
Request.UserHostAddress.ToString() : 190.80.90.225
Request.ServerVariables['REMOTE_ADDR'] : 190.80.90.225
Dns.GetHostName(): 190.80.90.75
Which is not the correct IP address of the visitor.
c# vb.net
How to get Client or visitor IP Address:: Despite multiple tries Didn't get solution: Below what I tried:
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
string ipAddress33 = Request.UserHostAddress.ToString();
string strHostName = System.Net.Dns.GetHostName();
string clientIPAddress22 = System.Net.Dns.GetHostAddresses(strHostName).GetValue(1).ToString();
Response.Write("System.Net.Dns.GetHostAddresses(strHostName).GetValue(1).ToString(); : " + clientIPAddress22 + "<br />");
string ipaddress;
string IP = Request.UserHostAddress;
string clientIPAddress = this.Page.Request.ServerVariables["REMOTE_ADDR"];
string IP2 = Environment.GetEnvironmentVariable("CLIENTNAME");
ipaddress = Request.ServerVariables["HTTP_X_FORWARDED_FOR"];
if (ipaddress == "" || ipaddress == null)
ipaddress = Request.ServerVariables["REMOTE_ADDR"];
Response.Write("Request.ServerVariables['HTTP_X_FORWARDED_FOR'] : " + ipaddress + "<br />");
Response.Write("Request.UserHostAddress.ToString() : " + ipAddress33 + "<br />");
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
}
Response.Write("Request.ServerVariables['REMOTE_ADDR'] : " + stringIpAddress + "<br />");
//Get the Host Name
string stringHostName = Dns.GetHostName();
//Get The Ip Host Entry
IPHostEntry ipHostEntries = Dns.GetHostEntry(stringHostName);
//Get The Ip Address From The Ip Host Entry Address List
IPAddress arrIpAddress = ipHostEntries.AddressList;
Response.Write("Dns.GetHostName(): " + arrIpAddress[arrIpAddress.Length - 1].ToString());
}
}
This is the results I got:
System.Net.Dns.GetHostAddresses(strHostName).GetValue(1).ToString(); : 190.80.90.75
Request.ServerVariables['HTTP_X_FORWARDED_FOR'] : 190.80.90.225
Request.UserHostAddress.ToString() : 190.80.90.225
Request.ServerVariables['REMOTE_ADDR'] : 190.80.90.225
Dns.GetHostName(): 190.80.90.75
Which is not the correct IP address of the visitor.
c# vb.net
c# vb.net
asked Nov 20 at 6:23
sunil492307
63
63
How do you know that the address is wrong?
– Nico Schertler
Nov 20 at 7:59
I matched with the LAN IP address provided to the system and it didn't matched
– sunil492307
Nov 20 at 10:35
The global IP address that your computer uses to communicate with the internet is most likely not the same as the local one in your LAN.
– Nico Schertler
Nov 20 at 14:03
Thanks Nico schertler, I came to know that when we are using subnets and firewalls, it is not possible to get the clients ip address i.e lan ip address.
– sunil492307
Nov 20 at 17:40
add a comment |
How do you know that the address is wrong?
– Nico Schertler
Nov 20 at 7:59
I matched with the LAN IP address provided to the system and it didn't matched
– sunil492307
Nov 20 at 10:35
The global IP address that your computer uses to communicate with the internet is most likely not the same as the local one in your LAN.
– Nico Schertler
Nov 20 at 14:03
Thanks Nico schertler, I came to know that when we are using subnets and firewalls, it is not possible to get the clients ip address i.e lan ip address.
– sunil492307
Nov 20 at 17:40
How do you know that the address is wrong?
– Nico Schertler
Nov 20 at 7:59
How do you know that the address is wrong?
– Nico Schertler
Nov 20 at 7:59
I matched with the LAN IP address provided to the system and it didn't matched
– sunil492307
Nov 20 at 10:35
I matched with the LAN IP address provided to the system and it didn't matched
– sunil492307
Nov 20 at 10:35
The global IP address that your computer uses to communicate with the internet is most likely not the same as the local one in your LAN.
– Nico Schertler
Nov 20 at 14:03
The global IP address that your computer uses to communicate with the internet is most likely not the same as the local one in your LAN.
– Nico Schertler
Nov 20 at 14:03
Thanks Nico schertler, I came to know that when we are using subnets and firewalls, it is not possible to get the clients ip address i.e lan ip address.
– sunil492307
Nov 20 at 17:40
Thanks Nico schertler, I came to know that when we are using subnets and firewalls, it is not possible to get the clients ip address i.e lan ip address.
– sunil492307
Nov 20 at 17:40
add a comment |
2 Answers
2
active
oldest
votes
according to this answer you can use this :
protected void GetUser_IP()
{
string VisitorsIPAddr = string.Empty;
if (HttpContext.Current.Request.ServerVariables["HTTP_X_FORWARDED_FOR"] != null)
{
VisitorsIPAddr = HttpContext.Current.Request.ServerVariables["HTTP_X_FORWARDED_FOR"].ToString();
}
else if (HttpContext.Current.Request.UserHostAddress.Length != 0)
{
VisitorsIPAddr = HttpContext.Current.Request.UserHostAddress;
}
uip.Text = "Your IP is: " + VisitorsIPAddr;
}
Using the above snippet: I got result as "Your IP is: ::1"
– sunil492307
Nov 20 at 10:09
::1 is the loopback address in IPv6. the IPv6 version of 127.0.0.1 . if you running it on your local host , the result is normal
– FarhadMohseni
Nov 20 at 12:05
Thanks FarhadMoheseni.
– sunil492307
Nov 20 at 17:41
add a comment |
VB.Net Version::
-----------------------------------------------
Shared Sub GetUser_IP()
If HttpContext.Current.Request.ServerVariables("HTTP_X_FORWARDED_FOR") IsNot Nothing Then
VisitorsIPAddr = HttpContext.Current.Request.ServerVariables("HTTP_X_FORWARDED_FOR").ToString()
ElseIf HttpContext.Current.Request.UserHostAddress.Length <> 0 Then
VisitorsIPAddr = HttpContext.Current.Request.UserHostAddress
End If
End Sub
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53387356%2fhow-to-get-client-or-visitor-ip-address-despite-multiple-tries-didnt-get-solu%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
according to this answer you can use this :
protected void GetUser_IP()
{
string VisitorsIPAddr = string.Empty;
if (HttpContext.Current.Request.ServerVariables["HTTP_X_FORWARDED_FOR"] != null)
{
VisitorsIPAddr = HttpContext.Current.Request.ServerVariables["HTTP_X_FORWARDED_FOR"].ToString();
}
else if (HttpContext.Current.Request.UserHostAddress.Length != 0)
{
VisitorsIPAddr = HttpContext.Current.Request.UserHostAddress;
}
uip.Text = "Your IP is: " + VisitorsIPAddr;
}
Using the above snippet: I got result as "Your IP is: ::1"
– sunil492307
Nov 20 at 10:09
::1 is the loopback address in IPv6. the IPv6 version of 127.0.0.1 . if you running it on your local host , the result is normal
– FarhadMohseni
Nov 20 at 12:05
Thanks FarhadMoheseni.
– sunil492307
Nov 20 at 17:41
add a comment |
according to this answer you can use this :
protected void GetUser_IP()
{
string VisitorsIPAddr = string.Empty;
if (HttpContext.Current.Request.ServerVariables["HTTP_X_FORWARDED_FOR"] != null)
{
VisitorsIPAddr = HttpContext.Current.Request.ServerVariables["HTTP_X_FORWARDED_FOR"].ToString();
}
else if (HttpContext.Current.Request.UserHostAddress.Length != 0)
{
VisitorsIPAddr = HttpContext.Current.Request.UserHostAddress;
}
uip.Text = "Your IP is: " + VisitorsIPAddr;
}
Using the above snippet: I got result as "Your IP is: ::1"
– sunil492307
Nov 20 at 10:09
::1 is the loopback address in IPv6. the IPv6 version of 127.0.0.1 . if you running it on your local host , the result is normal
– FarhadMohseni
Nov 20 at 12:05
Thanks FarhadMoheseni.
– sunil492307
Nov 20 at 17:41
add a comment |
according to this answer you can use this :
protected void GetUser_IP()
{
string VisitorsIPAddr = string.Empty;
if (HttpContext.Current.Request.ServerVariables["HTTP_X_FORWARDED_FOR"] != null)
{
VisitorsIPAddr = HttpContext.Current.Request.ServerVariables["HTTP_X_FORWARDED_FOR"].ToString();
}
else if (HttpContext.Current.Request.UserHostAddress.Length != 0)
{
VisitorsIPAddr = HttpContext.Current.Request.UserHostAddress;
}
uip.Text = "Your IP is: " + VisitorsIPAddr;
}
according to this answer you can use this :
protected void GetUser_IP()
{
string VisitorsIPAddr = string.Empty;
if (HttpContext.Current.Request.ServerVariables["HTTP_X_FORWARDED_FOR"] != null)
{
VisitorsIPAddr = HttpContext.Current.Request.ServerVariables["HTTP_X_FORWARDED_FOR"].ToString();
}
else if (HttpContext.Current.Request.UserHostAddress.Length != 0)
{
VisitorsIPAddr = HttpContext.Current.Request.UserHostAddress;
}
uip.Text = "Your IP is: " + VisitorsIPAddr;
}
answered Nov 20 at 7:58
FarhadMohseni
215
215
Using the above snippet: I got result as "Your IP is: ::1"
– sunil492307
Nov 20 at 10:09
::1 is the loopback address in IPv6. the IPv6 version of 127.0.0.1 . if you running it on your local host , the result is normal
– FarhadMohseni
Nov 20 at 12:05
Thanks FarhadMoheseni.
– sunil492307
Nov 20 at 17:41
add a comment |
Using the above snippet: I got result as "Your IP is: ::1"
– sunil492307
Nov 20 at 10:09
::1 is the loopback address in IPv6. the IPv6 version of 127.0.0.1 . if you running it on your local host , the result is normal
– FarhadMohseni
Nov 20 at 12:05
Thanks FarhadMoheseni.
– sunil492307
Nov 20 at 17:41
Using the above snippet: I got result as "Your IP is: ::1"
– sunil492307
Nov 20 at 10:09
Using the above snippet: I got result as "Your IP is: ::1"
– sunil492307
Nov 20 at 10:09
::1 is the loopback address in IPv6. the IPv6 version of 127.0.0.1 . if you running it on your local host , the result is normal
– FarhadMohseni
Nov 20 at 12:05
::1 is the loopback address in IPv6. the IPv6 version of 127.0.0.1 . if you running it on your local host , the result is normal
– FarhadMohseni
Nov 20 at 12:05
Thanks FarhadMoheseni.
– sunil492307
Nov 20 at 17:41
Thanks FarhadMoheseni.
– sunil492307
Nov 20 at 17:41
add a comment |
VB.Net Version::
-----------------------------------------------
Shared Sub GetUser_IP()
If HttpContext.Current.Request.ServerVariables("HTTP_X_FORWARDED_FOR") IsNot Nothing Then
VisitorsIPAddr = HttpContext.Current.Request.ServerVariables("HTTP_X_FORWARDED_FOR").ToString()
ElseIf HttpContext.Current.Request.UserHostAddress.Length <> 0 Then
VisitorsIPAddr = HttpContext.Current.Request.UserHostAddress
End If
End Sub
add a comment |
VB.Net Version::
-----------------------------------------------
Shared Sub GetUser_IP()
If HttpContext.Current.Request.ServerVariables("HTTP_X_FORWARDED_FOR") IsNot Nothing Then
VisitorsIPAddr = HttpContext.Current.Request.ServerVariables("HTTP_X_FORWARDED_FOR").ToString()
ElseIf HttpContext.Current.Request.UserHostAddress.Length <> 0 Then
VisitorsIPAddr = HttpContext.Current.Request.UserHostAddress
End If
End Sub
add a comment |
VB.Net Version::
-----------------------------------------------
Shared Sub GetUser_IP()
If HttpContext.Current.Request.ServerVariables("HTTP_X_FORWARDED_FOR") IsNot Nothing Then
VisitorsIPAddr = HttpContext.Current.Request.ServerVariables("HTTP_X_FORWARDED_FOR").ToString()
ElseIf HttpContext.Current.Request.UserHostAddress.Length <> 0 Then
VisitorsIPAddr = HttpContext.Current.Request.UserHostAddress
End If
End Sub
VB.Net Version::
-----------------------------------------------
Shared Sub GetUser_IP()
If HttpContext.Current.Request.ServerVariables("HTTP_X_FORWARDED_FOR") IsNot Nothing Then
VisitorsIPAddr = HttpContext.Current.Request.ServerVariables("HTTP_X_FORWARDED_FOR").ToString()
ElseIf HttpContext.Current.Request.UserHostAddress.Length <> 0 Then
VisitorsIPAddr = HttpContext.Current.Request.UserHostAddress
End If
End Sub
answered Nov 21 at 3:58
sunil492307
63
63
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53387356%2fhow-to-get-client-or-visitor-ip-address-despite-multiple-tries-didnt-get-solu%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
How do you know that the address is wrong?
– Nico Schertler
Nov 20 at 7:59
I matched with the LAN IP address provided to the system and it didn't matched
– sunil492307
Nov 20 at 10:35
The global IP address that your computer uses to communicate with the internet is most likely not the same as the local one in your LAN.
– Nico Schertler
Nov 20 at 14:03
Thanks Nico schertler, I came to know that when we are using subnets and firewalls, it is not possible to get the clients ip address i.e lan ip address.
– sunil492307
Nov 20 at 17:40