|
Hate to tell you this ...
Localhost (or 127.0.0.1 ) is NEVER accessable over the network.
It is one of the unique addresses in IP land. It is never transmitted out
of the box as the stack will not allow it (unless the IP stack is faulty).
This is purely used as the internal mechanism for software to talk to
each other over an IP or UDP port without having to worry about the
traffic leaving the system. Localhost is exactly that a "local host"
You can assign localhost (the name) as a logical name to any IP address
you want but that is against all standards, everything that talks
on your local machine using either IP or UDP will break.
Don't do it...
Every piece of standard software that uses the name Localhost is
assuming it to be 127.0.0.1 as the address. Network implementations
that don't have either host files or DNS support usually know
how to translate "localhost" into it's proper IP address.
Hope that helps,
__________________
Greg oWo
"Just watchin the world go by, trying to get a good picture."
Please don't hit the button... there are solutions! :approve:
|