Results 1 to 7 of 7

Thread: The "nat" table is not intended for filtering, the use of DROP is therefore inhibited

  1. #1
    Join Date
    May 2013
    Beans
    12

    The "nat" table is not intended for filtering, the use of DROP is therefore inhibited

    I am getting an error in my iptables config. I am getting the following error.

    * Loading FTP Rules...
    iptables v1.4.4:
    The "nat" table is not intended for filtering, the use of DROP is therefore inhibited.


    Try `iptables -h' or 'iptables --help' for more information.

    The config for concerned area is as such:

    WANIFACE="eth0"
    BWANIFACE="eth2"
    LANIFACE="eth1"
    VLANTRUNKIFACE="eth3"

    FTP_EXT="1.1.1.1"

    $IPTABLES -t nat -A PREROUTING -i $WANIFACE -d $FTP_EXT -j DROP

    Any comments or ideas on how to fix this?

  2. #2
    Join Date
    Nov 2008
    Location
    Boston MetroWest
    Beans
    16,326

    Re: The "nat" table is not intended for filtering, the use of DROP is therefore inhib

    Use an INPUT rule.
    If you ask for help, do not abandon your request. Please have the courtesy to check for responses and thank the people who helped you.

    Blog · Linode System Administration Guides · Android Apps for Ubuntu Users

  3. #3
    Join Date
    May 2013
    Beans
    12

    Re: The "nat" table is not intended for filtering, the use of DROP is therefore inhib

    Quote Originally Posted by SeijiSensei View Post
    Use an INPUT rule.
    I am not familiar with that rule. Can you give me an example?

  4. #4
    Join Date
    Nov 2008
    Location
    Boston MetroWest
    Beans
    16,326

    Re: The "nat" table is not intended for filtering, the use of DROP is therefore inhib

    Code:
    /sbin/iptables -A INPUT -p tcp -d 1.1.1.1 --dport 21 -j REJECT
    That blocks all packets destined for port 21, the FTP port, on the remote machine at 1.1.1.1.
    If you ask for help, do not abandon your request. Please have the courtesy to check for responses and thank the people who helped you.

    Blog · Linode System Administration Guides · Android Apps for Ubuntu Users

  5. #5
    Join Date
    May 2013
    Beans
    12

    Re: The "nat" table is not intended for filtering, the use of DROP is therefore inhib

    Quote Originally Posted by SeijiSensei View Post
    Code:
    /sbin/iptables -A INPUT -p tcp -d 1.1.1.1 --dport 21 -j REJECT
    That blocks all packets destined for port 21, the FTP port, on the remote machine at 1.1.1.1.
    Maybe I need to be more specific. This is my whole rule for FTP:

    echo " * Loading FTP Rules..."
    $IPTABLES -t nat -A PREROUTING -i $WANIFACE -d $FTP_EXT -p tcp --dport 20:21 -j DNAT --to $FTP_INT
    $IPTABLES -t nat -A PREROUTING -i $WANIFACE -d $FTP_EXT -j DROP

    Can you explain to me what that is doing because it looks to me to be excessive. I apologize if this is a newbie question. I have been given the task of maintaining this firewall and have no experience with iptables and little with Linux.

    Thank you for all the help. I have had a lot of my questions answered on this forum. Also, is there anyone out there that would be willing to consult on this. It would not be a favor, it would get payment for any items helped with beyond this.

  6. #6
    Join Date
    Nov 2008
    Location
    Boston MetroWest
    Beans
    16,326

    Re: The "nat" table is not intended for filtering, the use of DROP is therefore inhib

    The NAT table enables "network address translation", which replaces the source and/or target IP addresses in a packet with a different address. Home routers use this method to "masquerade" traffic from computers behind the firewall so it appears to come from the firewall itself. The NAT table is not designed to filter packets; that is what the "filter" table is for. Since that is the default table you don't need to use "-t filter" with rules like INPUT or OUTPUT.

    The rules you presented first redirect all FTP traffic to the address $FTP_INT then attempts to block those packets with a DROP. As you discovered, DROP is not a valid disposition in the NAT table. Even if it worked, that method is unnecessarily complex. Try replacing the two rules you have with the rule I gave you and see if that does what you want. Obviously you can modify it to use the various environment variables that you have defined.

    Most firewalls use some combination of INPUT, OUTPUT, and FORWARD to permit or block traffic. The NAT table is used for more arcane tasks like port forwarding or masquerading. There the primary targets are PREROUTING, which means to rewrite a packet before it is routed to another host, and POSTROUTING which rewrites packets after they have been routed.
    Last edited by SeijiSensei; June 20th, 2013 at 11:13 PM.
    If you ask for help, do not abandon your request. Please have the courtesy to check for responses and thank the people who helped you.

    Blog · Linode System Administration Guides · Android Apps for Ubuntu Users

  7. #7
    Join Date
    May 2013
    Beans
    12

    Re: The "nat" table is not intended for filtering, the use of DROP is therefore inhib

    So really the first one is the only one that I need. The second one is not rejecting anything. The first rule is pushing it towards the internal IP of the FTP server. The other is erroneous. I can just remove it.

    I don't want to block FTP, we have an ftp site that external users post things to.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •