如何以编程方式获取远程 IIS 上的可用 TCP 端口
我需要在远程 IIS 上安装网站。 但在此之前,我需要在远程 IIS 上找到可用的 TCP 端口。 我设法找到了仅在本地进行此操作的代码。
实现这一目标的最简单方法是什么?
I need to install web site on remote IIS.
But before doing that I need to find available TCP port on remote IIS.
I managed to find the code that makes this locally only.
What is the easiest way to achieve that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我很确定您无法判断哪个端口可以远程使用;我想你最好的方法是在远程服务器上运行一些东西,找到一个可用的端口号,然后将该端口(以某种方式)传输回执行远程安装的服务器。
I'm pretty sure you cannot tell which port is available remotely; I would imagine your best approach is to run something on the remote server which finds an available port number and then to transfer this port (somehow) back to the server doing the remote install.