Linux-Misc Digest #941, Volume #26 Sat, 27 Jan 01 18:13:03 EST
Contents:
Re: crontab blues (Paul Colquhoun)
Re: iptables & 2.4.0 (Christian Hostelet)
Re: iptables & 2.4.0 (Christian Hostelet)
Re: Lilo configuration (Hugh Lawson)
Re: crontab blues (Robert Jones)
Re: iptables & 2.4.0 (Christian Hostelet)
Re: iptables & 2.4.0 (Christian Hostelet)
Re: iptables & 2.4.0 (Christian Hostelet)
Re: iptables & 2.4.0 (Christian Hostelet)
Re: iptables & 2.4.0 (Christian Hostelet)
Re: MS to Enforce Registration - or Else ("Aaron R. Kulkis")
Re: iptables & 2.4.0 (Christian Hostelet)
----------------------------------------------------------------------------
From: [EMAIL PROTECTED] (Paul Colquhoun)
Subject: Re: crontab blues
Reply-To: <[EMAIL PROTECTED]>
Date: Sat, 27 Jan 2001 22:17:38 GMT
On Sat, 27 Jan 2001 19:58:29 +0100, Jens K. Thomsen <[EMAIL PROTECTED]> wrote:
|Hi
|
|I need to do make backup's of mysql databases using crontab. First I
|tested the command from the command line:
|
|/usr/local/mysql/bin/mysqldump -uuser -ppass database >
|/home/user/mysql/`date '+%Y%m%d%H'`
|
|It works, I get a dump called 2001012719 (at 7 pm.)
|
|Then I start crontab -e and enter the same line with:
|00 * * * * /usr/local/mysql/bin/mysqldump -uuser -ppass database >
|/home/user/mysql/`date '+%Y%m%d%H'`
|
|It IS an identical line in crontab compared to the command line input.
|The line IS correct if I do a crontab -l, however: It does not work! I
|was afraid there was a problem with crond or whatever so I also added
|this to crontab:
|00 * * * * /usr/local/mysql/bin/mysqldump -uuser -ppass database >
|/home/user/mysql/test
|
|and a dump called test IS saved every hour. I can't figure out what is
|wrong here, can you?
|
|The crontab -e command is performed as and ordinary user.
Try moving the command into a script and running the script from cron.
That will allow you to put in a lot more debuging stuff.
Try something like:
=============================================================
#!/bin/bash
Date=`date '+%Y%m%d%H'`
DumpFile="/home/user/mysql/$Date"
echo "/usr/local/mysql/bin/mysqldump -uuser -ppass database > $DumpFile" >>
/home/user/dump.log
/usr/local/mysql/bin/mysqldump -uuser -ppass database > $DumpFile
=============================================================
That will shoow you what command is being executed and may help locate the problem.
--
Reverend Paul Colquhoun, [EMAIL PROTECTED]
Universal Life Church http://andor.dropbear.id.au/~paulcol
-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-
xenaphobia: The fear of being beaten to a pulp by
a leather-clad, New Zealand woman.
------------------------------
From: Christian Hostelet <[EMAIL PROTECTED]>
Subject: Re: iptables & 2.4.0
Date: Sat, 27 Jan 2001 18:56:06 +0100
Christopher C. Stump a gentiment �crit:
> Greetings,
>
> I've run into a problem with firewalling under the 2.4.0 kernel on Red
> Hat 6.2 .
>
> My build of the kernel went smoothly. I compiled in the option for
> NetFilter so that I could use iptables. Under the NetFilter
> configuration options, I selected everything as modules except ipchains
>
> and ipfwdm(?) support. After kernel installation I downloaded the
> iptables package and installed it.
>
> From what I understand, that is all I need to do. However, when I try
> to test iptables with a rule specified towards the loopback device
> (iptables -A INPUT -s 127.0.0.1 -p icmp -j DROP...test as seen in the
> iptables HOWTO), I get the following error message:
>
> "iptables v1.2: can't initialize iptables table `filter': iptables who?
> (do you need to insmod?)Perhaps iptables or your kernel needs to be
> upgraded."
>
> Now, I have checked and double checked my kernel configuration to make
> sure it is correct--I've recompliled the kernel at least twice since
> encountering this problem. And like I said, all the proper options for
> NetFilter support seem to be in place. The 'support for NetFilter'
> option under "networking" in xconfig is set to 'Y' and all NetFilter
> config options (expcept the 2 specified above) were selected as
> modules. Of course, all modules were built and installed after 'make
> bzImage' at kernel compilation.
>
> One interesting thing to note is that when I run the 'lsmod' command, I
> see no modules loaded that seem to relate to packet filtering. Are
> there modules that I need to manually install in order to get iptables
> to work? If so, what are they? The error message seems to indicate that
> some modules need to be loaded, but I thought the modules made for the
> kernel were "loaded on demand" and that I didn't need to do anything.
>
> I've searched newsgroups, read the iptables HOWTO, etc. but I've had no
> luck figuring this problem out. I would very much appreciate any advice
>
> on this issue.
>
> Thanks in advance to all who reply
>
>
> --
> Christopher C. Stump
> E-mail: [EMAIL PROTECTED]
> Homepage: http://www.thestump.net
> Registered with the Linux counter, ID#183377
>
> "Computers are like air conditioners...Once you open
> Windows, they stop working correctly" -Unknown Linux User
>
>
Hello,
I got the same problem on Mandrake 7.2 when I installed 2.4.0 and
iptables. I modified the script /etc/rc.d/rc.firewall.inet_sharing (is it
the same for RH ?) and put a /sbin/modprobe ip_tables. Then the other
modules (ip_conntrack, ...) should be loaded on demand.
Hope this will help
Christian
------------------------------
From: Christian Hostelet <[EMAIL PROTECTED]>
Subject: Re: iptables & 2.4.0
Date: Sat, 27 Jan 2001 18:56:06 +0100
Christopher C. Stump a gentiment �crit:
> Greetings,
>
> I've run into a problem with firewalling under the 2.4.0 kernel on Red
> Hat 6.2 .
>
> My build of the kernel went smoothly. I compiled in the option for
> NetFilter so that I could use iptables. Under the NetFilter
> configuration options, I selected everything as modules except ipchains
>
> and ipfwdm(?) support. After kernel installation I downloaded the
> iptables package and installed it.
>
> From what I understand, that is all I need to do. However, when I try
> to test iptables with a rule specified towards the loopback device
> (iptables -A INPUT -s 127.0.0.1 -p icmp -j DROP...test as seen in the
> iptables HOWTO), I get the following error message:
>
> "iptables v1.2: can't initialize iptables table `filter': iptables who?
> (do you need to insmod?)Perhaps iptables or your kernel needs to be
> upgraded."
>
> Now, I have checked and double checked my kernel configuration to make
> sure it is correct--I've recompliled the kernel at least twice since
> encountering this problem. And like I said, all the proper options for
> NetFilter support seem to be in place. The 'support for NetFilter'
> option under "networking" in xconfig is set to 'Y' and all NetFilter
> config options (expcept the 2 specified above) were selected as
> modules. Of course, all modules were built and installed after 'make
> bzImage' at kernel compilation.
>
> One interesting thing to note is that when I run the 'lsmod' command, I
> see no modules loaded that seem to relate to packet filtering. Are
> there modules that I need to manually install in order to get iptables
> to work? If so, what are they? The error message seems to indicate that
> some modules need to be loaded, but I thought the modules made for the
> kernel were "loaded on demand" and that I didn't need to do anything.
>
> I've searched newsgroups, read the iptables HOWTO, etc. but I've had no
> luck figuring this problem out. I would very much appreciate any advice
>
> on this issue.
>
> Thanks in advance to all who reply
>
>
> --
> Christopher C. Stump
> E-mail: [EMAIL PROTECTED]
> Homepage: http://www.thestump.net
> Registered with the Linux counter, ID#183377
>
> "Computers are like air conditioners...Once you open
> Windows, they stop working correctly" -Unknown Linux User
>
>
Hello,
I got the same problem on Mandrake 7.2 when I installed 2.4.0 and
iptables. I modified the script /etc/rc.d/rc.firewall.inet_sharing (is it
the same for RH ?) and put a /sbin/modprobe ip_tables. Then the other
modules (ip_conntrack, ...) should be loaded on demand.
Hope this will help
Christian
------------------------------
From: [EMAIL PROTECTED] (Hugh Lawson)
Subject: Re: Lilo configuration
Reply-To: [EMAIL PROTECTED]
Date: Sat, 27 Jan 2001 21:57:41 GMT
In article <[EMAIL PROTECTED]>, Jack Kaufmann wrote:
>That's when I got the message "Can't put the boot sector on logical
>partition 0x346". What's up with that?
Please post your lilo.conf file and explain how you want it to control
things. Especially which drive and partition you want to install the boot
loader on.
--
Hugh Lawson
Greensboro, North Carolina
[EMAIL PROTECTED]
------------------------------
From: Robert Jones <[EMAIL PROTECTED]>
Subject: Re: crontab blues
Date: Sat, 27 Jan 2001 16:13:23 -0600
Try creating a one line shell script with the command portion of your
crontab entry in it, then
edit your crontab entry to run the script. I know it sounds like a
double-shuffle (and is) but the crontab entry will be much more
manageable.
Be sure your script has proper permissions.
"Jens K. Thomsen" wrote:
> Hi
>
> I need to do make backup's of mysql databases using crontab. First I
> tested the command from the command line:
>
> /usr/local/mysql/bin/mysqldump -uuser -ppass database >
> /home/user/mysql/`date '+%Y%m%d%H'`
>
> It works, I get a dump called 2001012719 (at 7 pm.)
>
> Then I start crontab -e and enter the same line with:
> 00 * * * * /usr/local/mysql/bin/mysqldump -uuser -ppass database >
> /home/user/mysql/`date '+%Y%m%d%H'`
>
> It IS an identical line in crontab compared to the command line input.
> The line IS correct if I do a crontab -l, however: It does not work! I
> was afraid there was a problem with crond or whatever so I also added
> this to crontab:
> 00 * * * * /usr/local/mysql/bin/mysqldump -uuser -ppass database >
> /home/user/mysql/test
>
> and a dump called test IS saved every hour. I can't figure out what is
> wrong here, can you?
>
> The crontab -e command is performed as and ordinary user.
>
> Cheers,
>
> Jens
>
> --
> Jens Kaalby Thomsen
> [EMAIL PROTECTED]
--
Whoever tells a lie cannot be pure in heart -- and only the pure in heart
can make a good soup.
-- Ludwig Van Beethoven
3:51pm up 21:59, 1 user, load average: 0.03, 0.05, 0.01
------------------------------
From: Christian Hostelet <[EMAIL PROTECTED]>
Subject: Re: iptables & 2.4.0
Date: Sat, 27 Jan 2001 18:56:06 +0100
Christopher C. Stump a gentiment �crit:
> Greetings,
>
> I've run into a problem with firewalling under the 2.4.0 kernel on Red
> Hat 6.2 .
>
> My build of the kernel went smoothly. I compiled in the option for
> NetFilter so that I could use iptables. Under the NetFilter
> configuration options, I selected everything as modules except ipchains
>
> and ipfwdm(?) support. After kernel installation I downloaded the
> iptables package and installed it.
>
> From what I understand, that is all I need to do. However, when I try
> to test iptables with a rule specified towards the loopback device
> (iptables -A INPUT -s 127.0.0.1 -p icmp -j DROP...test as seen in the
> iptables HOWTO), I get the following error message:
>
> "iptables v1.2: can't initialize iptables table `filter': iptables who?
> (do you need to insmod?)Perhaps iptables or your kernel needs to be
> upgraded."
>
> Now, I have checked and double checked my kernel configuration to make
> sure it is correct--I've recompliled the kernel at least twice since
> encountering this problem. And like I said, all the proper options for
> NetFilter support seem to be in place. The 'support for NetFilter'
> option under "networking" in xconfig is set to 'Y' and all NetFilter
> config options (expcept the 2 specified above) were selected as
> modules. Of course, all modules were built and installed after 'make
> bzImage' at kernel compilation.
>
> One interesting thing to note is that when I run the 'lsmod' command, I
> see no modules loaded that seem to relate to packet filtering. Are
> there modules that I need to manually install in order to get iptables
> to work? If so, what are they? The error message seems to indicate that
> some modules need to be loaded, but I thought the modules made for the
> kernel were "loaded on demand" and that I didn't need to do anything.
>
> I've searched newsgroups, read the iptables HOWTO, etc. but I've had no
> luck figuring this problem out. I would very much appreciate any advice
>
> on this issue.
>
> Thanks in advance to all who reply
>
>
> --
> Christopher C. Stump
> E-mail: [EMAIL PROTECTED]
> Homepage: http://www.thestump.net
> Registered with the Linux counter, ID#183377
>
> "Computers are like air conditioners...Once you open
> Windows, they stop working correctly" -Unknown Linux User
>
>
Hello,
I got the same problem on Mandrake 7.2 when I installed 2.4.0 and
iptables. I modified the script /etc/rc.d/rc.firewall.inet_sharing (is it
the same for RH ?) and put a /sbin/modprobe ip_tables. Then the other
modules (ip_conntrack, ...) should be loaded on demand.
Hope this will help
Christian
------------------------------
From: Christian Hostelet <[EMAIL PROTECTED]>
Subject: Re: iptables & 2.4.0
Date: Sat, 27 Jan 2001 18:56:06 +0100
Christopher C. Stump a gentiment �crit:
> Greetings,
>
> I've run into a problem with firewalling under the 2.4.0 kernel on Red
> Hat 6.2 .
>
> My build of the kernel went smoothly. I compiled in the option for
> NetFilter so that I could use iptables. Under the NetFilter
> configuration options, I selected everything as modules except ipchains
>
> and ipfwdm(?) support. After kernel installation I downloaded the
> iptables package and installed it.
>
> From what I understand, that is all I need to do. However, when I try
> to test iptables with a rule specified towards the loopback device
> (iptables -A INPUT -s 127.0.0.1 -p icmp -j DROP...test as seen in the
> iptables HOWTO), I get the following error message:
>
> "iptables v1.2: can't initialize iptables table `filter': iptables who?
> (do you need to insmod?)Perhaps iptables or your kernel needs to be
> upgraded."
>
> Now, I have checked and double checked my kernel configuration to make
> sure it is correct--I've recompliled the kernel at least twice since
> encountering this problem. And like I said, all the proper options for
> NetFilter support seem to be in place. The 'support for NetFilter'
> option under "networking" in xconfig is set to 'Y' and all NetFilter
> config options (expcept the 2 specified above) were selected as
> modules. Of course, all modules were built and installed after 'make
> bzImage' at kernel compilation.
>
> One interesting thing to note is that when I run the 'lsmod' command, I
> see no modules loaded that seem to relate to packet filtering. Are
> there modules that I need to manually install in order to get iptables
> to work? If so, what are they? The error message seems to indicate that
> some modules need to be loaded, but I thought the modules made for the
> kernel were "loaded on demand" and that I didn't need to do anything.
>
> I've searched newsgroups, read the iptables HOWTO, etc. but I've had no
> luck figuring this problem out. I would very much appreciate any advice
>
> on this issue.
>
> Thanks in advance to all who reply
>
>
> --
> Christopher C. Stump
> E-mail: [EMAIL PROTECTED]
> Homepage: http://www.thestump.net
> Registered with the Linux counter, ID#183377
>
> "Computers are like air conditioners...Once you open
> Windows, they stop working correctly" -Unknown Linux User
>
>
Hello,
I got the same problem on Mandrake 7.2 when I installed 2.4.0 and
iptables. I modified the script /etc/rc.d/rc.firewall.inet_sharing (is it
the same for RH ?) and put a /sbin/modprobe ip_tables. Then the other
modules (ip_conntrack, ...) should be loaded on demand.
Hope this will help
Christian
------------------------------
From: Christian Hostelet <[EMAIL PROTECTED]>
Subject: Re: iptables & 2.4.0
Date: Sat, 27 Jan 2001 18:56:06 +0100
Christopher C. Stump a gentiment �crit:
> Greetings,
>
> I've run into a problem with firewalling under the 2.4.0 kernel on Red
> Hat 6.2 .
>
> My build of the kernel went smoothly. I compiled in the option for
> NetFilter so that I could use iptables. Under the NetFilter
> configuration options, I selected everything as modules except ipchains
>
> and ipfwdm(?) support. After kernel installation I downloaded the
> iptables package and installed it.
>
> From what I understand, that is all I need to do. However, when I try
> to test iptables with a rule specified towards the loopback device
> (iptables -A INPUT -s 127.0.0.1 -p icmp -j DROP...test as seen in the
> iptables HOWTO), I get the following error message:
>
> "iptables v1.2: can't initialize iptables table `filter': iptables who?
> (do you need to insmod?)Perhaps iptables or your kernel needs to be
> upgraded."
>
> Now, I have checked and double checked my kernel configuration to make
> sure it is correct--I've recompliled the kernel at least twice since
> encountering this problem. And like I said, all the proper options for
> NetFilter support seem to be in place. The 'support for NetFilter'
> option under "networking" in xconfig is set to 'Y' and all NetFilter
> config options (expcept the 2 specified above) were selected as
> modules. Of course, all modules were built and installed after 'make
> bzImage' at kernel compilation.
>
> One interesting thing to note is that when I run the 'lsmod' command, I
> see no modules loaded that seem to relate to packet filtering. Are
> there modules that I need to manually install in order to get iptables
> to work? If so, what are they? The error message seems to indicate that
> some modules need to be loaded, but I thought the modules made for the
> kernel were "loaded on demand" and that I didn't need to do anything.
>
> I've searched newsgroups, read the iptables HOWTO, etc. but I've had no
> luck figuring this problem out. I would very much appreciate any advice
>
> on this issue.
>
> Thanks in advance to all who reply
>
>
> --
> Christopher C. Stump
> E-mail: [EMAIL PROTECTED]
> Homepage: http://www.thestump.net
> Registered with the Linux counter, ID#183377
>
> "Computers are like air conditioners...Once you open
> Windows, they stop working correctly" -Unknown Linux User
>
>
Hello,
I got the same problem on Mandrake 7.2 when I installed 2.4.0 and
iptables. I modified the script /etc/rc.d/rc.firewall.inet_sharing (is it
the same for RH ?) and put a /sbin/modprobe ip_tables. Then the other
modules (ip_conntrack, ...) should be loaded on demand.
Hope this will help
Christian
------------------------------
From: Christian Hostelet <[EMAIL PROTECTED]>
Subject: Re: iptables & 2.4.0
Date: Sat, 27 Jan 2001 18:56:06 +0100
Christopher C. Stump a gentiment �crit:
> Greetings,
>
> I've run into a problem with firewalling under the 2.4.0 kernel on Red
> Hat 6.2 .
>
> My build of the kernel went smoothly. I compiled in the option for
> NetFilter so that I could use iptables. Under the NetFilter
> configuration options, I selected everything as modules except ipchains
>
> and ipfwdm(?) support. After kernel installation I downloaded the
> iptables package and installed it.
>
> From what I understand, that is all I need to do. However, when I try
> to test iptables with a rule specified towards the loopback device
> (iptables -A INPUT -s 127.0.0.1 -p icmp -j DROP...test as seen in the
> iptables HOWTO), I get the following error message:
>
> "iptables v1.2: can't initialize iptables table `filter': iptables who?
> (do you need to insmod?)Perhaps iptables or your kernel needs to be
> upgraded."
>
> Now, I have checked and double checked my kernel configuration to make
> sure it is correct--I've recompliled the kernel at least twice since
> encountering this problem. And like I said, all the proper options for
> NetFilter support seem to be in place. The 'support for NetFilter'
> option under "networking" in xconfig is set to 'Y' and all NetFilter
> config options (expcept the 2 specified above) were selected as
> modules. Of course, all modules were built and installed after 'make
> bzImage' at kernel compilation.
>
> One interesting thing to note is that when I run the 'lsmod' command, I
> see no modules loaded that seem to relate to packet filtering. Are
> there modules that I need to manually install in order to get iptables
> to work? If so, what are they? The error message seems to indicate that
> some modules need to be loaded, but I thought the modules made for the
> kernel were "loaded on demand" and that I didn't need to do anything.
>
> I've searched newsgroups, read the iptables HOWTO, etc. but I've had no
> luck figuring this problem out. I would very much appreciate any advice
>
> on this issue.
>
> Thanks in advance to all who reply
>
>
> --
> Christopher C. Stump
> E-mail: [EMAIL PROTECTED]
> Homepage: http://www.thestump.net
> Registered with the Linux counter, ID#183377
>
> "Computers are like air conditioners...Once you open
> Windows, they stop working correctly" -Unknown Linux User
>
>
Hello,
I got the same problem on Mandrake 7.2 when I installed 2.4.0 and
iptables. I modified the script /etc/rc.d/rc.firewall.inet_sharing (is it
the same for RH ?) and put a /sbin/modprobe ip_tables. Then the other
modules (ip_conntrack, ...) should be loaded on demand.
Hope this will help
Christian
------------------------------
From: Christian Hostelet <[EMAIL PROTECTED]>
Subject: Re: iptables & 2.4.0
Date: Sat, 27 Jan 2001 18:56:06 +0100
Christopher C. Stump a gentiment �crit:
> Greetings,
>
> I've run into a problem with firewalling under the 2.4.0 kernel on Red
> Hat 6.2 .
>
> My build of the kernel went smoothly. I compiled in the option for
> NetFilter so that I could use iptables. Under the NetFilter
> configuration options, I selected everything as modules except ipchains
>
> and ipfwdm(?) support. After kernel installation I downloaded the
> iptables package and installed it.
>
> From what I understand, that is all I need to do. However, when I try
> to test iptables with a rule specified towards the loopback device
> (iptables -A INPUT -s 127.0.0.1 -p icmp -j DROP...test as seen in the
> iptables HOWTO), I get the following error message:
>
> "iptables v1.2: can't initialize iptables table `filter': iptables who?
> (do you need to insmod?)Perhaps iptables or your kernel needs to be
> upgraded."
>
> Now, I have checked and double checked my kernel configuration to make
> sure it is correct--I've recompliled the kernel at least twice since
> encountering this problem. And like I said, all the proper options for
> NetFilter support seem to be in place. The 'support for NetFilter'
> option under "networking" in xconfig is set to 'Y' and all NetFilter
> config options (expcept the 2 specified above) were selected as
> modules. Of course, all modules were built and installed after 'make
> bzImage' at kernel compilation.
>
> One interesting thing to note is that when I run the 'lsmod' command, I
> see no modules loaded that seem to relate to packet filtering. Are
> there modules that I need to manually install in order to get iptables
> to work? If so, what are they? The error message seems to indicate that
> some modules need to be loaded, but I thought the modules made for the
> kernel were "loaded on demand" and that I didn't need to do anything.
>
> I've searched newsgroups, read the iptables HOWTO, etc. but I've had no
> luck figuring this problem out. I would very much appreciate any advice
>
> on this issue.
>
> Thanks in advance to all who reply
>
>
> --
> Christopher C. Stump
> E-mail: [EMAIL PROTECTED]
> Homepage: http://www.thestump.net
> Registered with the Linux counter, ID#183377
>
> "Computers are like air conditioners...Once you open
> Windows, they stop working correctly" -Unknown Linux User
>
>
Hello,
I got the same problem on Mandrake 7.2 when I installed 2.4.0 and
iptables. I modified the script /etc/rc.d/rc.firewall.inet_sharing (is it
the same for RH ?) and put a /sbin/modprobe ip_tables. Then the other
modules (ip_conntrack, ...) should be loaded on demand.
Hope this will help
Christian
------------------------------
From: "Aaron R. Kulkis" <[EMAIL PROTECTED]>
Crossposted-To: comp.os.linux.advocacy
Subject: Re: MS to Enforce Registration - or Else
Date: Sat, 27 Jan 2001 17:16:42 -0500
"." wrote:
>
> In comp.os.linux.advocacy Aaron R. Kulkis <[EMAIL PROTECTED]> wrote:
>
> > Conversely, in a 1994 interview, Gates proclaimed that one of his goals is
> > to collect a surcharge for EVERY financial transaction on the planet.
> > Translation: he wants to pick everybody's pocket, even if it's
> > settling for one penny at a time.
>
> Indeed, and im glad you brought up this difference.
>
> Gates is exactly the sort of person who would have been up against a wall
> during WWII in germany.
>
> Thus, the interesting comparison of Gates and hitler; they surely would
> have despised eachother and Gates would have probably ended up dead right
> quick.
>
> Note that this does not make hitler into anything except what he actually
> was; a syphallis-ridden homocidal maniac.
>
To hell with both of them.
> -----.
--
Aaron R. Kulkis
Unix Systems Engineer
DNRC Minister of all I survey
ICQ # 3056642
H: "Having found not one single carbon monoxide leak on the entire
premises, it is my belief, and Willard concurs, that the reason
you folks feel listless and disoriented is simply because
you are lazy, stupid people"
I: Loren Petrich's 2-week stubborn refusal to respond to the
challenge to describe even one philosophical difference
between himself and the communists demonstrates that, in fact,
Loren Petrich is a COMMUNIST ***hole
J: Other knee_jerk reactionaries: billh, david casey, redc1c4,
The retarded sisters: Raunchy (rauni) and Anencephielle (Enielle),
also known as old hags who've hit the wall....
A: The wise man is mocked by fools.
B: Jet Silverman plays the fool and spews out nonsense as a
method of sidetracking discussions which are headed in a
direction that she doesn't like.
C: Jet Silverman claims to have killfiled me.
D: Jet Silverman now follows me from newgroup to newsgroup
...despite (C) above.
E: Jet is not worthy of the time to compose a response until
her behavior improves.
F: Unit_4's "Kook hunt" reminds me of "Jimmy Baker's" harangues against
adultery while concurrently committing adultery with Tammy Hahn.
G: Knackos...you're a retard.
------------------------------
From: Christian Hostelet <[EMAIL PROTECTED]>
Subject: Re: iptables & 2.4.0
Date: Sat, 27 Jan 2001 18:56:06 +0100
Christopher C. Stump a gentiment �crit:
> Greetings,
>
> I've run into a problem with firewalling under the 2.4.0 kernel on Red
> Hat 6.2 .
>
> My build of the kernel went smoothly. I compiled in the option for
> NetFilter so that I could use iptables. Under the NetFilter
> configuration options, I selected everything as modules except ipchains
>
> and ipfwdm(?) support. After kernel installation I downloaded the
> iptables package and installed it.
>
> From what I understand, that is all I need to do. However, when I try
> to test iptables with a rule specified towards the loopback device
> (iptables -A INPUT -s 127.0.0.1 -p icmp -j DROP...test as seen in the
> iptables HOWTO), I get the following error message:
>
> "iptables v1.2: can't initialize iptables table `filter': iptables who?
> (do you need to insmod?)Perhaps iptables or your kernel needs to be
> upgraded."
>
> Now, I have checked and double checked my kernel configuration to make
> sure it is correct--I've recompliled the kernel at least twice since
> encountering this problem. And like I said, all the proper options for
> NetFilter support seem to be in place. The 'support for NetFilter'
> option under "networking" in xconfig is set to 'Y' and all NetFilter
> config options (expcept the 2 specified above) were selected as
> modules. Of course, all modules were built and installed after 'make
> bzImage' at kernel compilation.
>
> One interesting thing to note is that when I run the 'lsmod' command, I
> see no modules loaded that seem to relate to packet filtering. Are
> there modules that I need to manually install in order to get iptables
> to work? If so, what are they? The error message seems to indicate that
> some modules need to be loaded, but I thought the modules made for the
> kernel were "loaded on demand" and that I didn't need to do anything.
>
> I've searched newsgroups, read the iptables HOWTO, etc. but I've had no
> luck figuring this problem out. I would very much appreciate any advice
>
> on this issue.
>
> Thanks in advance to all who reply
>
>
> --
> Christopher C. Stump
> E-mail: [EMAIL PROTECTED]
> Homepage: http://www.thestump.net
> Registered with the Linux counter, ID#183377
>
> "Computers are like air conditioners...Once you open
> Windows, they stop working correctly" -Unknown Linux User
>
>
Hello,
I got the same problem on Mandrake 7.2 when I installed 2.4.0 and
iptables. I modified the script /etc/rc.d/rc.firewall.inet_sharing (is it
the same for RH ?) and put a /sbin/modprobe ip_tables. Then the other
modules (ip_conntrack, ...) should be loaded on demand.
Hope this will help
Christian
------------------------------
** FOR YOUR REFERENCE **
The service address, to which questions about the list itself and requests
to be added to or deleted from it should be directed, is:
Internet: [EMAIL PROTECTED]
You can send mail to the entire list by posting to comp.os.linux.misc.
Linux may be obtained via one of these FTP sites:
ftp.funet.fi pub/Linux
tsx-11.mit.edu pub/linux
sunsite.unc.edu pub/Linux
End of Linux-Misc Digest
******************************