Mailing List
Home
Forum Home
Linux - General Red Hat Linux discussion list
Installation - Getting started with Red Hat Linux
Enterprise Linux 3 - Discussion of Red Hat Enterprise Linux 3 (Taroon)
Red Hat Linux 9 - Discussion of Red Hat Linux 9 (Shrike)
Red Hat Linux 7.2 - Discussion of Red Hat Linux 7.2 (Enigma)
Red Hat Linux 7.3 - Discussion of Red Hat Linux 7.3 (Valhalla)
Apache Web Server
Oracle database, Microsoft SQL server ...
Subjects
Subject: application/x mplayer2 plugin
RPM error: db4 error(16) from dbenv >remove: Device or resource
   busy
Command stream end of file while reading
Subject: X Windows problem (xauth)
Subject: Upgrading openoffice 1 1 rpm
Subject: FTP: connection refused
Subject: FTP: connection refused
mount: /dev/cdrom: is not a valid block device
Dell Precision 650, RedHat 9, no sound
how to trace the cause resulting in the crash of bind server
Virus on the list
UNINSTALL RPM MYSQL
usb pen drives: mounting as a user
Subject: broadcom network interface
make mrproper
Couldn 't open PID file /var/run/named/named pid Permission denied
sendmail configuration on redhat
kernel 2 6 and /dev/sound/mixer not found
Subject: Promise 378 controller
Subject: Problem using up2date
mrtg step by step howto/configuration for a newbie?
Compiling and Installing Kernel 2 6
Can 't locate module ppp0, can 't locate module ppp compress 21
Subject: Lotus Notes under Wine
HOW I CAN MAKE BOOTABLE FLOPPY DISKET
/etc/security/limits conf question
Intel E/1000 driver
rpm database corrupt
Command stream end of file while reading
qla2300 modules
 
eth0 vanishing

eth0 vanishing

2003-10-08       - By James P. Roberts

 Back
Reply:     1     2     3     4     5     6     7     8     9     10     >>  

> From: "vvor" <vvor@(protected)>
>
> as i mentioned, i switched to iptables.
>
> now, every few hours, my roadrunner connection is dropping. this was not
> happening with ipchains! here is the part of my log just before it happens.
i
> tried ifup, but that doesn't help. it fails to acquire the ip address. does
> anyone know what is happening? is my nic dying? is it iptables? i wish i had
a
> clue. (rat is the name of my serer)
>
<snip>
> Oct  7 11:14:56 rat kernel: [UDP reject] IN= OUT=eth0 SRC=24.90.93.125
> DST=24.29.99.107 LEN=576 TOS=0x00 PREC=0x00 TTL=64 ID=0 DF PROTO=UDP SPT=68
> DPT=67 LEN=556
> Oct  7 11:14:56 rat kernel: [UDP drop] IN= OUT=eth0 SRC=192.168.0.1
> DST=255.255.255.255 LEN=328 TOS=0x00 PREC=0x00 TTL=64 ID=0 DF PROTO=UDP
SPT=68
> DPT=67 LEN=308
<snip>

UDP on port 67 and 68 are for DHCP.  You'll note that your iptables rules
apparently reject *OUTGOING* UDP packets from your server (from port 68 to
port 67, anyway).  So, when Roadrunner requests that you renew your DHCP
"license" every few hours, your server cannot respond properly, and you get
dropped.  The second entry above is your server attempting to do DHCP on your
internal network, also being blocked.  You'll need to examine your iptables
rules set to see why you are blocking your own server from sending out UDP
packets that are needed for DHCP.

One *MAJOR* difference to understand, between ipchains and iptables, is that
in iptables, you have three completely separate chains (input, output,
forward).  A given packet will only traverse one of those chains.  In
ipchains, the input and output chains are traversed before and after the
forward chain.  That is, the handling of the "forward" chain has changed
significantly between ipchains and iptables.

Regards,
Jim