ip-address Questions
4
Solved
It's simple enough to code up a class to store/validate something like 192.168.0.0/16, but I was curious if a native type for this already existed in .NET? I would imagine it would work a lot like ...
Falsity asked 22/11, 2008 at 0:6
37
How can I get the client IP address using PHP?
I want to keep record of the user who logged into my website through his/her IP address.
Add asked 9/6, 2010 at 4:50
16
Solved
I'm looking for quick/simple method for matching a given IP4 dotted quad IP to a CIDR notation mask.
I have a bunch of IPs I need to see if they match a range of IPs.
example:
$ips = array('10.2...
Synchroscope asked 27/2, 2009 at 9:36
6
Solved
Is there a way through which I can get IP address of both WiFi and cellular network in Android simultaneously.I tried using many examples but was able to get Address of only WiFi network and not ce...
Nett asked 18/11, 2016 at 5:59
30
Solved
Given an ip address (say 192.168.0.1), how do I check if it's in a network (say 192.168.0.0/24) in Python?
Are there general tools in Python for ip address manipulation? Stuff like host lookups, i...
Resnick asked 4/5, 2009 at 8:59
47
Solved
I've been trying to get an efficient regex for IPv4 validation, but without much luck. It seemed at one point I had had it with (25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?(\.|$)){4}, but it produces some...
Azerbaijan asked 12/3, 2011 at 17:27
23
I need to get local IP of computer like 192.*....
Is this possible with PHP?
I need IP address of system running the script, but I do not need the external IP, I need his local network card addres...
Phototype asked 10/7, 2010 at 12:28
5
Solved
Given two CIDR addresses say 192.168.2.0/14 and 192.168.2.0/32
How do I check if two ip addresses overlap in "python2.6"??
I have gone through netaddr and it allows to check if
192.168.2.0 is in ...
Unclassical asked 20/6, 2013 at 6:28
1
const peerConnection = new RTCPeerConnection({ iceServers: [] });
peerConnection.createDataChannel('');
peerConnection.createOffer()
.then((offer) => peerConnection.setLocalDescription(offer...
Maltz asked 14/9, 2023 at 4:54
28
I cant seem to get or find information on finding my routers public IP? Is this because it cant be done this way and would have to get it from a website?
Skylar asked 15/7, 2010 at 8:18
10
Solved
When saving data to Firebase database with a Firebase cloud function, I'd like to also write the IP address where the request comes from.
However, req.connection.remoteAddress always returns ::fff...
Rosiorosita asked 30/12, 2017 at 10:10
14
Solved
I have multiple Network Interface Cards on my computer, each with its own IP address.
When I use gethostbyname(gethostname()) from Python's (built-in) socket module, it will only return one of the...
Intermarriage asked 6/11, 2008 at 23:20
4
I want to retrieve publick IP Address, the address that we get for example from whatismyipaddress.com and I don't want to use any third party servcie https://www.ipify.org. Is there any way to fetc...
Shawn asked 20/1, 2020 at 7:48
10
Solved
How to get container ip address inside this container?
'docker inspect $hostname ...' not suitable, because I don't share /var/run/docker.sock host file to container.
Ament asked 27/12, 2014 at 18:55
7
How can I determine if a string is an IP address? Either IPv4 or IPv6?
What is the least and most number of characters?
I assume this would be a regex answer.
Wooer asked 3/9, 2008 at 19:22
2
Solved
I know that when you run airflow webserver via your home terminal, you can view the UI interface by going to http://localhost:8080. I am able to do this.
However, I have a virtual Amazon Lightsail...
Tersina asked 12/5, 2017 at 19:53
3
Solved
We are using the GeoLite2 database in order to implement an IP -> country lookup. For performance reasons, we want to import the CSV and convert it to our own format.
The CSV is represented like t...
Honghonied asked 15/8, 2015 at 18:51
4
Solved
Given an IP Address and port number, is it possible to check if the machine with that IP address has Postgresql listening on the specified port? If so, how?
I just want to obtain a boolean value o...
Gelinas asked 25/6, 2013 at 17:16
13
Solved
I'm trying to track and log users/visitors that are accessing my website using PHP's $_SERVER['REMOTE_ADDR'] to do so. A typical method for IP address tracking in PHP.
However, I am using CloudFla...
Petulant asked 20/2, 2013 at 16:56
5
I previously posted how to implement a function that will convert an integer to an IP address string. So how would we go vice-versa, that is, given a string (154.111.23.23) that is an address, how ...
Rally asked 5/11, 2009 at 13:34
4
Solved
In a Postgres DB, I need to filter a set of several hundred thousand rows in a table A by including only those rows for which an IP address column (of type inet) in the row matches any of several t...
Melancon asked 11/9, 2013 at 23:26
11
Solved
Any way of doing this through the command prompt without using any third party software or relying on powershell?
A simple command would be great like on Linux/Mac which I use curl http://ipinfo.i...
Chairwoman asked 3/10, 2016 at 17:9
8
Solved
I have a plain text file containing some IPs like this:
194.225.0.0 - 194.225.15.255
194.225.24.0 - 194.225.31.255
62.193.0.0 - 62.193.31.255
195.146.53.128 - 195.146.53.225
217.218.0.0 - 217.219.2...
Chidester asked 27/5, 2022 at 15:43
7
Solved
I use Java (with Spring framework) and want to convert between numeric representations of IPv4 addresses (e.g. 2130706433) and their textual counterparts (e.g. 127.0.0.1). Often, methods for doing ...
Lustreware asked 3/2, 2012 at 13:27
7
Solved
I maintain a site with a bunch of downloadable files. It is currently hosted on a server in the U.S., but I have recently acquired a new server in Germany. I would like to mirror the downloads to t...
Interregnum asked 28/1, 2012 at 21:3
© 2022 - 2025 — McMap. All rights reserved.