|
I am pinging a computer that should be running IIS and the name we have attached it to responds to pings but when I go to a browsers it says no page found.
How can I verify that IIS is running and properly configured on this server?
Started by David on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at serverfault):
If there is no response, make sure the site is set up in IIS... .
Try
telnet <domain name> 80
from a command line.
This probably means that the name is mapped in DNS correctly and the machine is "up" but there may be a firewall issue blocking port 80 .
|
|
We have oracle 10g running on windows server 2003. A machine which runs an application using that database has as of a few weeks ago suddenly started having connectivity problems. Today we ran the automatic updates for windows server and the problem has...
Started by George Mauer on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
If not then see where along the network to the database the problem .
If you can receives a ping from the client.
Be unplug your machine from the network and see if you can still ping it.
|
|
I have a computer at home with ip 192.168. 221 .xxx I have another computer at work that I can ping and it has 2 ip addresses: 192.168. 1 .xxx and 192.168.0.xxx. Those last 2 addresses have the same gateway ie 192.168. 1 .1 . the computer at work is connected...
Answer Snippets (Read the full thread at superuser):
Using -L makes A listen on a port.
This might be fine, depending on how wide open your access to B is.
|
Ask your Facebook Friends
|
I got a call from a tester about a machine that was failing our software. When I examined the problem machine, I quickly realized the problem was fairly low level: Inbound network traffic works fine. Basic outbound command like ping and ssh are working...
Started by Mike Heinz on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
All in all I'd say test ping and ssh and your program.
For iptables (I guess your SUSE has iptables firewall) to be setup to let trough only ping ICMP default routes, or weird ones or whatever.
|
|
Hi I'm not a sysadmin but I have two FC11 boxes that are behaving strangely after the circuit breaker tripped (overload elsewhere - fixed). A can ping B but when B (or any other node on network) pings A I get 'destination host unreachable.
all nodes are...
Started by Ron on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at serverfault):
This ....
Some questions:
Do all the machines in question have ping (in both directions), do valid ARP entries for the destination host appear in the source host's to ping it.
That A can ping B, but B can't ping A is very odd.
|
|
In Powershell is there a better way to ping a host indefinitely besides doing something like this:
$max = [System.Int32]::MaxValue ping host -count $max
The ' %WINDIR%\System32\ping.exe ' has a ' -t ' option to ping until Ctrl-C is pressed.
Started by Luke Quinane on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
While (1) { ping host }
This will ping indefinitely until you press Ctrl - C just like ping -t sake that ping.exe is still there so this would work just fine in PS as well:
ping.exe host -t.
|
|
The basic code is:
from Tkinter import * import os,sys ana= Tk() def ping1(): os.system('ping') a=Button(pen) ip=("192.168.0.1") a.config(text="PING",bg="white",fg="blue") a=ping1.ip ??? a.pack() ana.mainloop()
How could I ping a sites or address?
Answer Snippets (Read the full thread at stackoverflow):
Using the subprocess module is....
This isn't ideal, but it will work fine in many situations (where youDepending on what you want to achive, you are probably easiest calling the system ping command..
And even the version of ping ).
|
|
I decided to reinstall Windows from scratch. This PC was about 4 years old and I due for a reinstall anyway.
So unfortunately I can't try out some of the great suggestions below.
I've got a weird problem that perhaps someone can provide insight to.
On...
Started by Clay Nichols on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at serverfault):
It took me a couple of days to finally fix .
Connections were dead but ping and nslookup still worked.
|
|
I've just installed a clean copy of XP SP2 using VMware workstation 6.5.2, but the system won't get online.
I can ping google.com just fine from the command line, but it refuses to let me use a browser to access the internet. Any suggestions?
Started by kylex on
, 9 posts
by 8 people.
Answer Snippets (Read the full thread at superuser):
OK, if ping google.com works then you're at least sure that:
UDP DNS requests work (to resolve google.com to an IP address) ICMP packets work (to receive the ping echo replies) and when those two I setup a host-only network and ICS on the....
|
|
On Mon, 01 Dec 2008 18:56:48 +0100, David Brown <david.brown@hesbynett.removethisbit.no
Sorry for the long post - I've tried to outline the symptoms of my
problem, and what I've tried to fix it.
I'm having some networking problems with a PC running...
Started by David Brown on
, 9 posts
by 5 people.
Answer Snippets (Read the full thread at omgili):
Or is it the case that with this setup (either Red Hat
specific, or kernel 2.2, or older versions ... .
You tried ping -n ?
--
Tauno Voipio
tauno voipio (at) iki fi
On Mon, 01 Dec 2008 22:15:42 "ping -n" should not make a
difference.
|