- 浏览: 180783 次
- 性别:
- 来自: 沈阳
文章分类
最新评论
-
Cash:
今日测试微信服务器,搭建tomcat8.0.9时,发布的ser ...
Tomcat 主机部署 -
Cash:
追加网通ip段:在网上没有公布出来222.128.0.0 25 ...
双ISP出口用到的ip地址表
Technical background
What distinguishes FTP from most other protocols is the use of secondary connections for file transfers. When you connect to an FTP server, you are actually making two connections. First, the so-called control connection is established, over which FTP commands and their replies are transferred. Then, in order to transfer a file or a directory listing, the client sends a particular command over the control connection to establish the data connection.
The data connection can be established two different ways, using active mode or passive mode.
In passive mode, which is recommended (see below), the client sends the PASV command to the server, and the server responds with an address. The client then issues a command to transfer a file or to get a directory listing, and establishes a secondary connection to the address returned by the server.
In active mode, the client opens a socket on the local machine and tells its address to the server using the PORT command. Once the client issues a command to transfer a file or listing, the server will connect to the address provided by the client.
In both cases, the actual file or listing is then transferred over the data connection.
Generally, establishing outgoing connections requires less configuration on the routers/firewalls involved than establishing incoming connections. In passive mode, the connection is outgoing on the client side and incoming on the server side and in active mode this is reversed. Note that the only differences are in establishing a connection. Once established, the connection can be used for uploads or downloads.
A common network setup might look like this:
In passive mode, the router and firewall on the server side need to be configured to accept and forward incoming connections. On the client side, however, only outgoing connections need to be allowed (which will already be the case most of the time).
Analogously, in active mode, the router and firewall on the client side need to be configured to accept and forward incoming connections. Only outgoing connections have to be allowed on the server side.
Since in most cases one server provides a service for many users, it is much easier to configure the router and firewall on the server side once for passive mode than to configure the client's router/firewall for each individual client in active mode. Therefore, passive mode is recommended in most cases.
发表评论
-
ospf重分发默认路由无法进入路由表问题
2020-11-12 17:30 1076机房内设备升级改造,核心交换机与3台互联网路由器对接,中间 ... -
ASA5520 remote ipsec vpn配置
2013-08-29 13:14 5082接口启用ISAKMP: crypto isakmp enabl ... -
javascript 自动填写用户已输入的用户名及密码
2013-01-17 15:22 4589<!DOCTYPE html PUBLIC " ... -
H3C Spanning Tree
2012-12-21 10:07 1717stp mode stp stp instance 1 ... -
关于ASA5520的radius认证remote vpn用户配置延时
2012-08-17 13:53 2441近日对ciscovpn认证服务器进行迁移发现ASA5520配置 ... -
windows2008R2 NPS导致dhcp无法分派地址
2012-08-16 16:36 3339近几天正在考虑将nps在windows2008r2系统(已部署 ... -
双ISP出口用到的ip地址表
2012-08-14 16:59 1335中国电信ip段 http://bgp.he.net/AS413 ... -
ciscoRV042对接cisco2951,日志
2012-08-07 13:12 2736在2951上的ike策略10无法与RV042的策略匹配,需要手 ... -
静态路由重分发进入ospf的深入学习
2012-05-03 11:29 4985路由器与三层交换机已形成ospf邻居关系, 现在要将与此台 ... -
ip地址分类,英文文章,说的很透彻
2012-05-03 09:08 1361Network Address Range: Class A ... -
H3C MSR50-40 路由器,关闭web管理
2012-01-09 16:56 1317[MSR50-40] undo ip http enable ... -
路由器接口参数及意义
2011-12-21 20:33 1483router#sh int fa0/0 FastEtherne ... -
cisco设备telnet显示console日志信息
2011-12-20 21:55 1350全局模式下输入命令:terminal monitor -
关于MSTP线路的Qos拥塞控制问题!
2011-10-08 23:05 1591mstp线路为用户接入提供超过2Mbps的接入速度,为sdh提 ... -
cisco路由器密码重置
2011-09-21 11:40 1144when the router is starting to ... -
windows2003中文版,windows2008R2英文版,dhcp服务器迁移
2011-07-19 16:20 17881)windows2003 netsh dhcp se ... -
IIS页面访问问题
2011-07-07 20:45 1076(转) “您未被授权查看该页,您不具备使用所提供的凭 ... -
常用端口号
2011-06-27 21:58 1046List of TCP and UDP port number ... -
关于cisco 4507R的主控板卡冗余
2011-06-24 11:30 1946切换主处理板卡:redundancy force−switch ... -
ASA5200的NAT旁路访问DMZ区域!
2011-04-26 22:39 1939最近开始搞cisco ASA设备,发现在nat的acl中无法使 ...
相关推荐
Apache Commons Net提供了丰富的API,如`FTPClient`类,支持主动和被动模式,便于处理防火墙和NAT环境下的连接。FTP上传涉及到`storeFile()`方法,而下载则使用`retrieveFile()`。 2. CSV文件解析: CSV(Comma ...
主要有两种工作模式:主动模式(Port)和被动模式(Passive)。 2. FTP连接与会话: 在FTP下载过程中,首先需要建立控制连接,客户端发送用户名和密码给服务器进行身份验证。验证成功后,可以打开数据连接进行文件...
数据连接的建立可以通过主动模式或被动模式,根据服务器给出的端口号进行连接。 5. **文件传输**:实现文件的上传和下载,需要处理二进制流的读写,确保数据完整无误地传输。 6. **错误处理**:考虑到网络的不可...
FTP支持两种不同的连接模式:主动模式(Active Mode)和被动模式(Passive Mode)。 1. **主动模式(Active Mode)**:在主动模式下,数据连接的建立由FTP服务器发起。具体步骤如下: - 客户端通过控制连接向...
10. **协议扩展**:FTP有多种扩展,如ASCII和二进制模式的数据传输,被动模式(PASV)和主动模式(PORT)的设置,以及FTP-over-HTTP(WebDAV)等。 在压缩包中的`说明.htm`和`下载说明.txt`可能是对源代码的使用...
4. **数据传输**:FTP使用两种模式进行数据传输——主动模式和被动模式。主动模式下,服务器打开一个端口等待客户端连接;被动模式下,客户端告诉服务器它将连接哪个端口,然后服务器连接过去。winpcap可能用于监控...
FTP使用两种模式:主动模式和被动模式。 1. 主动模式:在主动模式下,客户端首先打开一个随机端口(通常在1024-5000之间)作为数据通道,并告诉服务器这个端口号。然后,服务器连接到客户端的这个端口来传输数据。 ...
4. **主动模式与被动模式**:FTP的主动模式中,客户端指定一个端口,服务器主动连接到该端口进行数据传输。而在被动模式下,服务器开启一个随机端口,并告知客户端,然后客户端连接到服务器的这个端口进行数据传输。...
2. **FTP命令**:MFC中的`CInternetSession`和`CFtpConnection`类可以用来发送FTP命令,如`USER`、`PASS`、`CWD`(改变工作目录)、`PASV`(被动模式)或`PORT`(主动模式)等。 3. **文件传输**:FTP客户端可以...
数据连接则用于实际的数据传输,可以是主动模式或被动模式。主动模式中,客户端指定一个端口,服务器连接到这个端口来传输数据;而在被动模式下,服务器打开一个随机端口,并告诉客户端来连接它,以避免防火墙问题。...
- 主动模式(Active Mode):服务器主动连接客户端的数据端口来传输数据。 - 被动模式(Passive Mode):客户端发起数据连接请求,适用于防火墙和NAT环境,解决端口访问问题。 3. FTP命令与响应: FTP命令包括...
在主动模式下,客户端告诉服务器应连接到哪个端口进行数据传输;在被动模式下,服务器开启一个随机端口并通知客户端连接。 6. **错误处理**:确保正确处理各种可能的错误,如网络故障、文件权限问题或无效的FTP命令...
2. 被动模式(Passive模式):由于防火墙等问题,主动模式可能会遇到困难,因此FTP引入了被动模式。客户端先向服务器发送PASV命令,服务器响应并提供一个临时端口号,客户端再主动连接到这个端口进行数据传输。 在...
3. **主动模式与被动模式**:FTP有两种数据传输模式。主动模式中,服务器打开一个数据连接到客户端;而在被动模式下,客户端打开连接到服务器。这两种模式在源码中会有不同的实现。 4. **FTP会话管理**:源代码会...
FTP有两种工作模式:主动模式(Port模式)和被动模式(Passive模式)。主动模式中,客户端打开一个随机端口(称为数据连接端口)并向服务器发送FTP命令,然后服务器使用FTP控制端口(默认21)响应并连接到客户端的...
4. **主动模式与被动模式**:FTP有两种工作模式,即主动模式和被动模式。主动模式中,客户端打开一个数据连接到服务器;而在被动模式下,服务器开启一个端口等待客户端连接。被动模式通常用于解决防火墙和NAT设备的...
2. **FTP连接模式**:FTP有两种连接模式——主动模式(Port)和被动模式(Passive)。主动模式中,服务器主动向客户端发起数据连接;被动模式下,由于防火墙或NAT设备的影响,服务器会等待客户端建立数据连接。 3. ...
FTP有两种模式:主动模式(Active Mode)和被动模式(Passive Mode)。在主动模式下,客户端告诉服务器它将监听哪个端口,然后服务器连接到这个端口进行数据传输。而在被动模式下,服务器告诉客户端一个临时端口,...
FTP协议主要有两种工作模式:主动模式(Port模式)和被动模式(Passive模式)。主动模式中,客户端打开一个随机端口连接到FTP服务器的21号控制端口,然后服务器从其20号数据端口连接回客户端的指定端口。在被动模式...
在主动模式中,服务器发起数据连接;在被动模式中,客户端发起。源码需要处理这两种模式下的连接建立。 5. **用户名和密码认证**:FTP客户端需要登录服务器,源码会有处理用户身份验证的部分。 6. **目录浏览与...