* Corrupted packets + Logs
@ 2003-09-17 10:56 Rakotomandimby Mihamina
2003-09-18 13:35 ` Thorsten Scherf
0 siblings, 1 reply; 2+ messages in thread
From: Rakotomandimby Mihamina @ 2003-09-17 10:56 UTC (permalink / raw)
To: netfilter
Hi all ,
( As far as possible please answer to my 2 questions :-) )
My stuff :
-1 single Computer hosting an FTP server and an HTTP one . that's all . ( no
NAT nor FORWARD )
#1
I'm learning networks and i saw that there are some tools that send
"corrupted" packets to a host to have an idea of the local OS ( an exemple is
nmap ) .
I would like my firewall to drop all corrupted packets .
I made a search on google with the words " iptables drop corrupted packets"
but i cannot find any clear-enough documentation .
Would you help me ?
Perhaps you want to see NETFILTER-about configuration of my kernel ?
Here you are :
CONFIG_IP_NF_CONNTRACK=y
CONFIG_IP_NF_FTP=y
# CONFIG_IP_NF_AMANDA is not set
# CONFIG_IP_NF_TFTP is not set
CONFIG_IP_NF_IRC=y
CONFIG_IP_NF_QUEUE=y
CONFIG_IP_NF_IPTABLES=y
CONFIG_IP_NF_MATCH_LIMIT=y
CONFIG_IP_NF_MATCH_MAC=y
CONFIG_IP_NF_MATCH_PKTTYPE=y
CONFIG_IP_NF_MATCH_MARK=y
CONFIG_IP_NF_MATCH_MULTIPORT=y
CONFIG_IP_NF_MATCH_TOS=y
# CONFIG_IP_NF_MATCH_RECENT is not set
# CONFIG_IP_NF_MATCH_ECN is not set
# CONFIG_IP_NF_MATCH_DSCP is not set
CONFIG_IP_NF_MATCH_AH_ESP=y
CONFIG_IP_NF_MATCH_LENGTH=y
CONFIG_IP_NF_MATCH_TTL=y
CONFIG_IP_NF_MATCH_TCPMSS=y
# CONFIG_IP_NF_MATCH_HELPER is not set
CONFIG_IP_NF_MATCH_STATE=y
CONFIG_IP_NF_MATCH_CONNTRACK=y
CONFIG_IP_NF_MATCH_UNCLEAN=y
CONFIG_IP_NF_MATCH_OWNER=y
CONFIG_IP_NF_FILTER=y
CONFIG_IP_NF_TARGET_REJECT=y
CONFIG_IP_NF_TARGET_MIRROR=y
CONFIG_IP_NF_NAT=y
CONFIG_IP_NF_NAT_NEEDED=y
CONFIG_IP_NF_TARGET_MASQUERADE=y
CONFIG_IP_NF_TARGET_REDIRECT=y
CONFIG_IP_NF_NAT_LOCAL=y
CONFIG_IP_NF_NAT_SNMP_BASIC=m
CONFIG_IP_NF_NAT_IRC=y
CONFIG_IP_NF_NAT_FTP=y
CONFIG_IP_NF_MANGLE=y
CONFIG_IP_NF_TARGET_TOS=y
CONFIG_IP_NF_TARGET_ECN=y
CONFIG_IP_NF_TARGET_DSCP=y
CONFIG_IP_NF_TARGET_MARK=y
CONFIG_IP_NF_TARGET_LOG=y
CONFIG_IP_NF_TARGET_ULOG=y
CONFIG_IP_NF_TARGET_TCPMSS=y
CONFIG_IP_NF_ARPTABLES=y
# CONFIG_IP_NF_ARPFILTER is not set
# CONFIG_IP_NF_ARP_MANGLE is not set
#2
I would like iptables to log into /var/log/messages .
What have a got to configure into syslogd && iptables to do it ?
What rules have i got ad apply ?
If there is a better solution than making it into messages ,
how should i manage it ?
I already saw, after a google search , tha tkind of questions but the answers
are un little bit complicated for me .
Would you have i link ( at least ) tha texplain it to me ?
Thanks for all , in advance .
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: Corrupted packets + Logs
2003-09-17 10:56 Corrupted packets + Logs Rakotomandimby Mihamina
@ 2003-09-18 13:35 ` Thorsten Scherf
0 siblings, 0 replies; 2+ messages in thread
From: Thorsten Scherf @ 2003-09-18 13:35 UTC (permalink / raw)
To: Rakotomandimby Mihamina, netfilter
On 17 September 2003 12:56 Rakotomandimby Mihamina wrote:
>#1
>I'm learning networks and i saw that there are some tools that send
>"corrupted" packets to a host to have an idea of the local OS ( an exemple
> is nmap ) .
>I would like my firewall to drop all corrupted packets .
>I made a search on google with the words " iptables drop corrupted
> packets" but i cannot find any clear-enough documentation .
There is a Netfilter Extension called "unclean" , which have the state of
Experimental. You can try to use this one. Possible Checks are: packet
lenght, packet checksum, lenght of a fragment if available, invalid
icmp-codes, tcp/udp port 0 testing.
>#2
>I would like iptables to log into /var/log/messages .
>What have a got to configure into syslogd && iptables to do it ?
>What rules have i got ad apply ?
You can use the the target log along with a log-prefix and configure your
syslogd to write all Kernel-Messages (Netfilter is Kernel based) to your
/var/log/messages.
iptables -A FORWARD -p tcp --dport 80 -s $EXTNET -d $WWW -j LOG --log-prefix
WWW-Connection
Greetings,
Thorsten Scherf
RHCE, RHCX
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2003-09-18 13:35 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-09-17 10:56 Corrupted packets + Logs Rakotomandimby Mihamina
2003-09-18 13:35 ` Thorsten Scherf
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.