Questions tagged [ip-address]

An Internet Protocol address (IP address) is a numerical label assigned to each device in a computer network that uses the Internet Protocol for communication. This is a general tag that covers both IPv4 (like 172.168.100.1) and the newer IPv6 (like 2012:da8:0:1234:7:577:8:2). If you specifically mean any of these, use IPv4 or IPv6 tags.

3875 questions
1
vote
1 answer

VPC Network on GCP

I'm a total noob on all these networking stuff so please bear with me. I'm a SQL-person and we don't have any network specialist here and I'm doing a small proof of concept with GCP. I have an instance already created and working fine. This instance…
i_am_cris
  • 557
  • 1
  • 5
  • 19
1
vote
0 answers

Android : Multicast is working with IPV4, not with IPV6

This code works with this address "228.5.6.7", but not with this one "FF7E:230::1234" (devices used: Samsung S4 & TabA). // join a Multicast group and send the group salutations String msg = "Hello"; InetAddress group =…
Greelings
  • 4,964
  • 7
  • 34
  • 70
1
vote
1 answer

getting network IP rather than individual machine IP from apache

When I go to http://www.whatismyip.com/ I get an IP address of 203.39.136.200 but if I use php/apache I get: HTTP_CLIENT_IP = "" HTTP_FORWARDED_FOR = "" REMOTE_ADDR = 10.15.60.84 //IP of my machine We are introducing geo-sensitive content into one…
Rob
  • 10,004
  • 5
  • 61
  • 91
1
vote
1 answer

Generate List of Valid IP Addresses & Randomly Use in Python Selenium Loop

Disclaimer: This is my first foray into web scraping I have a list of ~400 search results URLs that I am trying to loop through using Selenium to collect information. At a certain point, I am redirected and presented with the following text: "Your…
OJT
  • 887
  • 1
  • 10
  • 26
1
vote
1 answer

Clustering ip-addresses on domain names

I have an ip-network which is basically a list of sequential ip-addresses. From this list I want to cluster ranges of ip-addresses into independent entities. I want to give each IP in the range a set of properties like time to live, nameservers and…
mBo
  • 155
  • 2
  • 9
1
vote
1 answer

log4net 2.0.8 pattern for client ip address

I tried to log ip address of the incoming request. I tried following configuration but it does not working for me its log in as "DEBUG". Global.aspx void Application_BeginRequest(object sender, EventArgs e) { …
1
vote
4 answers

kubeadm init kubelet complains default bind address already in use

kubeadm version 1.12.2 $ sudo kubeadm init --config kubeadm_new.config --ignore-preflight-errors=all /var/log/syslog shows: Nov 15 08:44:13 khteh-T580 kubelet[5101]: I1115 08:44:13.438374 5101 server.go:1013] Started kubelet Nov 15 08:44:13…
Kok How Teh
  • 3,298
  • 6
  • 47
  • 85
1
vote
2 answers

Get machine Public IP

Trying to get the public address(not local IP) of the machine using c#. Unable to get Public IP. We can get public IP Address using external libraries or API like in this link. Is there any possible to get machine pubic IP address in c# without…
christo
  • 129
  • 1
  • 2
  • 13
1
vote
3 answers

Easiest way to get MAC address from a (non-local) IP address in IPv4

Is there an easy way to get a MAC address of a machine connected to my app via a TCP/IPv4 socket? Or in more general terms: If I have the IP address, what is the best way to get the corresponding MAC address in IPv4?
Mario The Spoon
  • 4,799
  • 1
  • 24
  • 36
1
vote
1 answer

Filter JSON using IP Address Range (JavaScript)

I have a JSON file where every JSON object has a unique identifier (IP Address) When given a range of IP Addresses, I want to filter the Original JSON based on the given range and store it in a new file. (i.e All the JSON objects having an IP…
Vinil Vasani
  • 123
  • 3
  • 9
1
vote
0 answers

How to access website using hostname instead of ip address?

I am working on a wordpress website and I'm unable to access my website using the host-name. [However, I'm able to access my website through the ip address. For example, when I enter 10.20.0.18, I'm directed to 10.20.0.18/wp-admin/plugins.php] I am…
Pooja
  • 11
  • 6
1
vote
2 answers

How to get user IP address in API model in ASP.NET Core 2.1?

I am not having issue getting user IP address while the code is running in web API controller but in model I am actually unable to use: this.HttpContext.Connection.RemoteIpAddress.MapToIPv4().ToString(); The reason I need need user IP because I…
1
vote
1 answer

How to allow site to get the machine's IP which ever is acessing its URL

Don't get confused by the title which I know is quite common on Stack overflow but my problem is different. Requirement: I am implementing Selenium grid in my framework, where I need to provide users an option of selecting machines/nodes where they…
1
vote
1 answer

Unable to get LOCAL IP address of a machine from a site which is hosted on GODADDY

Hai I am trying to get local IP address of the machine where the our internal portal got accessed from, i need the IP 192.168.xx.xx, I tried using may solutions like $myIp = getHostByName(getHostName()); $_SERVER['REMOTE_ADDR'] …
1
vote
1 answer

Why is in_addr6 not defined in netinet in Ubuntu 18.04.1?

I am currently building a cross-platform library in C that works with IP-addresses. So I thought that I could use the types in_addr and in_addr6 to represent the values since it looked like they would be quite portable. But it seems like the…
Robin Andersson
  • 5,150
  • 3
  • 25
  • 44
1 2 3
99
100