On running my ASP.NET Core web application, I was able to do desired works. 
I wanted to to do the same using different machine on same LAN using <ip-address>:<port-number>/ 
I tried to modify my applicationhost.config seeing this post Connecting to Visual Studio debugging IIS Express server over the lan but no luck.
 <site name="WebSite1" id="1" serverAutoStart="true">
        <application path="/">
          <virtualDirectory path="/" physicalPath="%IIS_SITES_HOME%\WebSite1" />
        </application>
        <bindings>
          <binding protocol="http" bindingInformation="*:8080:" />
        </bindings>
      </site>
 File path was (solutionFolder)\.vs\config
Tried bindingInformation with bindingInformation=":8080:*"  
I have disabled my firewall as well.
I am trying to get this done on Visual Studio 2017.
I tried to use ngrok to tunnel my localhost as well.
Any help?
This seems to be like an error connecting to http://<ip-address>:<port-number>. The response status was 0 getting this when using from different system. 
Ping is working.
