Linux中國

如何在 vmware esxi 5.5 中開放 VNC 埠

1、編輯/etc/vmware/firewall/service.xml

vi /etc/vmware/firewall/service.xml 

2、在該文件重中倒數第二行開始添加以下內容:

<!-- Firewall configuration information for VNC --> 
<service id=&apos;0040&apos;>
    <id>VNC</id>
    <rule id=&apos;0000&apos;>
      <direction>inbound</direction>
      <protocol>tcp</protocol>
      <porttype>dst</porttype>
      <port>
        <begin>40000</begin>
        <end>60000</end>
      </port>
    </rule>
    <enabled>true</enabled>
    <required>false</required>
 </service> 

3、執行以下命令以使配置文件生效:

esxcli network firewall refresh

4、查看是否已經生效:

esxcli network firewall ruleset list | grep VNC
VNC                  true

本文轉載來自 Linux 中國: https://github.com/Linux-CN/archive

對這篇文章感覺如何?

太棒了
0
不錯
0
愛死了
0
不太好
0
感覺很糟
0
雨落清風。心向陽

    You may also like

    Leave a reply

    您的電子郵箱地址不會被公開。 必填項已用 * 標註

    此站點使用Akismet來減少垃圾評論。了解我們如何處理您的評論數據

    More in:Linux中國