准备步骤:
1. 下载VNC Putty及 WinSCP
2. 在ESXI上开启ssh
3. 利用WinSCP连接到ESXI,按照下面要求修改:
1. 修改ESXi主机的firewall配置
在ESXi主机的/etc/vmware/firewall目录下增加vnc的防火墙配置文件,vnc.xml,内容如下:
/etc/vmware/firewall # cat vnc.xml
<!-- FirewallRule for VNC Console -->
<ConfigRoot>
<service>
<id>VNC</id>
<rule id = ‘0000‘>
<direction>inbound</direction>
<protocol>tcp</protocol>
<porttype>dst</porttype>
<port>
<begin>5900</begin>
<end>5910</end>
</port>
</rule>
<rule id = ‘0001‘>
<direction>outbound</direction>
<protocol>tcp</protocol>
<porttype>dst</porttype>
<port>
<begin>0</begin>
<end>65535</end>
</port>
</rule>
<enabled>true</enabled>
<required>false</required>
</service>
</ConfigRoot>
2. 刷新防火墙规则
/etc/vmware/firewall# esxcli network firewall refresh
检查规则是否生效:
/etc/vmware/firewall# esxcli network firewall ruleset list |grep VNC
VNC true
/etc/vmware/firewall#
3. 虚拟机配置
步骤如下:
关闭虚拟机,然后对虚拟机“编辑设置”。
鼠标右击选择:选项—常规---配置参数;
添加行,按如下配置参数:
RemoteDisplay.vnc.enabled= true
RemoteDisplay.vnc.password= <password>
RemoteDisplay.vnc.port= <port>
设置完成以后,重新启动虚拟机。
4. 客户端测试,这里只有一个IP,就是ESXI主机的IP
本文出自 “虚拟化信息中心” 博客,请务必保留此出处http://likun.blog.51cto.com/2162242/1619505
原文地址:http://likun.blog.51cto.com/2162242/1619505