Questions tagged [ipconfig]

A Windows command used to view and modify network IP-related settings.

Useful links:

  1. IPCONFIG on technet.
  2. IPCONFIG on SS64 help pages.
97 questions
1
vote
0 answers

Internet access fails after compiling Gitalist

After I downloaded and compiled Gitalist on Ubuntu 12.04, I cannot access to the internet at all. The compilation process is suspicious in that it took a really long time (>20min.) with massive messages. But it is strange that during compilation, I…
nzer0
  • 315
  • 2
  • 10
0
votes
6 answers

how to write a program to report the local IP address such as 192.168.1.102?

since my Linksys router doesn't assign a fixed local IP to the computers (PC and Mac and Linux), i'd like to write a script so that every minute, the computers will update to each other so that http://localhost/list.html on each machine will contain…
nonopolarity
  • 146,324
  • 131
  • 460
  • 740
0
votes
2 answers

Clear my cache using cmd command=> ipconfig/dnsflush?

If my computer is the web server for multiple live websites, is there any harm if I type ipconfig/dnsflush in my command prompt editor? I always got this problem. I embed a flash (swf) in a .html file. Whenever I update the swf, the .html file…
yumii
0
votes
2 answers

Bat script for automatically adding routes - Must be run several times

I'm writing a bat script for automatically creating /32 routes towards devices in a network reachable trough a LAB tunnel interface. I have to do this because the LAB tunnel has to be set upon an other one (corporate tunnel) that automatically…
user1062260
  • 11
  • 1
  • 1
  • 3
0
votes
1 answer

initramfs ipconfig vs networking dhclient DHCP request using different parameters

I have a dropbear setup that allows me to remotely ssh and unlock the encrypted luks volumes holding the root filesystem. This involves first a DHCP request by initramfs to get an IP address, and later another DHCP request after the system has…
ealfonso
  • 6,622
  • 5
  • 39
  • 67
0
votes
0 answers

How to set up Scan to folder?

So i have a big problem with scan to folder on a Kyocera 3251ci printer. I usually only have to put in the hostname, the path, Login Name and password. And of course create folder and make it available to write on. My problem is when i get the…
0
votes
0 answers

Remote linux slave node failing to connect to locally running Jenkins

The problem is following. I have Jenkins running on local machine (8080 port). I've created linux instance in private cloud to use it as slave node for Jenkins. I'm connecting to this linux node via Putty and logging in. Trying to download…
0
votes
2 answers

Different values for my IP address?

Was just wondering why I seem to get different values for my IP address from different sources. If I go to one of the many different 'what's my ip' sites on the net I get a completely different value from when I use ipconfig (on win7) And no, it's…
user898465
  • 944
  • 1
  • 12
  • 23
0
votes
1 answer

How to share your localhost from one machine to another in windows?

To share your localhost to other : For some reasons, while working on code you may need to share your work in localhost to others , In windows it is way more easier to share your localhost from one machine to another. Here how you do this First :…
Sumathi J
  • 180
  • 1
  • 7
0
votes
1 answer

Get MAC address of docking station ignoring MAC address pass through

I have the goal to identify docking stations by their MAC address for an office application to automate which desks are occupied. With different docking stations it works fine. However, I cannot achieve this when a Dell Laptop is connected to a Dell…
Thorsten
  • 31
  • 4
0
votes
2 answers

Can't access my HTTP website from EC2 Public DNS Address

I have created a good amount of these now but this time around for some reason it does not let me visit the address of the Instance which should have Apache Installed from the user data information inputted of #!/bin/bash yum update -y yum install…
HmNoon
  • 21
  • 8
0
votes
1 answer

Hosting database in Xampp (in separate fixed port)

I have successfully hosted database with xampp https://stackoverflow.com/a/48990347/15493370 This is the link which I followed. Now It works fine but there is one problem. I want the database to be hosted in 192.168.100.2:8080 forever. How can I do…
prosach
  • 312
  • 2
  • 14
0
votes
2 answers

Cant get this IPCONFIG command to display between

HTML tags

I am having trouble getting this simple code to display the ip address in between

/

HTML tags. The code below works, outputting to a text file is ok. if /i %opt%==1 ipconfig |findstr "IPv4">>"..\LOGS\%NAME%\%serial% %MAC%".txt The code below…
markus625
  • 23
  • 7
0
votes
1 answer

Get-NetIPAddress returns values not found in ipconfig

We are doing a configuration inventory of servers in our system, and found something odd. Two of our servers share this anomaly: When we run PowerShell Get-NetIPAddress as follows: Get-NetIPAddress -addressstate Preferred -addressfamily ipv4 Three…
Dennis
  • 1,071
  • 2
  • 17
  • 38
0
votes
1 answer

test if internet is connected over WiFi or ethernet cable in R

What would be the most robust way to test if your internet is connected to wifi or ethernet in R? I want to do an if statement, something like: if (internet == "wifi") { return(x) } else if (internet == "ethernet") { return(y) } else…
user63230
  • 4,095
  • 21
  • 43