Data Communications and Networking Forouzan Fourth Edition 第26章 远程登录、电子邮件与文件传输 Remote Logging,Electronic Mail, and File Transfer 26.1
26.1 第26章 远程登录、电子邮件与文件传输 Remote Logging, Electronic Mail, and File Transfer
26-1 远程登录 对于每一个需求编写一个特定客户/服务器程序是不 可能的; 更好的方法是使用通用的客户/服务器程序,他让用 户能够访问远程计算机上的任何应用程序。 Topics discussed in this section: 口终端网络TELNET(Terminal NETwork) 26.2
26.2 26-1 远程登录 对于每一个需求编写一个特定客户/服务器程序是不 可能的; 更好的方法是使用通用的客户/服务器程序,他让用 户能够访问远程计算机上的任何应用程序。 终端网络TELNET(Terminal NETwork) Topics discussed in this section:
Note ▣ TELNET是一个通用的客户/服务器应用 程序。 26.3
26.3 TELNET 是一个通用的客户/服务器应用 程序。 Note
图26.1本地远程登录过程 Application programs Terminal Terminal driver Operatin system a.Local log-in TELNET TELNET client server Application programs 目目 . 目 Operating Operating system system TCP TCP Terminal Terminal Data link Data link Pseudoterminal driver Physical Physical driver Internet o.Remote log-in 26.4
26.4 图 26.1 本地远程登录过程
图26.2网络虚拟终端NVT的概念 TELNET TELNET Terminal client server Pseudoterminal driver Internet Local computer NVT character set Remote computer character set character set Data character Control character 26.5
26.5 图 26.2 网络虚拟终端NVT的概念
表26.1一些NVT控制字符 Character Decimal Binary Meaning EOF 236 11101100 End of file EOR 239 11101111 End of record SE 240 11110000 Suboption end NOP 241 11110001 No operation DM 242 11110010 Data mark BRK 243 11110011 Break P 244 11110100 Interrupt process AO 245 11110101 Abort output AYT 246 11110110 Are you there? EC 247 11110111 Erase character EL 248 11111000 Erase line GA 249 11111001 Go ahead SB 250 11111010 Suboption begin WILL 251 11111011 Agreement to enable option WONT 252 11111100 Refusal to enable option DO 253 11111101 Approval to option request DONT 254 11111110 Denial of option request IAC 255 11111111 Interpret(the next character)as control 26.6
26.6 表 26.1 一些NVT控制字符
图26.3嵌入的例子 c a t fi 1 e a IAC EC 1 Typed at the remote terminal 26.7
26.7 图 26.3 嵌入的例子
表26.2选项 Code Option Meaning 0 Binary Interpret as 8-bit binary transmission. 1 Echo Echo the data received on one side to the other. 3 Suppress go ahead Suppress go-ahead signals after data. 5 Status Request the status of TELNET. 6 Timing mark Define the timing marks. 24 Terminal type Set the terminal type. 32 Terminal speed Set the terminal speed. 34 Line mode Change to line mode. 26.8
26.8 表 26.2 选项
表26.3NVT选项协商字符集 Character Decimal Binary Meaning WILL 251 11111011 1.Offering to enable 2. Accepting a request to enable WONT 252 11111100 1.Rejecting a request to enable 2.Offering to disable 3.Accepting a request to disable DO 253 11111101 1.Approving an offer to enable 2.Requesting to enable DONT 254 11111110 1.Disapproving an offer to enable 2.Approving an offer to disable 3.Requesting to disable 26.9
26.9 表 26.3 NVT选项协商字符集
例26.1 图26.4表示了一个选项协商的例子。在这个例子中,客 户希望服务器将发送给服务器的每一个字符回显。回 显选项必须被服务器激活,因为正是服务器将这些字 符发回到用户的终端。因此,客户应该请求服务器使 用DO来激活这个选项。这个请求包括三个字符:IAC, DO和ECHO。服务器接受这个请求,并激活该选项。 它通过发送三个字符认可:IAC,WILL和ECHO。 26.10
26.10 图26.4表示了一个选项协商的例子。在这个例子中,客 户希望服务器将发送给服务器的每一个字符回显。回 显选项必须被服务器激活,因为正是服务器将这些字 符发回到用户的终端。因此,客户应该请求服务器使 用DO来激活这个选项。这个请求包括三个字符:IAC, DO和ECHO。服务器接受这个请求,并激活该选项。 它通过发送三个字符认可: IAC, WILL和ECHO。 例 26.1