码迷,mamicode.com
首页 > 其他好文 > 详细

通过VNC直接控制ESXI虚拟机

时间:2015-03-12 01:08:42      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:firewall   虚拟机   配置文件   主机   防火墙   

准备步骤:

  1. 1.  下载VNC  Putty WinSCP

  2. 2.  ESXI上开启ssh

  3. 3.  利用WinSCP连接到ESXI,按照下面要求修改:

  4. 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

通过VNC直接控制ESXI虚拟机

标签:firewall   虚拟机   配置文件   主机   防火墙   

原文地址:http://likun.blog.51cto.com/2162242/1619505

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!