1
vote
2answers
38 views
Django 1.1.1: How should I store an empty IP address using PostgreSQL?
I am writing a Django application that stores IP addresses with optional routing information. One of the fields for the IP model I have created is nexthop (for next-hop routes), which will usually be …
0
votes
1answer
14 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
58 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
50 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
58 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
60 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
65 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 …
4
votes
3answers
719 views
Finding a public facing IP address in Python?
How can I find the public facing IP for my net work in Python?
3
votes
12answers
636 views
Getting my ip address
Hey!
I have a computer on a small network, so my ip is 192.168.2.100.
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.
I …
0
votes
0answers
17 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
95 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 …
0
votes
5answers
105 views
which is the better way to get the ip…
What is the better way of getting the IP address in PHP:
getenv('REMOTE_ADDR');
or,
$_SERVER['REMOTE_ADDR'];
please tell me the difference, if any, between the two.
0
votes
3answers
120 views
How do I create valid IP ranges given an IP address and Subnet mask in Perl?
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 …
3
votes
5answers
822 views
How to get the ip of the computer on linux through Java ?
Hello,
How to get the ip of the computer on linux through Java ?
I searched the net for examples, I found something regarding NetworkInterface class, but I can't wrap my head around how I get the …
1
vote
2answers
507 views
Objective-C - Determining IP address of iPod touch programmatically
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 …
