我可以在AZURE中使用443以外的其他端口进行SSL通信吗? [英] Can I use another port other than 443 for SSL communication in AZURE ?

查看:205
本文介绍了我可以在AZURE中使用443以外的其他端口进行SSL通信吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我可以在AZURE中使用除443端口以外的SSL通信吗?

例如:ServiceDefinition



Can I use other than 443 port for SSL communication in AZURE ?
eg: ServiceDefinition

<Sites>
      <Site name="Site1" physicalDirectory="..\..\..\Publish\Site1">
        <Bindings>
          <Binding name="Endpoint1" endpointName="Endpoint1" />
        </Bindings>
      </Site>
      <Site name="Site2" physicalDirectory="..\..\..\Site2">
        <Bindings>
          <Binding name="Endpoint2" endpointName="Endpoint2" />
        </Bindings>
      </Site>
    </Sites>
    <Endpoints>
      <InputEndpoint name="Endpoint1" protocol="https" port="443" certificate="site1cer" />
        <InputEndpoint name="Endpoint2" protocol="https" port="553" certificate="site1cer" />
    </Endpoints>

推荐答案

简答:是的,你可以!



答案很长:我可以使用443以外的其他端口进行SSL通信吗?



Short answer: yes, you can!

Long answer comes here: Can I use another port other than 443 for SSL communication?





SSL与单个端口值无关;实际上,作为协议,它可以在任何传输介质上使用,只要该介质为任意字节提供双向流。



在Web上下文中, 您可以使用443以外的任何端口,只要您在网址中指定它:https://www.example.com:7342 / foobar.html



请注意,有些网络(特别是一些免费的WiFi接入点)不允许通过443或80以外的其他端口的流量;这意味着使用443以外的端口,虽然完全标准和支持,但可能意味着一些实际的使用限制。



SSL is in no way tied to a single port value; in fact, as a protocol, it can be used over any transport medium, as long as that medium provides a bidirectional stream for arbitrary bytes.

In a Web context, you can use any port other than 443, provided that you specify it in the URL: https://www.example.com:7342/foobar.html

Note that there are some networks (especially some free WiFi access points) that don't allow traffic over other ports than 443 or 80; which means that using a port other than 443, though perfectly standard and supported, may imply some practical usage restrictions.


这篇关于我可以在AZURE中使用443以外的其他端口进行SSL通信吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆