asp.net - Accessing a local website from another computer inside the local network in IIS 10 -
on computer have deployed web site on iis. if access website locally :8080 works perfect, when try access site machine or android phone 'the site can't reached. my_ip_address took long respond err_connection_timed_out –' error.
i have tried solutions this question, nothing worked me. need help!
there few factors can affect accessibility of site hosted on local computer:
- is client machine (including phone) in same network server (in case site)
- is firewall configured allow connections on port 8080
- have tried accessing server using ip address. e.g. http://192.168.0.1:port
steps isolate
- ping server ip client machine , see if able connect it.
ping 192.168.0.1
if above fails, assume not on same network. if succeeds check if port open.
you can use nmap see whether ports open or not
nmap -p 8080 kaushal.com
if above fails, open port in firewall configuration , try again.
try , share results.
Comments
Post a Comment