Connect to website deployed on local machine from anywhere on internet [closed] - networking

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 5 years ago.
Improve this question
I have hosted a ASP.Net website on my localhost within my organisation. I want to connect to this website from any system around the world. I am unable to access it for now. What things should be done to allow access to the website to everyone in the Internet.

The required port(s) need to be opened in all firewalls that are between your web server and the internet.
This can include both software firewall(s) on your server, i.e. firewalld, and hardware firewalls in place as network middleware.

Related

Why doesnt your computer just cache the IP of common local domain servers to reduce traffic? [closed]

Closed. This question is not about programming or software development. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 3 days ago.
Improve this question
why doesnt your computer just cache the IP of common local domain servers like .uk if you are in the uk or .com when you are searching through the web?
Do I lack some understanding of the topic that makes this unacheiveable?
Just a thought off of the top of my head that doesnt seem to be unreasonable to me?

How to share a file between two PC on two different VPNs [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 months ago.
Improve this question
I need to copy files from one computer to another, but they are not on the same subnetwork. I need to use two different VPN connections to access the two computers. Can I transfer the files between them without using a third-party servers like Dropbox, and without downloading files on my PC, disconnecting from the first VPN, connecting to the second VPN, and uploading files on the target computer?
The solution is using this marvellous piece of software: https://github.com/magic-wormhole/magic-wormhole

Which IP is picked up when using Remote Desktop? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 7 years ago.
Improve this question
This is not a coding question but I can't find a clear answer anywhere so I thought the stackoverflow community will know. Let's say, I'm currently using computer A and running Remote Desktop on Windows to access computer B. From computer B, I sign in to a website. Would the admin for that website be able to tell I was on computer A when I signed in? Or can they only pick up my computer B IP address? I don't know much about networking and remote desktop so any help is appreciated.
Your IP will be of computer B. You can think of Remote Desktop as a TV (with which you can interact) - the images from the remote computer are transmitted to your computer, but all actions still happen on the remote computer.

How to mark a known self-signed server as trusted for wget [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
Im trying to use wget to download content over https from a self-signed ubuntu host in our LAN. of course wget doesnt allow that, and in all the answers I've found they promoted using the: --no-check-certificate, this will expose me to "man in the middle" attacks. since I know the destination host, and have access to its certs is there a way to add the host to a "trusted" list, so that its certificate will be validated against a local copy?
thanks
You are most likely looking for the --ca-certificate parameter.

Adding azure cloud service to azure virtual network [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 9 years ago.
Improve this question
I just want to add the azure cloud service in azure virtual network. Is this possible? and how can we achieve this? Please provide me the steps to do this. As we are going to authenticating the cloud service using the on premises users using IIS domain authentication.
you can do that only by editing your csfg
you need to specify the vnet and the subnet
<NetworkConfiguration>
<VirtualNetworkSite name="YourVirtualNetworkName" />
<AddressAssignments>
<InstanceAddress roleName="YourRoleName">
<Subnets>
<Subnet name="YourConfiguredSubnet" />
</Subnets>
</InstanceAddress>
</AddressAssignments>
</NetworkConfiguration>

Resources