BZZZZZZZZT You have just missed the 1.000.000 dollar question. The short answer is indeed: NO. When you do pure 1:1 NAT and don't filter any traffic, you do not need to track connections, as any packet will just get NATted between the two addresses. Whether this is a good setup, or a good idea, I don't think so. You would probably need to do other things on your firewall then just 1:1 NAT between address(ranges). -Sietse ________________________________ From: netfilter-bounces@xxxxxxxxxxxxxxxxxxx on behalf of Pascal Hambourg Sent: Wed 07-Jun-06 14:56 To: netfilter@xxxxxxxxxxxxxxxxxxx Subject: Re: Is ip_conntrack_ftp needed for 1:1 nat? Hello, Robert LeBlanc wrote : > Is ip_conntrack_ftp needed for 1:1 nat? The short answer is : yes, and ip_nat_ftp (which needs ip_conntrack_ftp) is needed too to handle properly any NAT situation. The longer answer is : the FTP conntrack and NAT helper modules are not absolutely necessary in all NAT situations. But even in the case when they are not absolutely necessary, they can make the NAT and filtering setup much simpler. To summarize, what do these modules do ? In both active and passive modes, ip_conntrack_ftp expects and marks as RELATED the first packet of an FTP data connection related to an established control FTP connection. In passive mode, ip_nat_ftp modifies if necessary (i.e. when the client address is masqueraded) the address and port numbers in the PORT commands sent by the client to the server over the control connection which tell the server which address and port to connect to to establish the data connection. In passive mode, it modifies if necessary (i.e. when the server address is masqueraded) the address and port numbers in the reply to the PASV command sent by the server to the client over the control connection to tell the client which address and port to connect to to establish the data connection. Note that both modules must be given in the 'ports' parameter the list of destination ports that may be used for FTP control connection whenever there are non standard ones (other than 21). This implies that you must explicitly load ip_conntrack_ftp before ip_nat_ftp, else ip_nat_ftp will automatically load ip_conntrack_ftp but without telling it which ports to monitor ! So, when are the FTP helper modules not necessary ? - In passive mode when the server address is not masqueraded. If the client is masqueraded, the NAT device must masquerade and accept any connection from the client. - In active mode when the client address is not masqueraded. If the server is masqueraded, the NAT device must masquerade and accept any connection from the server with uses the ftp-data source port (20/TCP by default). - In passive mode when the server is masqueraded but is able to send its apparent address in the PASV reply and to use a restricted range of local ports for data connections. The NAT device must redirect (DNAT) and accept NEW connections on this port range to the server private address. - In active mode when the client is masqueraded but is able to send its apparent address in the PORT command and to use a restricted range of local ports for data connections. The NAT device must redirect (DNAT) and accept NEW connections on this port range to the client private address.