Questions tagged [dynamic-ip]

A dynamic IP address is an IP address that is temporarily assigned to a device, and can therefore change over time.

Unlike a that is permanently assigned to a device, a dynamic IP address is only temporarily assigned.

While this is usually about a consumer router's WAN (internet-facing) IP assigned by the ISP, this could also be about IPs within a LAN temporarily leased to a device using DHCP. In some cases, DHCP will cause the same device to receive the same IP if it is regularly connected to the router, therefore making the dynamic IP semi-permanent, although strictly speaking not static and therefore open to change.

77 questions
2
votes
1 answer

How work with socket and hostnames in Java?

Recently I had to change my router, it was an Belking for one D-Link, my program worked it with my Belkin router but not now with the D-Link router. Here is my program: The client: package brainset.socket; import java.io.IOException; import…
Valter Silva
  • 16,446
  • 52
  • 137
  • 218
1
vote
2 answers

Can I create a socket server in C# that has a dynamic IP?

As far as I know for a socket client to be able to connect to a socket server it needs to know the server's IP address. But what happens when the server is using a dynamic IP address? Is it possible to connect to the server in any other way (I…
morcillo
  • 1,091
  • 5
  • 19
  • 51
1
vote
0 answers

Add dynamic IP address to the "Authorised javascript origins" list in Google Cloud so that I can integrate Google sign-in into my web app?

I have a web app that I want to integrate Google sign-in into. I have created a client ID and added the client ID to the web app. However, I am unable to add my dynamic IP address to the "Authorised javascript origins" list in Google Cloud. I have…
Vimal M
  • 13
  • 1
  • 4
1
vote
1 answer

Receiving HTTP request from single email but varying IP addresses?

I have a server, and I was monitoring the incoming requests. There is a particular email, from which I'm getting multiple requests, but the IP address keeps changing little by little every few days. Example - Request 1 -> (Email1, X.Y.Z.56) Request…
Dhruv Chadha
  • 1,161
  • 2
  • 11
  • 33
1
vote
0 answers

Is there a way to output an IP address dynamically assigned in Vagrant

I have Vagrantfile that assigns the public_network IP address dynamically, like so: # Grab the name of the default interface $default_network_interface = `ip route | awk '/^default/ {printf "%s", $5; exit 0}'` config.vm.network…
reselbob
  • 365
  • 3
  • 13
1
vote
2 answers

creating app with dynamic IP address

I am trying to access VB.Net exe on a client system through LAN.Its working fine for server with static IP address.In case I try to access it with server having dynamic IP address, It doesn't provide access(config file containing server name). how…
kelly
  • 11
  • 1
1
vote
1 answer

How can I use C# to determine which IP addresses on my local network are static/dynamic?

I am scanning for IPs on my local network, and one of the pieces of information I wish to receive when an IP is found is whether that IP is static or dynamic. So far, the closest question to mine that I have found only addresses checking your own…
1
vote
1 answer

dynamic ip , want stable access route

i have a dynamic ip that changes every 30 days or so and i would like to make a server so that when i access a static address ( lets say : www.staticaddress.com ) it will direct me to my server even when my ip has changed. Note: my internet…
Alex
  • 10,869
  • 28
  • 93
  • 165
1
vote
0 answers
1
vote
1 answer

connecting to sql server without IP address and host name on the internet

I don't know ip address and host name of a system on internet.I only know database name, how do i connect with that database using internet and without using any third part tool.
1
vote
1 answer

Why does python requests module give dynamic ip?

import requests from bs4 import BeautifulSoup url = "http://www.whatsmyip.org" for x in range(0,5): response = requests.get(url).content soup = BeautifulSoup(response,'lxml') result = soup.findAll('h1') for each in result: …
1
vote
1 answer

CSS styling missing when website viewed through DDNS

I was able to get myExample.ddns.net to point to my local computer successfully. Unfortunately, only the text shows up. All of the CSS styling is missing, and same with the images. If I go to another virtual host that points to the same folder on my…
PioneerMan
  • 303
  • 4
  • 12
1
vote
1 answer

Dynamic Ip Restriction on Runtime

I want to add/remove IP restriction on run time to a MVC 5 project. I did a search and found two ways. Change Dynamic Ip Restriction module on runtime. using System; using System.Text; using Microsoft.Web.Administration; internal static class…
Erkan Demirel
  • 4,302
  • 1
  • 25
  • 43
1
vote
2 answers

Socket for dynamic IP Address

I'm creating a client/server application that should work on LAN. First with RMI the user register their i dont know what(IP?), this is the question :) After that i create a ServerSocket and waiting for accept(). Now the client(or better, the…
Mistre83
  • 2,677
  • 6
  • 40
  • 77
1
vote
1 answer

MySQL/PHP: Identify site users who share their login credentials

I am trying to construct a MySQL query (or PHP script) to identify users who are sharing their web-login credentials with other people. I want to avoid forcing users to explicitly register their devices (like banks do), because I want to minimize…
Mike Furlender
  • 3,869
  • 5
  • 47
  • 75