Questions tagged [localhost]

Localhost is an address/term used for testing connection to the local host (current computer) used for some network troubleshooting

localhost (all lowercase) (meaning this computer in computer networking) and is the standard hostname given to the loopback network interface.

IPv4

Under IPv4 the standard localhost address is normally assigned to:

127.0.0.1

IPv6

In full notation, the address under IPv6 is:

0:0:0:0:0:0:0:1
549 questions
0
votes
2 answers

Don't manage to set up iptables rules for client/server socket exchange on localhost

I am a client/server-IPC-iptables near-newbbie. I have made my homeworks deeply during one year and thought this should work : # cat /root/firewall/iptable | nocomment iptables -F iptables -F -t nat iptables -P FORWARD DROP iptables -P INPUT…
lalebarde
  • 141
  • 8
0
votes
2 answers

Can the name “localhost” in a virtual machine be mapped to IP of host machine?

I have a virtual machine image (using Virtual PC) of Windows XP/IE6 from Microsoft's "modern IE" website. This virtual machine is hosted by a Windows 7 machine. I have a local web application on the host machine and need to check it in IE6 (sadly).…
0
votes
1 answer

Apache not serving HTTPS to localhost

This just started being a problem (likely after a software upgrade?). The relevant config bits are: ServerAdmin webmaster@singpolyma.net ServerName singpolyma.net ServerAlias www.singpolyma.net RewriteEngine on …
singpolyma
  • 489
  • 2
  • 7
  • 19
0
votes
1 answer

Intranet Ip - Access from Custom Domain

I have setup a local intranet in my office using IIS7 (Windows 7 Machine), currently it can be accessed through the PC's static IP, however I would like it so that internally it can just be accessed through an easier method, e.g typing in…
0
votes
2 answers

Iptables allow only localhost and gmail

I use this in iptables: (want to allow 25 port only for localhost) iptables -A INPUT -p tcp -s localhost --dport 25 -j ACCEPT iptables -A INPUT -p tcp --dport 25 -j DROP It works perfect, but I stopped to receive forwarded mail (it was working OK…
George
  • 1
  • 1
0
votes
3 answers

Root access issue from localhost

I have a strange root access issue - I'm able to login as root via SSH but I'm not able login to the physical machine via terminal. Some more info: - running CentOS 6.4 - password authentication (no SSH key) - nothing found for root at…
0
votes
4 answers

Windows 7 resolve localhost name with ipv6 instead of ipv4

When I ping localhost I can see that localhost name is resolved as :::1 instead of 127.0.0.1. Do you know how to solve this? I need a ipv4 resolution of localhost for Tomcat server. I could quickly fix this with "127.0.0.1 localhost" to windows's…
Tobia
  • 1,272
  • 9
  • 41
  • 81
0
votes
1 answer

Subdomain on local machine using apache

On my local network, I have a server that goes by the name of telly, and can be connected with locally on http://telly. I am trying to set up a subdomain on that machine, say sub. I have added a sites-available record and sites-enabled record…
Mild Fuzz
  • 153
  • 1
  • 1
  • 9
0
votes
2 answers

How to access localhost with an internal IP address when outside of network

I have my development environment on my local system with XAMPP(Windows 7). During dev. work I use my system's IP address (i.e 192.168.XX.XXX of Internal Network) when I am inside the network, it works fine to access the localhost by…
Subharanjan
  • 59
  • 2
  • 2
  • 8
0
votes
1 answer

LAMP not working after php.ini change (even if resetted)

My LAMP machine on Ubuntu 12.04 was working fine, then I tried to modify the etc/php5/apache2/php.ini file opening nautilus through the terminal with sudo nautilus. I have edited this line: error_reporting = E_ALL & ~E_DEPRECATED &…
don
  • 215
  • 1
  • 4
0
votes
1 answer

server localhost to get access to /admin/* pages and block all others

Requirements: every one in the local network can access all pages except /admin pages. only localhost should have access to the /admin pages. how to write webfilter for tomcat 6 or other alternatives?
0
votes
2 answers

Error message: Host 'server1.MY_DOMAIN.TLD' is not allowed to connect to this MySQL server

I have a web and mail server running Ubuntu 12.04. I installed iRedMail and had it running fine, but this morning mail was not connecting and none of my sites worked. I checked some logs which told me to run mysqladmin flush-hosts. That may have put…
Noah
  • 101
  • 2
0
votes
1 answer

Apache suddenly stopped working

After using apache in a local dev setup it has suddenly stopped working. I have tried pinging a previously used custom domain and I'm not getting anything. I have checked the syntax its correct according to apache. I have made sure that my custom…
alme1304
  • 141
  • 1
  • 6
0
votes
1 answer

How do I only serve on localhost through apache2?

Possible Duplicate: TOR: hide my site in clearweb‏ I'm trying to serve on localhost only but every time I find a way to do it, it always says to edit http.d I cannot find http.d. Can someone tell me a good way to setup apache to serve ONLY on…
KI4JGT
  • 95
0
votes
2 answers

IIS "localhost" subdomain

I have an IIS7.5 server (also running SQL Server) which has a server name of (say) dc-db. On this server, my IIS default site runs correctly on http://localhost and http://dc-db I want to load on a web app to run at http://management.dc-db I have…
LuckySpoon
  • 81
  • 11