1
vote
0answers
91 views
only allow ip from australia [closed]
hi,
i want to only allow website visitors from australia.
has anyone done this before?
3
votes
4answers
76 views
Associate IP addresses with countries
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 ?
0
votes
2answers
34 views
How to get the LAN IP that a socket is sending (linux)
Hello,
I need some code to get the address of the socket i just created (to filter out packets originating from localhost on a multicast network)
this:
socket.gethostbyname(socket.gethostname())
…
-1
votes
2answers
68 views
A Reliable way to Identify a computer by its ip address
I have a network of computers that they will connect to the a server with DHCP, so I don't know what Ip address a computer will get when I connects to the server. If 192.168.0.39 for example is …
1
vote
1answer
40 views
Need to deny all IPs except mine from accessing site and display friendly error.
I need to deny all IPs except mine.
I got my outward facing IP from whatismyip.com. Let's assume it is 200.200.200.200
Here is the beginning of my .htaccess
ErrorDocument 403 /down.html
<Limit …
0
votes
2answers
81 views
Get the ip addresses of an interface
Using the output of "ipconfig /all" i can get what I need but I want a more reliable technique to get ip of an interface (practically the interface has to be identified by it's name) in case of …
2
votes
3answers
86 views
How to interpret an IP address block?
Hi all,
If I have a block of private IP addresses such as 171.58.0.0/12, does this mean that I essentially bitwise AND the 32-bit version of 171.58.0.0 with 32 bits of 1's, the last 12 of which are …
0
votes
1answer
20 views
Bind different ip addresses to urllib2 object in seperate threads
The following code binds specified ip address to socket in main program globally.
import socket
true_socket = socket.socket
def bound_socket(*a, **k):
sock = true_socket(*a, **k)
…
0
votes
3answers
83 views
How to find the IP Address of Client connected to Server?
My client pc is connected to as server pc via sockets over Ethernet, How do I find the IP of this client from the server side code.
The server is dishing out one socket per client in a new Thread.
…
0
votes
1answer
58 views
How can I find all locally bound IP addresses in Java?
I would like to have all locally bound IP addresses, basically an array of java.net.InetAddress. I know I can call InetAddress.getAllByName() with the host name, but I was wondering if there is a more …
0
votes
2answers
87 views
How to get IP address from sockaddr
I want to try and get the ip address of a client after calling accept. This is what I have so far, but I just end up getting some long number that is clearly not an ip address. What could be wrong? …
1
vote
3answers
80 views
How do I find my server’s IP address in PHP(CLI)
Aside from the obvious (localhost, 127.0.0.1) does PHP (command line interface!) have a mechanism for discovering the IP of the computer the script is running on?
$SERVER[] will not work as this is …
1
vote
5answers
70 views
Using Clients IP as the Servers IP
Hi All,
This might be one of those "huh, why?" questions, but I figured it would be worth the try.
How would one, from a server-side application, use the clients IP address as the applications IP …
0
votes
0answers
26 views
Multiple SSL Certificates Running on OSX 10.6 [closed]
I have been running into walls with this for a while.
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 …
1
vote
3answers
122 views
Obtain MAC Address from Devices using Python
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.
The goal is to build a script that will poll a databases of IP …
