|
I have a Linksys WRT54GL router and a home network of two PCs. What I want is one of the PCs to be a web server visible from the world on my static IP. It is a WindowsXP PC with IIS 5.1 setup and running. I've setup port forwarding for my router only ...
Started by Slavo on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at superuser):
My memory is the Linksys firmware is....
It but doesn't apply the port forward rules to it.
If you make the request to the static IP port 80 from outside your network? Some random other spot ISP may be blocking port 80.
|
|
I'm not sure if I'm using the correct term.
Where I work the only open port is port 80. I'm trying to stream music over internet radio, which uses port 8080. Is there a way to have my VPS connect to the stream on port 8080, and then have it redirect the...
Started by ryeguy on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at serverfault):
Then when you connect to port 80 on your VPS it's as if you had connected to tunnel ssh over....
Http://oldsite.precedence.co.uk/nc/putty.html
Forward your VPS port 80 to destination port 8080.
You can use an SSH tunnel.
|
|
Assuming my Windows (xp, vista, 2003, 2008, or windows 7) computer is connected directly to the internet and has no router in between...
Is there a way to filter all traffic going TO port 80, so that it instead goes to 3128 (squid HTTP proxy)?
I found...
Started by Net Citizen on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at serverfault):
The specific command line you want is
nc -l -p 80 | nc localhost 3128
This article.
Check the Wikipedia page.
On port 80?
The product you are looking for is NetCat and does exactly what you need.
|
Ask your Facebook Friends
|
When I try to bind socket to port 80 from program I get error, but how two browsers simultaneously could listen to same port 80 ?
Started by Xinus on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
You will probably....
They don't listen on port 80 they talk to port 80, or 443 if you're using SSL (or on any other port is bound to which port)
The browsers aren't actually bound to port 80 at all.
|
|
Is there a way to open a TCP Socket back to a non-standard Silverlight port such as port 80?
I don't quite understand the restrictions on Silverlight ports.
I would like to open a connection back to the server of origin using any port. I can serve a policy...
Started by Nosrama on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
The....
Using" service on your domain.
Microsoft restricted the ports to a range wellThe allowed port range (after the policy server check) is 4502 through 4532 to my knowledge.
port 80 would be an HttpWebRequest or the like.
|
|
Hi,
I have installed xampp server on Window Vista. The default port no 80 is running for IIS. I need to stop IIS Service and start the Xampp sevice for port no 80.
Currently I am running my xampp server by changing the port no in httpd.conf file.
Started by paulrajj on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
IIS from your computer, or you can change the port settings for the Default....
Close the dialog, and the site will no longer be accessible via port 80.
To select the one with "80" in the Port column, and then click Remove.
|
|
Hello,
I have a web daemon (listening on port 80 and 443) and a ssh daemon (listening on port 22) on the same machine.
I have a client (generating HTTP,HTTPS,SSH traffic) seating behind a proxy server (port 8080) and a firewall (only port 80 and 443 open...
Started by Laurent Luce on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
Dag Wieers (of RPM repository fame) has written a HOWTO for tunneling SSH, it turns the Internet into ... .
The right answer, though, is to get the firewall fixed server, destination port 22.
An SSH daemon listening on port 80 or 443.
|
|
When I try to bind port 80 to a socket in c, i always get the error, that I don't have permission to use this port. is there an easy way to get this permission?
Started by Nino on
, 10 posts
by 10 people.
Answer Snippets (Read the full thread at stackoverflow):
Those port numbers below it...and I....
Apache binds to port 80 and runs your webUsually only the superuser (root) can bind to 'privileged' ports (i.e.
Write a web application.
Use Apache.
Easily bind to port 80.
|
|
Hi, in my home computer incoming port 80 was blocked. i gess it was done by some vires. did any body know how to open the closed port in xp. or any tool to open colosed ports.
Started by Kombuwa on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at superuser):
How are you testing that 80 is blocked? A lot of ISP's block port 80 to stop people running blocking it you can open the port by:
Start -> Run
Enter this: netsh firewall set portopening tcp 80 this
What does netstat....
|
|
Ramaze.start :port => 80
If my understanding is correct, the line above is a method call in Ruby and you could also write it as:
Ramaze.start(:port => 80)
But in either case, what does it mean when you put the => character between the symbol ...
Started by Yen on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
When you have.
It's called a lambda, you're passing in a port, giving it a value of 80, then returning the port object.
It creates a hashmap where the symbol :port is the key and the value is 80.
|