active questions tagged ip-address - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T18:21:58Zhttp://stackoverflow.com/feeds/tag/ip-addresshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1807864/using-clients-ip-as-the-servers-ip1Using Clients IP as the Servers IPKyle Rozendo2009-11-27T10:13:19Z2009-11-27T16:20:06Z
<p>Hi All,</p>
<p>This might be one of those "huh, why?" questions, but I figured it would be worth the try.</p>
<p>How would one, from a server-side application, use the clients IP address as the applications IP address to another website? The basic idea is that any work the server side application does, is seen as the client itself doing the work, and not the servers static IP.</p>
<p>I am not sure if changing HTTP headers would work, but I could be wrong. Is there any documentation out there on this?</p>
<p>Thanks,</p>
<p>Kyle</p>
http://stackoverflow.com/questions/166545/finding-a-public-facing-ip-address-in-python4Finding a public facing IP address in Python?Unkwntech2008-10-03T12:20:07Z2009-11-25T04:19:57Z
<p>How can I find the public facing IP for my net work in Python?</p>
http://stackoverflow.com/questions/917332/getting-my-ip-address3Getting my ip addressAntonioCS2009-05-27T18:36:47Z2009-11-25T04:14:07Z
<p>Hey!</p>
<p>I have a computer on a small network, so my ip is 192.168.2.100.</p>
<p>I am trying to get my real ip. I download the no-ip client but that just seems like a lot of trouble for such a simple thing.</p>
<p>I created this php script that got <a href="http://www.ip-adress.com/" rel="nofollow">http://www.ip-adress.com/</a> page and retrieved the ip it gave me.</p>
<p>Is there a simpler way? Either using C, WSH or something. Or if there is an easier way in php please tell me.</p>
<p>When I get the ip I'll uploaded it to my ftp site so that I can see the ip from work.</p>
http://stackoverflow.com/questions/1780889/multiple-ssl-certificates-running-on-osx-10-60Multiple SSL Certificates Running on OSX 10.6 [closed]frodosghost2009-11-23T02:55:41Z2009-11-23T02:55:41Z
<p>I have been running into walls with this for a while.</p>
<p>I am attempting to setup multiple IP addresses on Snow Leopard so that I can develop with SSL certificates. I am running XAMPP - I don't know if that is the problem, but I guess I would run into the same problems, considering the built in apache is turned off.</p>
<p>So first up I looked into starting up the IPs on start up. I got up an running with a new StartupItem that runs correctly, because I can ping the ip address:</p>
<pre><code>ping 127.0.0.2
ping 127.0.0.1
</code></pre>
<p>And both of them work. So now I have IP addresses, which as you may know are not standard on OSx.</p>
<p>I edited the /etc/hosts file to include the new sites too:</p>
<pre><code>127.0.0.1 site1.local
127.0.0.2 site2.local
</code></pre>
<p>I had already changed the httpd.conf to use the httpd-vhosts.conf - because I had a few sites running on the one IP address.</p>
<p>I have edited the vhosts file so a site looks like this:</p>
<pre><code><VirtualHost 127.0.0.1:80>
DocumentRoot "/Users/jim/Documents/Projects/site1/web"
ServerName site1.local
<Directory "/Users/jim/Documents/Projects/site1">
Order deny,allow
Deny from All
Allow from 127.0.0.1
AllowOverride All
</Directory>
</VirtualHost>
<VirtualHost 127.0.0.1:443>
DocumentRoot "/Users/jim/Documents/Projects/site1/web"
ServerName site1.local
SSLEngine On
SSLCertificateFile "/Applications/XAMPP/etc/ssl-certs/myssl.crt"
SSLCertificateKeyFile "/Applications/XAMPP/etc/ssl-certs/myssl.key"
SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown
<Directory "/Users/jim/Documents/Projects/site1">
Order deny,allow
Deny from All
Allow from 127.0.0.1
AllowOverride All
</Directory>
</VirtualHost>
</code></pre>
<p>In the above code, you can change the 1's to 2's and it is the setup for the second site. They do use the same certificate, which is why they are on different IP addresses.</p>
<p>I also included the NameVirtualHost information at the top of the file:</p>
<pre><code>NameVirtualHost 127.0.0.1:80
NameVirtualHost 127.0.0.2:80
NameVirtualHost 127.0.0.1:443
NameVirtualHost 127.0.0.2:443
</code></pre>
<p>I can ping site1.local and site2.local. I can use telnet ( <code>telnet site2.local 80</code> ) to get into both sites. But in Safari I can only get to the first <code>site1.local</code> - navigating to site2.local gives me either the localhost main page (which is included in the vhosts) or gives me a <code>Access forbidden!</code>.</p>
<p>I am usure what to do, any suggestions would be awesome.</p>
http://stackoverflow.com/questions/1750803/obtain-mac-address-from-devices-using-python1Obtain MAC Address from Devices using PythonF4RR4R2009-11-17T18:24:09Z2009-11-17T18:46:08Z
<p>I'm looking for a way (with python) to obtain the layer II address from a device on my local network. Layer III addresses are known.</p>
<p>The goal is to build a script that will poll a databases of IP addresses on regular intervals ensuring that the mac addresses have not changed and if they have, email alerts to myself.</p>
http://stackoverflow.com/questions/1636644/which-is-the-better-way-to-get-the-ip0which is the better way to get the ip... Sachindra2009-10-28T11:20:20Z2009-11-16T20:01:55Z
<p>What is the better way of getting the IP address in PHP:</p>
<pre><code>getenv('REMOTE_ADDR');
</code></pre>
<p>or,</p>
<pre><code>$_SERVER['REMOTE_ADDR'];
</code></pre>
<p>please tell me the difference, if any, between the two.</p>
http://stackoverflow.com/questions/1738615/how-do-i-create-valid-ip-ranges-given-an-ip-address-and-subnet-mask-in-perl0How do I create valid IP ranges given an IP address and Subnet mask in Perl?unknown (yahoo)2009-11-15T19:56:18Z2009-11-16T09:30:10Z
<p>How do I create valid IP ranges given an IP address and Subnet mask in Perl? I understand the concept of generating the IP ranges but need help writing in Perl. For example, if I AND the IP address and subnet mask I get the subnet number. Adding 1 to this number should give me the first valid IP. If I invert the subnet mask and OR with the subnet number, I should get the broadcast address. Subtracting 1 from it should give the last valid IP address.</p>
http://stackoverflow.com/questions/901755/how-to-get-the-ip-of-the-computer-on-linux-through-java3How to get the ip of the computer on linux through Java ?Bobby Green2009-05-23T15:35:14Z2009-11-14T05:45:14Z
<p>Hello,</p>
<p>How to get the ip of the computer on linux through Java ? </p>
<p>I searched the net for examples, I found something regarding NetworkInterface class, but I can't wrap my head around how I get the Ip address.</p>
<p>What happens if I have multiple network interfaces running in the same time ? Which Ip address will be returned.</p>
<p>I would really appreciate some code samples.</p>
<p>P.S: I've used until now the InetAddress class which is a bad solution for cross-platform applications. (win/Linux).</p>
http://stackoverflow.com/questions/1111413/objective-c-determining-ip-address-of-ipod-touch-programmatically1Objective-C - Determining IP address of iPod touch programmaticallyJosh Bradley2009-07-10T19:07:13Z2009-11-13T17:38:59Z
<p>I'm programming in objective-C for several iPod devices and I was wondering about something. I'm developing an application that utilizes the server-client model and I'm using the UDP protocol with C sockets. Is there a class out there that allows me to determine the iPod devices IP address? After googling around other forums, I haven't found anything. Obviously this command wouldn't work, but something like ipAddress = self.ip is what I had in mind. I'm setting up multicast C sockets and I'm trying to do a workaround that resembles the ping command, which obviously doesn't exist in objective-C either or to my knowledge (which is limited, as I've only been programming in objective-C since the start of this summer) at least. Any advice or tips?</p>
http://stackoverflow.com/questions/1699626/where-is-class-e-ip-addresses2where is class E ip addresses?jcyang2009-11-09T07:52:15Z2009-11-09T10:39:33Z
<p>I am reading Richard Stevens' TCP/IP illustrated Vol1.He said class E ip addresses are reserved for future use.Considering he wrote the book at 1994,now is the future.So where is the class E ip addresses?</p>
<p>I tried to ping 240.0.0.3 but windows returns</p>
<blockquote>
<p>Destination specified is invalid</p>
</blockquote>
<p>thanks.</p>
http://stackoverflow.com/questions/178200/ip-subnet-verification-in-jsp2IP subnet verification in JSPYusuf2008-10-07T12:25:31Z2009-11-08T13:45:59Z
<p>I have the following JSP code, that protects my web page and displays it only to know IP's</p>
<pre><code>String ip_h = request.getRemoteAddr();
String host_h = request.getRemoteHost();
String iplist[] = new String[1];
iplist[0] = "127.0.0.1";
iplist[1] = "10.217.106.248";
int count = iplist.length;
boolean flag = false;
int zz = 0;
//return;
System.out.println(host_h);
while ( (flag==false) && ( zz < count) )
{
if (ip_h.equals(iplist[zz]) || host_h.equals(iplist[zz]) )
{
flag = true;
}
zz++;
}
</code></pre>
<p>However, I would to rather check for subnet ranges, i.e. all users belonging to 10.217.0.0/16 are allowed.</p>
<p>How do I do this?</p>
http://stackoverflow.com/questions/1693886/what-ip-address-does-accept-return0what ip address does accept returniamrohitbanga2009-11-07T18:00:23Z2009-11-07T20:11:18Z
<p>see the following code:</p>
<pre><code>accept(sockfd, (struct sockaddr*)&cliaddr, &slen);
cout << inet_ntop(AF_INET, cliaddr.sin_addr, ipv4addr, 100);
</code></pre>
<p>my client connects from localhost.
i get an absurd address in the output. this is not my ip address. everytime i run the code i get a different ip address. when i ping that ip address i don't get any response.</p>
<p>what is the reason.</p>
<p>i am running suse linux on a virtual machine in windows vista.</p>
<p><strong>Update</strong>:</p>
<pre><code>bzero(&cliaddr, sizeof(cliaddr));
int connfd = accept(sockfd, (struct sockaddr*)&cliaddr, &slen);
if (sem_wait(&mutex) < 0)
err_sys("sem_init error");
char ipv4addr[100];
cout << inet_ntop(AF_INET, &cliaddr.sin_addr, ipv4addr, 100) << endl;
//const char* p = inet_ntop(AF_INET, &cliaddr.sin_addr, ipv4addr, 100);
//cout << p << endl;
//cout << (void*)p << " " << (void*)ipv4addr << endl;
</code></pre>
<p>this returns address as 0.0.0.0</p>
<p>if i uncomment the lines, i get the correct address in all the lines, 127.0.0.1</p>
http://stackoverflow.com/questions/1691178/how-can-i-send-data-to-multiple-ips-in-vb-net-with-tcp-ip-sockets0How can I send data to multiple IPs in VB.NET with TCP/IP sockets?Jonathan2009-11-06T23:16:45Z2009-11-06T23:52:02Z
<p>I have an array of IP addresses, and I want to send the same data to all of them. I could just send the loop code that sends data but I think there's a better way of doing this.</p>
<p>I've heard of multicast, what exactly is it? I think it's what I need but how do i use it.</p>
http://stackoverflow.com/questions/1679215/finding-the-ip-address-inadobe-air0finding the IP address inAdobe AIRshaffiullah khan2009-11-05T08:54:57Z2009-11-05T08:54:57Z
<p>how to know the P address of the system in which the AIR application is currently running? or</p>
<p>how to restrict the usage of AIR application for a particular country?</p>
http://stackoverflow.com/questions/884857/need-a-net-winforms-ip-address-control0Need a .NET WinForms IP Address ControlMatt Davis2009-05-19T20:28:38Z2009-11-03T16:41:39Z
<p>I need a robust, user-friendly, professional-looking .NET WinForms IP address control for use in a project I'm working on. This control, at a minimum, should support IPv4 addressing and ideally would support IPv6 addressing as well. I would prefer a free control with C# source code, but don't mind paying for one.</p>
<p>I am using .NET 3.5 SP1, so anything .NET 2.0 and greater should be sufficient.</p>
<p>Any and all suggestions are welcome. Thanks.</p>
http://stackoverflow.com/questions/160776/how-would-you-compare-ip-address5How would you compare IP address?MrValdez2008-10-02T03:28:37Z2009-10-28T14:33:57Z
<p>For my server app, I need to check if an ip address is in our blacklist. </p>
<p>What is the most efficient way of comparing ip addresses? Would converting the IP address to integer and comparing them efficient?</p>
http://stackoverflow.com/questions/1634782/what-is-the-most-accurate-way-to-retrieve-a-users-correct-ip-address-in-php4What is the most accurate way to retrieve a user's correct IP address in PHP?cballou2009-10-28T02:03:26Z2009-10-28T07:37:59Z
<p>I know there are a plethora of <strong>$_SERVER</strong> variables headers available for IP address retrieval. I was wondering if there is a general consensus as to how to most accurately retrieve a user's real IP address (well knowing no method is perfect) using said variables?</p>
<p>I spent some time trying to find an in depth solution and came up with the following code based on a number of sources. I would love it if somebody could please poke holes in the answer or shed some light on something perhaps more accurate.</p>
<pre><code> /**
* Retrieves the best guess of the client's actual IP address.
* Takes into account numerous HTTP proxy headers due to variations
* in how different ISPs handle IP addresses in headers between hops.
*/
public function get_ip_address() {
// check for shared internet/ISP IP
if (!empty($_SERVER['HTTP_CLIENT_IP']) && $this->validate_ip($_SERVER['HTTP_CLIENT_IP']))
return $_SERVER['HTTP_CLIENT_IP'];
// check for IPs passing through proxies
if (!empty($_SERVER['HTTP_X_FORWARDED_FOR'])) {
// check if multiple ips exist in var
if (strpos($_SERVER['HTTP_X_FORWARDED_FOR'], ',') !== false) {
$iplist = explode(',', $_SERVER['HTTP_X_FORWARDED_FOR']);
foreach ($iplist as $ip) {
if ($this->validate_ip($ip))
return $ip;
}
} else {
if ($this->validate_ip($_SERVER['HTTP_X_FORWARDED_FOR']))
return $_SERVER['HTTP_X_FORWARDED_FOR'];
}
}
if (!empty($_SERVER['HTTP_X_FORWARDED']) && $this->validate_ip($_SERVER['HTTP_X_FORWARDED']))
return $_SERVER['HTTP_X_FORWARDED'];
if (!empty($_SERVER['HTTP_X_CLUSTER_CLIENT_IP']) && $this->validate_ip($_SERVER['HTTP_X_CLUSTER_CLIENT_IP']))
return $_SERVER['HTTP_X_CLUSTER_CLIENT_IP'];
if (!empty($_SERVER['HTTP_FORWARDED_FOR']) && $this->validate_ip($_SERVER['HTTP_FORWARDED_FOR']))
return $_SERVER['HTTP_FORWARDED_FOR'];
if (!empty($_SERVER['HTTP_FORWARDED']) && $this->validate_ip($_SERVER['HTTP_FORWARDED']))
return $_SERVER['HTTP_FORWARDED'];
// return unreliable ip since all else failed
return $_SERVER['REMOTE_ADDR'];
}
/**
* Ensures an ip address is both a valid IP and does not fall within
* a private network range.
*
* @access public
* @param string $ip
*/
public function validate_ip($ip) {
if (strtolower($ip) === 'unknown')
return false;
// generate ipv4 network address
$ip = ip2long($ip);
// if the ip is set and not equivalent of 255.255.255.255
if ($ip !== false && $ip !== -1) {
// make sure to get unsigned long representation of ip
$ip = sprintf('%u', $ip);
// do private network range checking
if ($ip >= 0 && $ip <= 50331647) return false;
if ($ip >= 167772160 && $ip <= 184549375) return false;
if ($ip >= 2130706432 && $ip <= 2147483647) return false;
if ($ip >= 2851995648 && $ip <= 2852061183) return false;
if ($ip >= 2886729728 && $ip <= 2887778303) return false;
if ($ip >= 3221225984 && $ip <= 3221226239) return false;
if ($ip >= 3232235520 && $ip <= 3232301055) return false;
if ($ip >= 4294967040) return false;
}
self::$ip = $ip;
return true;
}
</code></pre>
http://stackoverflow.com/questions/1617475/how-get-visitors-ip-address-and-country-id-in-website0How get Visitors IP Address and Country ID in websiteAlex2009-10-24T09:23:47Z2009-10-24T09:33:35Z
<p>How write code in ASP to get website visitors IP address and Country ID ?</p>
<p>Plz help me,
Alex</p>
http://stackoverflow.com/questions/1248334/getting-my-ip-address0Getting my IP address? [closed]lostInTransit2009-08-08T08:16:40Z2009-10-15T14:13:52Z
<p>Hi</p>
<p>My system has a dynamic shared IP provided to me by my ISP. I want to give my IP address to a friend so she can allow access to her server for requests coming from my IP.</p>
<p>Can someone please tell me how I can find a static IP address to give to her?</p>
<p>Thanks a lot for any help...</p>
http://stackoverflow.com/questions/695854/get-ip-address-using-action-script1Get IP address using Action Script?roa32009-03-30T02:36:53Z2009-10-13T14:17:23Z
<p>Is it possible to get client IP address through Flash (swf) Action Script 3 and then pass it to php file to store it in database?</p>
http://stackoverflow.com/questions/1239886/get-ip-in-ria-services0Get IP in RIA servicesdrwatson2009-08-06T16:00:58Z2009-10-12T10:50:43Z
<p>Does anybody know how can I get IP address of client with RIA services. In WCF we have OperationContext for that. But it doesn't work with RIA services.</p>
http://stackoverflow.com/questions/1553027/will-blocking-ip-addresses-of-spammers-also-block-visitors1Will blocking IP-addresses of spammers also block visitors?Edward Tanguay2009-10-12T06:30:25Z2009-10-12T07:08:22Z
<p>My website's comment function is being constantly bombarded with spam posts from these two IP addresses:</p>
<ul>
<li>94.102.63.11</li>
<li>83.233.30.42</li>
</ul>
<p>I am currently blocking them at the text level since they all have:</p>
<blockquote>
<p>weebly.com</p>
</blockquote>
<p>in them, and I would think that if I block them by IP address then I might also block authentic users.</p>
<ol>
<li><p>Is it true that blocking IP addresses may also block authentic users with the same IP address, e.g. with a dialup provider?</p></li>
<li><p>How can I find out who is running these spamming services?</p></li>
<li><p>How can I and does it help to report these IP addresses to some central agency responsible for preventing spam on the Internet?</p></li>
</ol>
http://stackoverflow.com/questions/1282899/subversion-on-laptop-and-moving-between-internal-external-network1Subversion on laptop and moving between internal/external networksinoth2009-08-15T21:30:21Z2009-10-11T04:00:39Z
<p>I have a subversion server on my local network and access it using the 192.168.1.x address. The problem is that when I leave my house and need to update svn on my laptop, I now have to use an external address. I've been using the svn relocate command to switch between external and internal addresses, but this is cumbersome. Does anyone have a clever trick around this issue? I use TortoiseSVN as my client.</p>
<p>A DNS entry on my router would probably work so I could use the external name all the time, but unfortunately my router it isn't that flexible.</p>
http://stackoverflow.com/questions/1544898/restricting-access-to-a-website-by-ip-address-range-domain0Restricting access to a website by IP address range / domaintest2009-10-09T16:46:28Z2009-10-09T16:56:30Z
<p>Hi,</p>
<p>I would like advice on the best way to restrict access to a weba pplication (using .net 2.0 and II6) based on the clients IP address. The two ways I am considering:</p>
<p>1) Through the server side code - check the client I.P against a list of IP addresses within the web.config.</p>
<p>2) Through IIS by creating a virtual directory and restricting the I.P addresses on this virtual directory. </p>
<p>My question is if I go the virtual directory route there are a lot of users that access this website and I have read reverse domain lookups made during each client request can be very expensive on server resources. How much of a risj is this?</p>
<p>Any other suggestions /ideas to doing this would be much appreciated</p>
<p>Thanks advance,</p>
http://stackoverflow.com/questions/1543437/is-there-any-possible-way-to-find-the-name-of-the-country-using-ip-with-scripting0Is there any possible way to find the name of the country using IP with scripting language PHP ?Fero2009-10-09T12:17:19Z2009-10-09T13:03:12Z
<p>Hi all</p>
<p>Is there any possible way to find the name of the country using IP with scripting language PHP ?</p>
<p>Thanks in advance</p>
<p>Fero</p>
http://stackoverflow.com/questions/83991/how-do-i-change-the-ip-address-on-oracle-10g2How do I change the IP address on Oracle 10gJoshua2008-09-17T14:44:08Z2009-10-07T00:47:22Z
<p>What steps do I need to take to change an IP address for Oracle 10g? I cannot connect to the database after going from a dhcp address to a static IP and a reboot.</p>
http://stackoverflow.com/questions/1505676/how-to-convert-ip-address-from-char-to-int1how to convert IP address from char to intkampi2009-10-01T18:34:22Z2009-10-01T22:08:46Z
<p>Hi!</p>
<p>I have an IP address in char type Like char ip = "192.123.34.134" I want increment the last value (134). Does anyone how should i do it? I think, i should convert it to an integer, and then back, but unfortunately i don't know how? :( I'm using C++.</p>
<p>Please help me!</p>
<p>Thanks, kampi</p>
http://stackoverflow.com/questions/1501050/how-can-i-setup-a-router-to-assign-ip-addresses-to-all-connections-through-a-24-p0How can I setup a router to assign IP addresses to all connections through a 24-port hub? [closed]Parris2009-09-30T22:45:16Z2009-09-30T22:48:44Z
<p>How can I do that? Also is there any router that is already ready to handle something like that? Is there any other recommended setup to solve this problem. This is a relatively low budget (probably less than $200.00). We already have a 24-port hub. We need to get a router with DHCP that can handle something like this. I am not sure which router can do this, nor do I know how to set this up properly. Any help would be much appreciated! :)</p>
<p>This setup is for a lan-party!
Thanks!</p>
http://stackoverflow.com/questions/1499269/how-to-check-if-an-ip-address-is-within-a-particular-subnet2How to check if an IP address is within a particular subnetRyan Michela2009-09-30T16:31:27Z2009-09-30T16:46:57Z
<p>I have a subnet in the format 10.132.0.0/20 and an IP address from the ASP.Net request object.</p>
<p>Is there a .NET framework function to check to see if the IP address is within the given subnet?</p>
<p>If not, how can it be done? Bit manipulation, I guess?</p>
http://stackoverflow.com/questions/1473823/how-to-get-local-host-address-and-subnet-mask-in-java-me1How to get local host address and subnet mask in Java ME?sold2009-09-24T19:56:49Z2009-09-24T19:56:49Z
<p>Is there a way to find those values in ME (Either CDC or CLDC)? All the examples I found used SE methods.</p>