vote up 1 vote down star

I have a socket app that passes data between 2 processes. It works fine on a number of computers with the 2 processes running on the same computer. A person in my office visited a government office where they made some unknown changes to her laptop so she could get on their network. When she left the app no longer works.

If she tries to telnet to the listener app she can connect if she tries to connect to the computer name or 127.0.0.1, but connecting to localhost doesn't work. Any ideas?

flag

This probably doesn't apply in your case, but on IPv6-capable computers, localhost also maps to [::1]. – Chris Jester-Young Apr 15 at 18:04

4 Answers

vote up 5 vote down check

Perhaps the localhost mapping in %systemroot%\system32\drivers\etc\hosts is pointing to an IPv6 address and the program does not support IPv6.

Does the entry in the hosts file look like this:

127.0.0.1 localhost

or like this?

::1 localhost

Please go to start, run, and type:

notepad %systemroot%\system32\drivers\etc\hosts

to check.

link|flag
This was exactly the issue. My app was skipping over IP6 addresses. We changed the host and it was fixed. Now I have need to change my app. – Jake Pearson Apr 15 at 19:01
vote up 0 vote down

Just in case this happens to be a *nix system, you can find the host file here:

/etc/hosts

link|flag
vote up 14 vote down

Check the Hosts file, located here: C:\WINDOWS\system32\drivers\etc

This file is what translates localhost to 127.0.0.1

link|flag
vote up 2 vote down

Check the hosts file?

Wait; do you mean when she telnets to localhost it works, or when she telnets to her IP it works?

link|flag
Telnet to 127.0.0.1 is fine, but localhost fails. I'll check on the hosts file. – Jake Pearson Apr 15 at 18:04
I don't mind downvotes, but please leave a comment when you do. – overslacked Apr 15 at 18:09

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.