网站远程管理外文翻译.doc_第1页
网站远程管理外文翻译.doc_第2页
网站远程管理外文翻译.doc_第3页
网站远程管理外文翻译.doc_第4页
全文预览已结束

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

湖北大学本科毕业论文(设计)外文翻译外文翻译:浅谈网络中的远程控制 原文来源: Rabiner,L.R.; Gold,B. Englewood Cliffs, N.J., Prentice-Hall, Inc., 2009 p.译文正文: 摘要:在网络高速发展的今天,随着计算机应用的普及,远程控制也逐渐被人们所关注。远程控制是网络的一大优势,在网络管理、远程协作、远程办公等计算机领域都有着广泛的应用,它进一步克服了由于地域性的差异而带来的操作中的不便性,使得网络的效率得到了更大的发挥。远程控制可通过多种方法加以实现。关键词:远程控制;遥控操作;技术应用;实现方法1 计算机远程控制计算机远程控制是在网络上由一台电脑(主控端Remote客户端)远距离去控制另一台电脑(被控端HostJ服务器端)的技术。这里的远程不是字面意思的远距离,而是指通过网络来对远端的计算机实施遥控。远程控制只是通过网络来操纵计算机的一种手段而已,只要运用得当,操纵远程的计算机也就如同你操纵眼前正在使用的计算机一样没有任何区别。当操作者使用主控端电脑控制被控端电脑时,就如同坐在被控端电脑的屏幕前一样,可以启动被控端电脑的应用程序,可以使用被控端电脑的文件资料,甚至可以利用被控端电脑的外部打印设备和通信设备来进行打印和访问互联网。在这个过程中主控端电脑只是将键盘和鼠标的指令传送给远程电脑,同时将被控端电脑的屏幕画面通过通信线回传过来。也就是说,我们控制被控端电脑进行操作似乎是在眼前的电脑上进行的,实质是在远程的电脑中实现的,不论打开文件,还是上网浏览、下载,所有的资料和上网等都是存储在远程的被控端电脑中的。实行远程控制,实际上就是一个服务器程序(以下简称被控程序)和一个客户程序(以下简称主控程序),被控方即为服务器程序,它监听客户的请求,并做出处理;主控方即为客户程序,它连接上服务器后,发出自己的请求,服务器便根据客户的请求做出不同的响应。远程控制系统组成如图1所示。当今的远程控制技术支持的网络方式有:LAN、WAN、拨号方式、互联网方式。此外,有的远程控制软件还支持通过串口、并口、红外端口来对远程机进行控制。远程控制克服了由于地域性的差异而带来的操作中的不便性,使得网络的效率得到了更大的发挥。2远程控制的技术实现21远程控制的原理 “只要网络有通路就可以实现远程控制”,远程控制必须通过网络才能进行。位于本地的、已被安装了客户端程序的主控端是操纵指令的发出端,它像一个普通客户一样向非本地、安装了服务器端程序的被控端发出信号,建立并通过一个特殊的远程服务,使用各种远程控制功能发送远程控制命令,控制被控端电脑中的各种应用程序运行,使得被控端按照主控端的要求进行各种操作,从而实现远程控制的目的。图2远程控制示意图通过网络实现的远程控制示意图如图2所示。22远程控制实现方法221 利用微软Windows XP系统中远程控制功能 每台Windows XP电脑都同时包括客户端和服务器端,也就是说它既可以当成客户端来连接其他的Windows XP电脑,也可以将自己当成服务器端,让别的电脑来控制自己。服务器端的系统都是使用Windows XP,而客户端就可以是Windows XP、Windows 2000或者Windows Me,并且对客户端没有语言的限制。用户可以利用远程桌面通过网络对远程计算机进行控制,控制后可以访问所有应用程序、文件和网络资源等。222利用一些功能强大的远程控制软件。 远程控制技术发展到今天,产生了许多优秀的远程控制软件,有提供多层次安全防护的远程遥控软件,还有加速远程遥控操作软件,以及更加利于快速文档传送的控制软件。还有如“RemotelyAnywhere”只需在服务器端一次性安装,客户端在网络中不需要再增加任何软件,就可以直接通过浏览器来对服务器进行远程控制。它不仅仅只是让客户端能够远程控制服务器的桌面,还可以给多个用户设置不同的权限,以便让他们根据授权对服务器的文件管理器、注册表等项目进行查询和管理;它允许服务器和客户端之间传递剪贴板,也可实现普通文档的传送。另外,一些集远程控制、数据通信和文件传输等功能于一体,具有很高的数据传输效率和系统安全保障的远程控制系统正在被推广。223根据实际需求开发实现远程控制 自行开发实现远程控制,涉及主控机和受控机,故采用ClientServer结构。可以用Delphi编程环境分别在两台不同的电脑上编制控制和被控制程序,一个为Clientdprexe,装在受控机上;另一个为Serverdprexe,装在主控机上。Serverdprexe指定要监视的受控机的IP地址和发送指令给客户机的Clientdprexe,客户机的Clientdprexe得到指令后,接着在本机执行相应指令,将结果返回给主控机。主控方的功能是这样实现的:读取命令串一将命令串转换成数组一清除内存流一指定目标计算机(通过读取所输入的IP地址)一将指令码发送给目标计算机。当主控机将指令发给受控机后,受控机将在本机上调用Windows的应用程序接口API函数以执行所接收的指令。当受控机接收到数据时,便开始执行主控机发送的操作。具体操作是这样的:读取控制码_+识别控制码一执行相应的过程或API函数以达到相应的功能。3 结束语远程控制虽然可以方便地操纵远程计算机,给人们带来很多便利,但它也会由此带来安全方面的隐患。随着远程控制市场的成熟,网络安全变得越发重要,只有彻底解决这一关键问题,才能促进远程控制真正走向应用。Remote control of network Abstract: The rapid development of the network today, with the popularization of computer applications, remote control have gradually been of concern to the people. Network remote control is a major advantage in network management, remote collaboration, remote office and other computer fields have a wide range of applications, it further to overcome regional differences in the operation brought the inconvenience, making the network efficiency Given greater play. Remote control can be achieved through a variety of ways.Keywords: remote control; remote operation; technology; Implementation1 computer remote control Computer remote control is on the network by a computer (host Remote / Client) remote to control another computer technology . Here is not the literal meaning of the long-distance remote, but rather through the network to the remote computer on the implementation of remote control. Remote control is to manipulate the computer through the network as a means only, if used properly, will control the remote computer as you manipulate the front of the computer being used as there is no difference. When the operator using the host computer control host computer to host computer as if sitting in front of the screen as the computer can start the host application, you can use the host computer documentation, or even Host computer using the external printing device and communications equipment to print and access the Internet. In this process, host computer is just a keyboard and mouse commands sent to the remote computer, while host computers screen image come through the communication line return. That is, we control the host computer to operate in front of the computer seems to be carried out, in essence, a remote computer to achieve, whether to open the file, or Web browsing, downloading, all the information and the Internet are all Stored in the remote host computer. Implementation of remote control, in fact, a server program (hereinafter referred to as charged program) and a client (hereinafter referred to as master control program), the prosecution is the server program that listens to customer requests, and to deal with it; Master Is the client side, it is connected to the server, to make their request, the server will be made according to customers request a different response. Remote control system shown in Figure 1. Todays technical support network remote control methods are: LAN, WAN, dial-up Internet way. In addition, some remote control software also supports serial, parallel, infrared port to control a remote machine. Remote control to overcome regional differences in the operation brought the inconvenience, make the network to play a greater efficiency.2 remote control technology2.1 Principles of remote control As long as the network has access to connect remote control , remote control must be carried out through the network. At local, has been installed, the host is a client program to issue control instructions side, it is the same as an ordinary customer to non-local, the installation of the host server program signals, and through the establishment of a special Remote service, using a variety of remote control function to send a remote control command, control, host computers running various applications, making the host in accordance with the masters Requirements for various operations, in order to achieve the remote control. Figure 2 Schematic diagram of the remote control Remote control through the network diagram shown in Figure 2.2.2Implementation of Remote Control2.2.1 Microsoft Windows XP system using the remote control function Windows XP computers each include both client and server side, meaning that both can be used as a client to connect to other Windows XP computer, you can also themselves as the server side, so that other computer to control themselves. Server systems are using Windows XP, the client can be Windows XP, Windows 2000 or Windows Me, and the client without language restrictions. Users can use the Remote Desktop computer through the network to the remote control, after controlling for access to all applications, files and network resources.2.2.2 using some powerful remote control software. Remote control technology to today, have a lot of great remote control software, providing multi-level security protection for remote control software, as well as speed up the remote control operating software, and more conducive to the rapid document transmission control software. Also, as RemotelyAnywhere just a one-time installation on the server side, the client in the network do not need to add any software to connect directly through the browser on the server for remote control. It is not just the client to remotely control the servers desktop, but also can set different permissions for multiple users so that they are under the authority of the servers file manager, registry, query and manage projects; it allows the server and Clipboard passed between the client can also be transmitted to achieve common document. In addition, some set of remote control, data communications and file transfer and other functions into one, with high data transmission efficiency and system security remote control system is being promoted.2.2.3 Development and implementation of the actual needs of the remote control Develop their own remote control, involving the host computer and controlled machines, so the use of Client / Server structure. Delphi programming environment can be used separately on two different computers to be controlled preparation of control and procedures, one for Clientdpr. exe, installed in the controlled machine; one for Serverdpr. exe, installed in the main computer on. Serverdpr. exe designated to monitor the controlled machine IP address and send instructions to the client Clientdpr. exe, client Clientdpr. exe get command, and then execute the corresponding instructions in the machine, the results are returned to the host computer. Master side function is implemented as follows: Read command string into a strin

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论