From owner-freebsd-ipfw@freebsd.org Tue Jun 30 19:23:26 2015 Return-Path: Delivered-To: freebsd-ipfw@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CE3EC9900B9 for ; Tue, 30 Jun 2015 19:23:26 +0000 (UTC) (envelope-from g_amanakis@yahoo.com) Received: from nm15-vm6.bullet.mail.ne1.yahoo.com (nm15-vm6.bullet.mail.ne1.yahoo.com [98.138.91.108]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 97E5E1626 for ; Tue, 30 Jun 2015 19:23:26 +0000 (UTC) (envelope-from g_amanakis@yahoo.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s2048; t=1435692045; bh=zhrTBYNrOOs5T5qrpbEVddvzvwEsWbrw7yOPZ+yOafg=; h=Subject:From:To:Date:From:Subject; b=cFoH63yExa1f1k9RQCUWXTULWMYVPhE1FOK+CFb9vJLDpz1IcoCPMkP25mpl/06FBQz4akdwATSkLMdA3A/0O6s2gy4FdIz8hWCg0H90cGXZop/5ALO1pYdAzvMCwmDfJEGcsqI4AJZPFqpEeAqe9Sdo07Rz/SdBUoh0M+G2+hkTaVGIY3QOe7tF8WpZIDnZsOwUr3CELOcIa4JVnldhmAoF7haB/rr8zUAWQUIlA8Rny8miGp6JfB31tzSwdfqtUzhGQm8LakPJ2e/3IKPDZKvRVc8EnzilHsBFOC/Fd28Z+64soeNxPZ2tkze3pYZrXqgIUVEHChViEckXivzSaA== Received: from [98.138.100.117] by nm15.bullet.mail.ne1.yahoo.com with NNFMP; 30 Jun 2015 19:20:45 -0000 Received: from [98.138.226.63] by tm108.bullet.mail.ne1.yahoo.com with NNFMP; 30 Jun 2015 19:20:42 -0000 Received: from [127.0.0.1] by smtp214.mail.ne1.yahoo.com with NNFMP; 30 Jun 2015 19:20:42 -0000 X-Yahoo-Newman-Id: 56117.10240.bm@smtp214.mail.ne1.yahoo.com X-Yahoo-Newman-Property: ymail-3 X-YMail-OSG: TuBS91EVM1mEQUQNnUce4w4d8u1FFE9P0iLkDDQf0NGA9sC pXzm5PioGHp8mku3Og0KJneslUaL01TSfiP8XKM8n3WI0S_0PhFJxM.Bok8d MdL44orSW_EPU7faZHu..eQbqhksH89.5DUn_RBAP5amfTJmYiUzLm2N94VW HY2KyoJAhpCzhRWHfDU70c9nm21sSdLb8DoesgCzTDBMBtqcwBakcJXKJKb9 Dqy9ZwguHObzaIwPHisxJVJkC.zNiT7dzZmLeXikEyQ35ijYA2r8t14MHzYw kfsKpoGhsLpk5c9MmegDfrYabwa67iltRbM2rwf7YuKWKd8XEpSfZAgmuI5l LVBmI1GU7cOE4iG_MHp7Az3C7rcxjaRuBZTc4ZkldOIsF6u9Yf16hq7KrN1m gCURzrcxnK1j2Ovs379k9EeorZLemAzfEnC1tyYMRjvJqVQpko8gZtvYqWTM JctEiMellBhWX4CD4ngHdlFNDwd5.G__IHZE5rMZ59jC1wSRl0z9SVRmcaPr LJYPAF_VX9JLHfnQSW.RXvNqgSslObR78Bw-- X-Yahoo-SMTP: 6sUo5IiswBDB2TZm6JKJ6DaI.Rsz4O0- Message-ID: <1435692039.18121.12.camel@yahoo.com> Subject: keep-state and in-kernel NAT exposes local ip on external interface From: Georgios Amanakis To: freebsd-ipfw@freebsd.org Date: Tue, 30 Jun 2015 21:20:39 +0200 Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.16.4 Mime-Version: 1.0 Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ipfw@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: IPFW Technical Discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Jun 2015 19:23:26 -0000 On FreeBSD 10.1p13 with two interfaces em0(internet) and em1(lan) I can fish (tcpdump)packets on em0 which have escaped the in-kernel NAT and have as source address an IP on the LAN. This should not happen and I can confirm that with pf this is not the case. I have the following ipfw rules: nat: ipfw nat 123 config ip xxx.xxx.xxx.xxx same_ports reset 00100 reass ip from any to any in 00200 allow ip from any to any via lo0 00300 allow ip from any to any via em1 00400 nat 123 ip from any to any in recv em0 00500 check-state 00600 skipto 24000 ip from any to me dst-port 80,443,22,500,4500,1194,993,8112 in recv em0 keep-state 00700 skipto 24000 ip from any to any out xmit em0 keep-state 00800 deny log ip from any to any 24000 nat 123 ip from any to any out xmit em0 24100 allow ip from any to any Contrary to many online tutorials, including the example of the handbook regarding NAT ( https://www.freebsd.org/doc/handbook/firewalls-ipfw.html), when one places the NAT rules with the opposite order (i.e. outbound rule first and then the inbound rule) the problem disappears. i.e. ... 00400 nat 123 ip from any to any out xmit em0 ... 24000 nat 123 ip from any to any in recv em0 ... Why is this happening? Any objections to reversing the order of the NAT rules?