* Dumb question
@ 2004-08-27 0:48 Robin Lynn Frank
2004-08-27 0:52 ` David Cary Hart
0 siblings, 1 reply; 7+ messages in thread
From: Robin Lynn Frank @ 2004-08-27 0:48 UTC (permalink / raw)
To: Netfilter Mail List
[-- Attachment #1: Type: text/plain, Size: 553 bytes --]
Apologies if this is a dumb question but I am new to manipulating
iptables directly. There is a pest that has been routinely probing us.
While we simply drop them, I'd like to make it "uncomfortable" for them
to continue. When I attempt the following, I get the response
indicated. We are running Mandrake Linus 10.0 Official with a 2.6
kernel.
# /sbin/iptables -A INPUT -s ###.###.#.### -j TARPIT
iptables: No chain/target/match by that name
Any help is appreciated.
--
Robin Lynn Frank
Director of Operations
Paradigm-Omega, LLC
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 233 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Dumb question
2004-08-27 0:48 Robin Lynn Frank
@ 2004-08-27 0:52 ` David Cary Hart
2004-08-27 0:59 ` Robin Lynn Frank
0 siblings, 1 reply; 7+ messages in thread
From: David Cary Hart @ 2004-08-27 0:52 UTC (permalink / raw)
To: netfilter
On Thu, 2004-08-26 at 20:48, Robin Lynn Frank wrote:
> Apologies if this is a dumb question but I am new to manipulating
> iptables directly. There is a pest that has been routinely probing us.
> While we simply drop them, I'd like to make it "uncomfortable" for them
> to continue. When I attempt the following, I get the response
> indicated. We are running Mandrake Linus 10.0 Official with a 2.6
> kernel.
I Frank.
>
I use TARPIT. It is available in the latest POM which you can download.
You need the IPTables source code and the source for your kernel which
well then have to be recompiled. Make CERTAIN that you are not running
conntrack with TARPIT.
> # /sbin/iptables -A INPUT -s ###.###.#.### -j TARPIT
> iptables: No chain/target/match by that name
>
> Any help is appreciated.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Dumb question
2004-08-27 0:52 ` David Cary Hart
@ 2004-08-27 0:59 ` Robin Lynn Frank
0 siblings, 0 replies; 7+ messages in thread
From: Robin Lynn Frank @ 2004-08-27 0:59 UTC (permalink / raw)
To: Netfilter Mail List
[-- Attachment #1: Type: text/plain, Size: 390 bytes --]
On Thu, 2004-08-26 at 17:52, David Cary Hart wrote:
> >
> I use TARPIT. It is available in the latest POM which you can download.
> You need the IPTables source code and the source for your kernel which
> well then have to be recompiled. Make CERTAIN that you are not running
> conntrack with TARPIT.
>
Thanks.
--
Robin Lynn Frank
Director of Operations
Paradigm-Omega, LLC
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 233 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Dumb question
@ 2006-08-09 15:14 Facundo Barrera
2006-08-09 15:17 ` Mike
0 siblings, 1 reply; 7+ messages in thread
From: Facundo Barrera @ 2006-08-09 15:14 UTC (permalink / raw)
To: netfilter
Hi list:
I'm using iptables on slackware, everytime i update a rule on
my rc.firewall script i have to reboot my server....SO LAMMER!!!
how can i update my iptables rules without rebooting the OS?
Many thanks.
--
Facundo Agustin Barrera
IT Management.
Buenos Aires - Argentina.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Dumb question
2006-08-09 15:14 Dumb question Facundo Barrera
@ 2006-08-09 15:17 ` Mike
0 siblings, 0 replies; 7+ messages in thread
From: Mike @ 2006-08-09 15:17 UTC (permalink / raw)
To: Facundo Barrera; +Cc: netfilter
What does your rc.firewall script look like, and why would you need to
restart your server?
Are you not able to just execute /etc/rc.d/rc.firewall and have it
reload the firewall?
Thanks
Mike
Facundo Barrera wrote:
> Hi list:
> I'm using iptables on slackware, everytime i update a rule on
> my rc.firewall script i have to reboot my server....SO LAMMER!!!
> how can i update my iptables rules without rebooting the OS?
>
> Many thanks.
>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Dumb question
@ 2017-03-10 4:35 V Kurien
2017-03-10 4:57 ` V Kurien
0 siblings, 1 reply; 7+ messages in thread
From: V Kurien @ 2017-03-10 4:35 UTC (permalink / raw)
To: netfilter
Hi all
I'm trying to use ulogd2 to count flows and so I assume that I have to
create iptable rules to match the traffic that I care about.
Based on reading on the web, it seemed that I'd have to (this is on a
stock ubuntu-16.04 with a 4.4 kernel)
Assume that I want to match all TCP packets heading into the host;
(1) Create an iptables rule: iptables -A INPUT -p TCP -j ULOG --ulog-nlgroup 1
(2) My ulogd.conf looks like:
.. all plugins included
stack=ct1:NFCT,ip2str1:IP2STR,print1:PRINTFLOW,emu1:LOGEMU
I get an error when I try to run the iptables command:
iptables: No chain/target/match by that name.
Clearly I am doing something insane, but what?
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Dumb question
2017-03-10 4:35 V Kurien
@ 2017-03-10 4:57 ` V Kurien
0 siblings, 0 replies; 7+ messages in thread
From: V Kurien @ 2017-03-10 4:57 UTC (permalink / raw)
To: netfilter
Please ignore this. The kernel on the machine had been changed from
the generic kernel.
On Thu, Mar 9, 2017 at 8:35 PM, V Kurien <kurien.varugis@gmail.com> wrote:
> Hi all
> I'm trying to use ulogd2 to count flows and so I assume that I have to
> create iptable rules to match the traffic that I care about.
>
> Based on reading on the web, it seemed that I'd have to (this is on a
> stock ubuntu-16.04 with a 4.4 kernel)
>
> Assume that I want to match all TCP packets heading into the host;
>
> (1) Create an iptables rule: iptables -A INPUT -p TCP -j ULOG --ulog-nlgroup 1
> (2) My ulogd.conf looks like:
> .. all plugins included
>
> stack=ct1:NFCT,ip2str1:IP2STR,print1:PRINTFLOW,emu1:LOGEMU
>
> I get an error when I try to run the iptables command:
>
> iptables: No chain/target/match by that name.
>
> Clearly I am doing something insane, but what?
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2017-03-10 4:57 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-08-09 15:14 Dumb question Facundo Barrera
2006-08-09 15:17 ` Mike
-- strict thread matches above, loose matches on Subject: below --
2017-03-10 4:35 V Kurien
2017-03-10 4:57 ` V Kurien
2004-08-27 0:48 Robin Lynn Frank
2004-08-27 0:52 ` David Cary Hart
2004-08-27 0:59 ` Robin Lynn Frank
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox