ip

Launch Apache 2.2 on static IP

Is there any way to launch Apache server on my laptop with static IP address? I need a remote access through web-interface to a local Oracle database from the internet. Right now I have Zend Core installed which allowes me to connect to the database but I don't know how to make it from the internet. Thank you in advance. ...

Obtaining a list of connected clients for a wcf service.

How can I enumerate some sort of location identifier for all of the connected clients for a servicehost? I'm using a duplex connection for long running calculations. The Service host is a singleton. I can figure out (in .net 3.5) the ip of the calling client but i am unsure how to get the ip of all connected clients. ...

Connect using specific IP (multiple IPs on NIC)

Hello I have multiple IPs on a NIC. I've programmed a console application to connect to a socket - this connection is made by a specific IP. Is it possible to tell which IP this connection should use, because I have multiple IP's assigned to my server? Hope I made this clear. Thank you! ...

Get connecting IP from specified ports that using by other program.

Hi, Does anyone know how to Get connecting IP from a specified port that is using by another program. in C#. Thanks ...

How to get internal IP, external IP and default gateway for UPnP

I'm wondering how I'd go about getting the: Internal IP address; External IP address; and Default gateway in Windows (WinSock) and Unix systems. Thanks in advance, ...

Listen to a port that is in use

Possible Duplicate: Get connecting IP from specified ports that using by other program. If a port is used by a program, is there any way I can listen that port and get the connected IP on that port? ...

networkStream.CanRead true but Buffer returning no value

I have a do while loop that reads a buffer from a NetworkStream object the while condition is networkStream.CanRead so as long as it can read it should continue reading from the buffer. Only problem is when I read from the buffer and convert to string, there is nothing in it . i.e. its empty. Why would that happen? This is an ASP.net (...

dns for dynamic IP

Hello. I'd like to know the best solutions to get a public static dns or IP adress to access a computer on a routed network (for example to access from the internet a PC in my home LAN). I heard about no-ip and dyndns. Are they good? which one is the best? Is it really reliable ? Thanks, KiTe. ...

is it possible to spoof ip behind NAT?

hello! is it possible to spoof the source ip if im behind a router that is using NAT? if not, how do botnet programmers manage to make a SYN flood from their slaves? doesnt most of the home/business networks use NAT? ...

Sending Local IP address of connection associated with HttpWebrequest (C#)

I am developing an application which has one web server and one C# client which posts XML to the web server. The web server needs to know the local IP address of client. I tried methods to retrieve the IP address at the server side, but these methods don't give the IP address of the client when there are proxy servers or NAT in between. ...

ejabberd ip address

Does anyone know if there's a direct way to map an IP address to a user logged into ejabberd? I found an indirect way by modifying ejabberd_receiver.erl and calling inet:peername(Socket) from here: http://stackoverflow.com/questions/1240312/determining-ip-address-and-port-of-an-incoming-tcp-ip-connection-in-erlang but there doesn't see...

Netmask to CIDR in ruby

I've been using the ip-address gem and it doesn't seem to have the ability to convert from a netmask of the form 255.255.255.0 into the CIDR form /24 Does anyone have an ideas how to quickly convert the former to the latter ? ...

Net_Geo Pear Package in PHP

Hi All, I have installed the Net_Geo pear package on my PHP Server. This is the code I am using, require_once('Net/Geo.php'); // new Net_Geo object $net_geo = new Net_Geo(); // fetch the client's IP $ip = $_SERVER['REMOTE_ADDR']; // fetch information array from net_geo $results = $net_geo->getRecord($ip); // output echo "Singl...

How to write bash script to search for IP's in a file and put write them to another file?

I need to write a bash script that will take a grepable nmap output file that displays IP addresses with port 80 open and copy the IPs that have port 80 open to another text file. The output looks similar to this: # Nmap 4.76 scan initiated Thu Dec 3 13:36:29 2009 as: nmap -iL ip.txt -p 80 -r -R -PN --open -oA output Host: 192.168.1....

How To Limit a WCF Service Application, So That Only Unique Clients Can Access

i have a wcf service in c# (like the calculatorservice from msdn examples), and i was wondering is it possilble to limit it to serve only 1 client per IP? i want the possibility of a few IPs to be connected at once (at least 5-6 active sessions), and that works for now, but i don't want more than 1 connection per unique IP (or unique co...

Dynamic Ip Changer

I am a newbie VB.NET 2005 programmer. I would like to develop an application that does not show my real IP Address instead it shows some fake IP Address. There is a commercial Application called "HIDE MY IP" it uses the same functionality. I don't want to make same software, but i need this aspect of the software for my new application....

Library to send SMS messages via IP connected device

Hello, I'm looking for a library (win32) to be used in a Delphi project that will enable me to send and receive SMS (text messages) via GSM modem devices connected via Ethernet (listening on an IP address). All the libraries I found until now support devices connected via COM/USB/bluetooth/InfraRed, but non of them support a direct co...

How do two computers connect to same external address through NAT?

If I have two internal computers connecting to the same external IP address through a NAT router, how is the router able to get the traffic to the correct internal computer? It is my understanding that NAT forwards incoming packets to the computer that recently sent outgoing packets to the [incoming packet's] sender's IP address. Since b...

IsInNet for ASP

First Post. So I am working on a project due to some drawbacks to the abilities of a standard PAC file. Basically we need to route proxy rules based on the internal subnet of the requester. Currently the IsInNet function is the option, however this is client side and has many failpoints due to it's dependency on the myIpAddress functi...

Get ip address in C language

I need to display all the ip addresses from my local computer, using C language. How this can be done? Thanks. ...