如何在 vmware esxi 5.5 中开放 VNC 端口

1、编辑/etc/vmware/firewall/service.xml

1
vi /etc/vmware/firewall/service.xml 

2、在该文件重中倒数第二行开始添加以下内容:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!-- Firewall configuration information for VNC --> 
<service id='0040'>
<id>VNC</id>
<rule id='0000'>
<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、执行以下命令以使配置文件生效:

1
esxcli network firewall refresh

4、查看是否已经生效:

1
2
esxcli network firewall ruleset list | grep VNC
VNC true

如何在 vmware esxi 5.5 中开放 VNC 端口
https://linuxcat.top/article-5650-1.html
作者
netb2c
发布于
2015年6月17日
许可协议
CC-BY-NC