I have installed IIS on docker, disabled any firewall and configure no-ip for access externalLy, and finally configured no-ip on my router with port fowarding...
I have configured iis and congirured local port 91 to 80 container port...
from local 'http://pincopallino-no-ip:91' compare correctly the default iis page, but externally network I get 'err_connection_timed_out'....
after, I installed apache server on docker, and configured always local port 91 to 80 container port, and apache page it works both indoors the network and outdoors 'http://pincopallino-no-ip:91'
there is a solution?
perfect, now I restarting my computer, ad if run externally !
Related
I have 3 websites running on my server, all of them on different ports. One is on port 80 and it works fine, the other one is on port 88 and it also works fine. Today I deployed a third one on port 8080, opened the port in Firewall.
I can access it with http://localhost:8080/, with 127.0.0.1:8080 and with it's internal IP address. I can't access it using the external IP address for some reason. I tried accessing it locally using the external IP address and I tried from another computer.
It is worth noting that the website on port 8080 is almost identical to the one on port 80.
Initially I thought it was a firewall issue but I disabled the firewall and tried again and I get the same result (The website took too long to respond).
I am using Windows 10 on the server.
Any ideas as to why this is happening?
I figured out the answer. I am using an EC2 instance from Amazon Web Services for a server. I forgot to go into the console in AWS and open the port there too. I did that and now it's working as it should.
There could be couple of reasons.
Cloud Provider(AWS) Specific
Check your subnet's ACL rules. Both ingress and egress
Check the security group attached to the instance. It should allow ingress
on that port/protocol
Windows Server Firewall: All windows servers and desktops have firewall running which blocks any non-standard traffic. Make sure to add a custom rule to allow the traffic that you want to allow. I found this https://computingforgeeks.com/how-to-open-a-port-in-windows-server-firewall/ link helpful
On my computer I have deployed my web site on IIS. If I access this website locally with :8080 works perfect, but when I try to access this site from another machine or my Android phone I get 'The site can't be reached. my_ip_address took too long to respond ERR_CONNECTION_TIMED_OUT –' this error.
I have tried solutions from this question, but nothing worked for me. Need some help!
There are few factors which can affect the accessibility of the site hosted on your local computer:
Is the client machine (including your phone) in the same network as the Server (In this case your site)
Is the firewall configured to allow connections on port 8080
Have you tried accessing the server using the IP Address. For e.g. http://192.168.0.1:port
Steps to isolate
Ping the server Ip from the client machine and see if it is able to connect to it.
ping 192.168.0.1
If the above fails, then I would assume that you are not on the same network. If it succeeds then check if the port is open.
You can also use nmap to see whether the ports are open or not
nmap -p 8080 kaushal.com
If the above fails, then open the port in your Firewall configuration and then try again.
Try this and share the results.
I have a server to which I connect using VPN. I have a deployed a site on this on IIS server. URL for the site is "http://localhost:8080/mysite". when I use this Url on server it is opening up.
But When I use its ip address Lets say http://172.x.x.x:8080/mysite it is not accessible. (not on the server not from my dev machine (Which uses VPN)).
But if I disable firewall on server then It is accessible using the IP and port 8080 also or if I change the port number of deployed site to 80 then also I can access it(without disabling firewall).
Is there any way so that I can use my port number 8080 and also don`t need to disable firewall on server.
I have a published asp.net web page runs on local machine IIS server and it is working fine
How do I access the same web running web site over the LAN and Internet
Additional : I have a static IP for the machine and IIS runs on port 8080
Local machine URL for site = localhost/frmHome.aspx
Static IP for the machine = "203.165.24.225" which 80 and 8080 ports are enabled for Http requests
When you are hitting website from your machine then fine it will work with localhost. But when you will hit the same from some other machine over LAN then just replace localhost with your IP. If it is not working then try to ping your IP from that machine to check whether your machine is reachable to that machine over LAN or not.
I have a Windows Server 2008 R2 running inside Oracle VirtualBox machine. I have IIS installed and can access the default website from my computer: http://machinename
The problem is that when I add or change a binding to other port than 80 (e.g. 8001), I cannot access the website from my computer (e.g. http://machinename:8001). Port 80 works, other do not.
How do I configure IIS inside of VirtualBox to serve pages to ports other than 80?