LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Server
User Name
Password
Linux - Server This forum is for the discussion of Linux Software used in a server related context.

Notices


Reply
  Search this Thread
Old 05-01-2008, 03:45 AM   #31
hemi_426
Member
 
Registered: Apr 2008
Location: KSA-jeddah
Distribution: CentOS, gentoo, slackware
Posts: 80

Original Poster
Rep: Reputation: 15

i dont have a DROP rule
i have a DROP policy
so everything in my /var/log/iptables is DROPED packets ?
 
Old 05-01-2008, 03:48 AM   #32
hemi_426
Member
 
Registered: Apr 2008
Location: KSA-jeddah
Distribution: CentOS, gentoo, slackware
Posts: 80

Original Poster
Rep: Reputation: 15
my log rule is the first rule in my table so it should log everything right ?
 
Old 05-01-2008, 03:48 AM   #33
blacky_5251
Member
 
Registered: Oct 2004
Location: Adelaide Hills, South Australia
Distribution: RHEL 5&6 CentOS 5, 6 & 7
Posts: 573

Rep: Reputation: 61
Isn't this a DROP rule at the end?
Code:
iptables -N block
iptables -A block -m state --state ESTABLISHED,RELATED -j ACCEPT
iptables -A block -m state --state NEW -i ! eth0 -j ACCEPT
iptables -A block -j LOG --log-prefix "DROP UNTRUSTED NETWORKS "
iptables -A block -j DROP
 
Old 05-01-2008, 03:52 AM   #34
hemi_426
Member
 
Registered: Apr 2008
Location: KSA-jeddah
Distribution: CentOS, gentoo, slackware
Posts: 80

Original Poster
Rep: Reputation: 15
im not using that chain im using the following lines

$IPTABLES -A INPUT -p tcp -j LOG --log-level debug
$IPTABLES -A FORWARD -p tcp -j LOG --log-level debug

cause that chain didnt have any traffic and didnt log anything
 
Old 05-01-2008, 03:55 AM   #35
hemi_426
Member
 
Registered: Apr 2008
Location: KSA-jeddah
Distribution: CentOS, gentoo, slackware
Posts: 80

Original Poster
Rep: Reputation: 15
i see its logging allowed traffic cause its logging packets going to squid through port 3128
 
Old 05-01-2008, 03:57 AM   #36
blacky_5251
Member
 
Registered: Oct 2004
Location: Adelaide Hills, South Australia
Distribution: RHEL 5&6 CentOS 5, 6 & 7
Posts: 573

Rep: Reputation: 61
What does your full iptable look like? Run "iptables -nvL" and post the full output.

If you have a default policy to drop packets, then my understanding is that anything that doesn't match any of your non-logging rules will be dropped. So having LOG at the beginning isn't what you want, you want it at the end. Then, everything that has matched an earlier rule - i.e. legit traffic - will be accepted without logging. Then all the bad stuff will fail all your accept rules, hit the log rule, and then get dropped.
 
Old 05-01-2008, 03:59 AM   #37
hemi_426
Member
 
Registered: Apr 2008
Location: KSA-jeddah
Distribution: CentOS, gentoo, slackware
Posts: 80

Original Poster
Rep: Reputation: 15
now i got it
anyway im posting my firewall



####### Pre Configure Iptables #########
$IPTABLES -P INPUT DROP
$IPTABLES -F INPUT
$IPTABLES -P OUTPUT ACCEPT
$IPTABLES -F OUTPUT
$IPTABLES -P FORWARD DROP
$IPTABLES -F FORWARD
$IPTABLES -t nat -F


###### Blocked logging chain
#$IPTABLES -N block
#$IPTABLES -F block
#$IPTABLES -A block -m state --state ESTABLISHED,RELATED -j ACCEPT
#$IPTABLES -A block -m state --state NEW -i ! eth0 -j ACCEPT
#$IPTABLES -A block -j LOG --log-level 6 --log-prefix "DROP UNTRUSTED NETWORKS "
#$IPTABLES -A block -j DROP

####### Configure IPROUTE2 Rules #######

####### IPTABLES Rules #################

############ INPUT
$IPTABLES -A INPUT -p tcp -j LOG --log-level debug
$IPTABLES -A INPUT -i $EXTIF -p icmp -m icmp --icmp-type redirect -j ACCEPT
$IPTABLES -A INPUT -i $EXTIF -p icmp -j ACCEPT
$IPTABLES -A INPUT -i lo -j ACCEPT
$IPTABLES -A INPUT -i $INTIF -j ACCEPT
$IPTABLES -A INPUT -p tcp -m multiport --destination-port 22,21,20,587,110,6666,6667,6668,6669 -j ACCEPT
$IPTABLES -A INPUT -i $EXTIF -m state --state ESTABLISHED,RELATED -j ACCEPT

############ FORWARD
# Syn-flood
$IPTABLES -A FORWARD -p tcp -j LOG --log-level debug
$IPTABLES -A FORWARD -p tcp -i $INTIF -o $EXTIF -m multiport --destination-port 22,21,20,25,53,443,587,110,5190,1863,5000,5050,80,3128 -j ACCEPT
$IPTABLES -A FORWARD -p tcp -i $INTIF -o $EXTIF -m multiport --destination-port 6666,6667,6668,6669 -j ACCEPT
$IPTABLES -A FORWARD -p tcp --syn -m limit --limit 1/s -j ACCEPT

# Ports Scans
$IPTABLES -A FORWARD -p tcp --tcp-flags SYN,ACK,FIN,RST RST -m limit --limit 1/s -j ACCEPT

# Ping Death
$IPTABLES -A FORWARD -p icmp --icmp-type echo-request -m limit --limit 1/s -j ACCEPT
$IPTABLES -A FORWARD -p udp -i $EXTIF -o $INTIF -j ACCEPT
$IPTABLES -A FORWARD -p tcp -i $EXTIF -o $INTIF -m state --state ESTABLISHED,RELATED -j ACCEPT
$IPTABLES -A FORWARD -p udp -i $INTIF -o $EXTIF -j ACCEPT

# NetBs Drop
$IPTABLES -A FORWARD -p tcp --dport 135:139 -j DROP
$IPTABLES -A FORWARD -p tcp --dport 445 -j DROP

############ OUTPUT

############ PREROUTING ## -j DNAT --to-destination 192.168.0.1:8080
#$IPTABLES -t nat -A PREROUTING -p tcp -s 10.0.0.0/24 --dport 110 -j DNAT --to-destination 192.168.0.1:4128
$IPTABLES -t nat -A PREROUTING -p tcp -d ! 10.0.0.0/24 -m multiport --dports 80,81,82,83,kerberos,8000,8001,8002 -j REDIRECT --to-ports 3128
$IPTABLES -t nat -A PREROUTING -p tcp -d ! 172.17.60.0/24 -m multiport --dports 8083,8091,8100,8101,8102,8103,8888,777 -j REDIRECT --to-ports 3128
#$IPTABLES -t nat -A PREROUTING -p tcp -d ! 192.168.0.0/16 -m multiport --dports 443,1863,5190,5050,5100,5000,5001 -j REDIRECT --to-ports 4128
#$IPTABLES -t nat -A PREROUTING -p tcp -d ! 192.168.0.0/16 -m multiport --dports 443,1863,5190 -j REDIRECT --to-ports 4128
#$IPTABLES -t nat -A PREROUTING -p tcp -d ! 192.168.0.0/16 -m multiport --dports 443,1863,5190,5050,5100,5000,5001 -j DNAT --to-destination 127.0.0.1:4128

# POSTROUTING
#$IPTABLES -t nat -A POSTROUTING -j MASQUERADE -s 192.168.0.0/16 -d ! 192.168.0.0/16
$IPTABLES -t nat -A POSTROUTING -o $EXTIF -s 10.0.0.10/24 -j SNAT --to-source `get_addr $EXTIF`

echo " firewall started "
 
Old 05-01-2008, 04:05 AM   #38
blacky_5251
Member
 
Registered: Oct 2004
Location: Adelaide Hills, South Australia
Distribution: RHEL 5&6 CentOS 5, 6 & 7
Posts: 573

Rep: Reputation: 61
Glad to hear it. Out of interest, what distro are you using? I haven't seen a dynamically defined iptable like this - generally I see firewalls defined in /etc/sysconfig/iptables, not in an initialization script. Nothing wrong with it, just not something I've come across before.
 
Old 05-01-2008, 04:13 AM   #39
hemi_426
Member
 
Registered: Apr 2008
Location: KSA-jeddah
Distribution: CentOS, gentoo, slackware
Posts: 80

Original Poster
Rep: Reputation: 15
im using slackware12

and here is the beginning of it:

#!/bin/sh

echo " starting firewall.."

/sbin/sysctl -w net.ipv4.ip_forward=1
####### Functions ######################
## Get IP ##
function get_addr()
{
IFCONFIG='/sbin/ifconfig';
HEAD='head -2';
TAIL='tail -1';
CUT='cut -d: -f2';
IP=`$IFCONFIG $1 | $HEAD | $TAIL | awk '{print $2}' | $CUT`;
echo $IP;
}

function get_pppn()
{
IFCONFIG='/sbin/ifconfig';
PPP=`$IFCONFIG | grep ppp | awk '{print $1}'`;
echo $PPP;
}
############

####### Variables ######################
IPTABLES="/usr/sbin/iptables"
IFCFG="/sbin/ifconfig"
TC="/sbin/tc"
IP="/sbin/ip"

EXTIF="eth0"
INTIF="eth1"


about the script i got it from a specialized firewalls friend of mine
 
Old 05-01-2008, 05:11 AM   #40
blacky_5251
Member
 
Registered: Oct 2004
Location: Adelaide Hills, South Australia
Distribution: RHEL 5&6 CentOS 5, 6 & 7
Posts: 573

Rep: Reputation: 61
I've never used slackware, but I've heard good reports. I use IPCop for my primary firewall, but also run SELinux and iptables on my CentOS machine in my publicly accessible DMZ behind the IPCop box - to be doubly safe.

There is certainly plenty of stuff you can configure with iptables - a very powerful, confusing, and way cool tool.
 
  


Reply

Tags
iptables, logging



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
iptables not logging anything~ deeptii Linux - Networking 11 05-31-2006 02:35 AM
Iptables Logging doublejoon Linux - Security 8 01-09-2006 04:20 AM
Iptables logging asterisk Linux - Networking 2 09-04-2004 12:16 AM
iptables logging zsoltrenyi Linux - Software 1 08-19-2004 10:15 AM
I need help on iptables logging FunkFlex Linux - Security 1 01-17-2003 11:43 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Server

All times are GMT -5. The time now is 06:26 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration