This is a discussion on Apache HTTP Server 2.2 on Windows XP within the Windows Web Servers forums, part of the Web Server and Related Forums category; I have an always on DSL connection with Windows XP Pro. I have installed Apache HTTP Server 2.2. After ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
I have an always on DSL connection with Windows XP Pro. I have
installed Apache HTTP Server 2.2. After registering at www.dyndns.com to get my own web site name I have all that linked together. I have apache setup to go off of the dyndns.org and with my full server name set up through there as well. When I type iit in on my computer it works fine (of course). When I try it in IE on another computer in my house that uses the DSL, it works. Anywhere outside of my house can't see it. I have the config file set to listen to fe#######.dyndns.org:80. After running a port scan it says it didn't see anything running on port 80. I have windows firewall accepting port 80. I also turned on port forwarding through my router. Is there anything here that it looks like I am missing? Desperate in Buffalo |
|
|||
|
Fetter wrote:
> I have an always on DSL connection with Windows XP Pro. I have > installed Apache HTTP Server 2.2. After registering at www.dyndns.com > to get my own web site name I have all that linked together. I have > apache setup to go off of the dyndns.org and with my full server name > set up through there as well. When I type iit in on my computer it > works fine (of course). When I try it in IE on another computer in my > house that uses the DSL, it works. Anywhere outside of my house can't > see it. I have the config file set to listen to > fe#######.dyndns.org:80. After running a port scan it says it didn't > see anything running on port 80. I have windows firewall accepting > port 80. I also turned on port forwarding through my router. Is there > anything here that it looks like I am missing? It is common for ISPs to block port 80 incoming. Read your terms of service to see if this is the case. If it is then your only choice may be to either pay a higher monthly fee for business DSL, or perhaps they do not block on static IPs, or switch ISPs. -- Phil Frisbie, Jr. Hawk Software http://www.hawksoft.com |
|
|||
|
On 05 May 2006, "Fetter" <rob.fetterhoff@gmail.com> wrote in
news:1146850871.547720.80310@i40g2000cwc.googlegro ups.com: > It says they give 10mb for web page hosting but didn't see much on > port 80 for what I looked at. They are referring to running a web site from THEIR server, not from yours. Try running your server on a port other than 80. |
|
|||
|
I changed the listen to port 81... now on my local if I type the
webpage name with the ":81: after it it comes up (won't come up any other way). IE on my computer downstairs sees it but AOL doesn't. Just like before. I can't really test it further than that cause there is no one online to ask to test it. Am I doing this right? |
|
|||
|
On 06 May 2006, "Fetter" <rob.fetterhoff@gmail.com> wrote in
news:1146894238.616004.73480@j73g2000cwa.googlegro ups.com: > I changed the listen to port 81... now on my local if I type the > webpage name with the ":81: after it it comes up (won't come up > any other way). IE on my computer downstairs sees it but AOL > doesn't. Just like before. I can't really test it further than > that cause there is no one online to ask to test it. Am I doing > this right? To make my server use port 8081, the Listen line in my httpd.conf file is: Listen 8081 (no IP address or host name) and the ServerName directive line is: ServerName myserver.mydomain.org:8081 to reach my server you would use a url like <http://myserver,mydomain.org:8081/> or <http://123.456.77.9:8081/>. What does AOL have to do with it? Do you mean that the AOL browser doesn't see it? Or are you connecting to the internet through AOL? Maybe your ISP (AOL?) is blocking port 81 as well as 80. What did you use to do the port scan? Here's one site that will scan the ports for you to test what ports are open: https://www.grc.com/x/ne.dll?bh0bkyd2 Are you sure you have port forwarding set up correctly? |
|
|||
|
I just use IE to browse the internet... I have Verizon DSL. My
siblings have AOL installed on their computer and it can't see my server. Although IE on their computer can. Any computer outside of my house cannot see it at all. I ran your port scan site. It couldn't find anything at any port that it scanned when doing the Service ports probe. Everything was stealth. What does that mean? I'm almost positive I have port forwarding set up right on my router. It's an option in the set up. |
|
|||
|
On 06 May 2006, "Fetter" <rob.fetterhoff@gmail.com> wrote in
news:1146927126.337051.8860@j33g2000cwa.googlegrou ps.com: > I ran your port scan site. It couldn't find anything at any port > that it scanned when doing the Service ports probe. Everything > was stealth. > What does that mean? I ran it myself a few minutes ago. There seems to be 3 possible results. - if the port is closed in my firewall, it's listed as "Stealth" - if the port is open in my firewall, but the server is not running, it's usually listed as "closed", but sometimes "stealth". - if the port is open and the server is running, it's listed as "open" It seems to me that either your ports are blocked by your ISP or your router/firewall isn't set up correctly, or Windows firewall is blocking things. You might want to check out <http://www.portforward.com/> for advice on how to work through the port forwarding issue. Otherwise, I'm running out of ideas. |