Hi @schelp,
I've made a website using IIS but it's not showing up on other devices when i visit the address.
on other devices? If I understand correctly, what you probably want to achieve is to access a website hosted in IIS from any PC on the LAN.
If this the case, in addition to deploying the site in IIS, you also need to set up firewall rules to determine what network traffic is allowed to enter the device from the network (on the machine where you deploy your site to IIS). Simply refer to these steps below:
- Open Start, Search for
Windows Defender Firewall with Advanced Security
, and press enter to open it. - Right click on the
Inbound Rules
and chooseNew Rule...
. - Rule Type: Choose option "Port". Click "Next>" to proceed.
- Protocol and Ports: Enter your port number in the "specific local ports". It refers to the port number you set when deploying the IIS site. Then click "Next>" to proceed.
- Action: Default value. Click "Next>" to proceed.
- Profile: Default value. Click "Next>" to proceed.
- Name: Enter some description for this setting. Finally click on the "Finish" button.
After completing the above steps, you should be able to access this site from other PCs in the form of IP:port
. Such as http://192.168.xx.xx:8081/testpage.aspx
Best regards,
Xudong Peng
If the answer is the right solution, please click "Accept Answer" and kindly upvote. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.