|
Often in forums, comment boxes, blogs, etc, you may see that you and others have visited before at a certain date/time. Sometimes you see OTHER users' details: IP Address, country, etc. which may not have been expressly consented to by the user. Certainly...
Started by chickeninabiscuit on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at serverfault):
I actually don't see any need to log a client IP addressIn my opinion IP addresses, email addresses and other personal information a web site owner, it's quite useless ....
From IP addresses is in my opinion OK.
|
|
If Request.ServerVariables["HTTP_X_FORWARDED_FOR"] returns multiple ip's, which one do I take and how would I do it in c#? It is my understanding that if it is blank or null, then the client computer is not going through a proxy and I can just get their...
Started by Xaisoft on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Getting the client IP address: REMOTE_ADDR, HTTP_X considering it to be the client....
So the IP address of the client that you want should be the first one in the list
I asked some time ago a very similar question.
Proxy2, ...
|
|
I need to generate a list of IP-addresses (IPv4) in Perl. I have start and end addresses, for example 1.1.1.1 and 1.10.20.30. How can I print all the addresses inbetween?
Started by planetp on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
The + operator is overloaded in order to allow looping though a whole range of IP addresses:
TMTOWTDI = 0x0a141e; # 10.20.30 for my $ip ( $start..$end ) { my @ip = ( $ip >> 16 & 0xff , $ip >> 8 ....
|
Ask your Facebook Friends
|
To clarify my question...
I am wondering how does the Linux kernel route packets on a multi-home host?
With 'multi-home', I mean the host has multiple NICs to send packets, for example my Debian in Virtualbox has two NICs.
eth0 provides the NAT support...
Started by jcyang on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at serverfault):
Normally the IP Packets are sent the default gateway to the....
You can only have one real default gateway.
ip route add default via 192.168.56.1
ip route add 221.x.x.x/24 via 10.10.10.2
ip route add in for the default gateway.
|
|
How to get a list of IP Addresses/hostnames in a Network using c#
Started by Subbarao on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
It's simple you asked, it reminded me you could use Dns to resolve the hostnames of all those addresses://www.codeproject.com/KB/IP/ipaddresses....
addresses that are valid for the interface network mask, and ping them asynchronously.
|
|
Hi..
Do routers have IP addresses, if so then how many? and how can I get the IP addresses of the router if connected to a LAN?
According to me it can have only one IP address, it cannot have multiple addresses. Please correct me if i am wrong, or does...
Started by RBA on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at serverfault):
An IP router has to have a minimum of 2 IP addresses, because....
Many times there is also another IP address for management purposes, so you can say give us some better/more information.
Of the network addresses .
|
|
I think it is possible to set up 2 IP addresses and subnet masks on one NIC in Windows XP.
How can this be done?
Started by Peter Rounce on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at superuser):
Netsh interface....
I usually do this with netsh as it's easy to replicate .
Read though you'll see;Properties Click Advanced Under IP Addresses click Add.
Searched Microsoft for "second ip address windows xp" it was the 5th link.
|
|
I want to show country flag depending on ip address I receive at server side. Are fixed ip addresses are assigned to countries ? Where can I get database for ip address to country mapping ?
Started by Xinus on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Range database which can be used to tag IP addresses
they provide it in different formats as well so you can choose which one is useful to you
Take a look at the following:
IP address geolocation SQL database Geo Locate ....
|
|
In Windows, when I select static IP (instead of DHCP-assigned one) I have to enter the IP address for DNS servers. Is there a way to manually set IP address yet obtain the DNS addresses from the DHCP server?
Started by Borek on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
You a "static lease" which....
This way the client gets the IP (and things like DNS server etc.) from the DHCP server but it will always be the same.
Most DHCP server allow you to assign an IP address to a specific MAC address.
|
|
Hello all, I'm using the following snippet to redirect an array of IP addresses. I was wondering how I would go about adding an entire range/block of IP addresses to my dissallowed array...
<?php // Let's redirect certain IP addresses to a "Page Not...
Started by radrew on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
Check out http://www.blockacountry....
Unfortunately, it's not as simple as just specifying a range .
If you the IP addresses you need to block.
In blocking? You can use PHP or apache to block (or allow) a bunch of specific IP addresses.
|