ALT Linux Community general discussions
 help / color / mirror / Atom feed
From: Michael Shigorin <mike@osdn.org.ua>
To: community@altlinux.ru
Subject: [Comm] iptables vs ipchains (was: Как настроить шлюз в инет?)
Date: Wed, 22 Dec 2004 15:49:03 +0200
Message-ID: <20041222134903.GF9534@osdn.org.ua> (raw)
In-Reply-To: <41C75352.7050103@vostok.net.ua>


[-- Attachment #1.1: Type: text/plain, Size: 1078 bytes --]

On Mon, Dec 20, 2004 at 10:33:54PM +0000, Alexey S. Kuznetsov wrote:
> >>Пусть человек начнёт с самого начала, потом будет переходить
> >>на более новые шняги :-)
> >Смысл? 
> Нужно понимать концепцию, а не тупо заучивать комманды. Я
> считаю, что нужно знать и старые версии софта и новые.

Дружище, объясните мне, тупому, какая-такая концепция в ipchains
и в чём смысл использовать его (уж ipfwadm тогда) под
современными ядрами, помимо быстрого портирования (и то есть
нюансы вроде различного поведения ipchains -L -z под 2.2 и 2.4)?

Я вот скажу, что нормальный файрвол построить на iptables --
гораздо меньше головной боли и куда эффективней, чем на ipchains
и предыдущем ipfwadm -- уже благодаря statefullness, бишь тому,
что можно ссылаться на соединения, например, сказав "принимать
ответы на то, что инициировано от нас".

PS: моя дежурная болванка в аттаче, если кто-либо в благодарность
проверит, доточит, проверит и предложит в FAQ -- welcome.

-- 
 ---- WBR, Michael Shigorin <mike@altlinux.ru>
  ------ Linux.Kiev http://www.linux.kiev.ua/

[-- Attachment #1.2: iptables --]
[-- Type: text/plain, Size: 2006 bytes --]

# Generated by iptables-save v1.2.6a on Thu Nov 21 21:15:39 2002
*nat
:PREROUTING ACCEPT [0:0]
:POSTROUTING ACCEPT [0:0]
:OUTPUT ACCEPT [0:0]
-A PREROUTING -d _REAL_IP -i eth0 -p tcp -m tcp --dport _EXT_PORT -j DNAT --to-destination _INT_HOST:_INT_PORT
-A POSTROUTING -s 10.0.1.0/24 -d ! 10.0.1.0/24 -j SNAT --to-source _REAL_IP
COMMIT
# Completed on Thu Nov 21 21:15:39 2002
# Generated by iptables-save v1.2.6a on Thu Nov 21 21:15:39 2002
*mangle
:PREROUTING ACCEPT [0:0]
:INPUT ACCEPT [0:0]
:FORWARD ACCEPT [0:0]
:OUTPUT ACCEPT [0:0]
:POSTROUTING ACCEPT [0:0]
COMMIT
# Completed on Thu Nov 21 21:15:39 2002
# Generated by iptables-save v1.2.6a on Thu Nov 21 21:15:39 2002
*filter
:INPUT ACCEPT [0:0]
:FORWARD ACCEPT [0:0]
:OUTPUT ACCEPT [0:0]
:eth1-in - [0:0]
:eth1-out - [0:0]
:tcprules - [0:0]
-A INPUT -i eth1 -j eth1-in
-A INPUT -s 127.0.0.1 -d 127.0.0.1 -j ACCEPT
-A INPUT -s 10.0.1.0/24 -d 10.0.1.1 -i eth0 -j ACCEPT
-A INPUT -s 10.0.1.0/24 -d _REAL_IP -i eth0 -j ACCEPT
-A INPUT -d _REAL_IP -i eth0 -p tcp -m tcp --dport 22 -j ACCEPT
-A INPUT -d _REAL_IP -i eth0 -p tcp -m tcp --dport 25 -j ACCEPT
-A INPUT -d _REAL_IP -i eth0 -p udp -m udp --dport 53 -j ACCEPT
-A INPUT -d _REAL_IP -i eth0 -p tcp -m tcp --dport 53 -j ACCEPT
-A INPUT -d _REAL_IP -i eth0 -p tcp -m tcp --dport 80 -j ACCEPT
-A INPUT -d _REAL_IP -i eth0 -p tcp -m tcp --dport 110 -j ACCEPT
-A INPUT -d _REAL_IP -i eth0 -p tcp -m tcp --dport 113 -j REJECT --reject-with tcp-reset
-A INPUT -j tcprules
# block :25 to world (only through 10.0.1.1:25)
-A FORWARD -s 10.0.1.0/24 -p tcp -m tcp --dport 25 -j REJECT --reject-with icmp-port-unreachable
-A FORWARD -j tcprules
-A OUTPUT -o eth1 -j eth1-out
-A eth1-in -j RETURN
-A eth1-out -j RETURN
-A tcprules -i eth1 -m state --state RELATED,ESTABLISHED -j ACCEPT
-A tcprules -i ! eth1 -m state --state NEW -j ACCEPT
-A tcprules -i eth1 -m state --state INVALID,NEW -j DROP
-A tcprules -i eth1 -j REJECT --reject-with icmp-host-unreachable
COMMIT
# Completed on Thu Nov 21 21:15:39 2002

[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]

  parent reply	other threads:[~2004-12-22 13:49 UTC|newest]

Thread overview: 35+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2004-12-16 16:15 [Comm] Как настроить шлюз в инет? Denis Kirienko
2004-12-16 16:29 ` Jury Levykin
2004-12-16 16:43   ` Denis Kirienko
2004-12-16 17:03     ` Denis Kirienko
2004-12-16 20:34       ` Jury Levykin
2004-12-16 20:43         ` Denis Kirienko
2004-12-16 16:30 ` Alexey S. Kuznetsov
2004-12-16 16:35   ` Jury Levykin
2004-12-16 20:08     ` Re[2]: " Alexey S. Kuznetsov
2004-12-16 19:28       ` Sergey Vlasov
2004-12-17  5:59   ` Mike Lykov
2004-12-17  6:15     ` Шишков Евгений
2004-12-17 11:20     ` Re[2]: " Alexey S. Kuznetsov
2004-12-20 15:03       ` Andrey Rahmatullin
2004-12-20 16:28         ` [Comm] " Michael Shigorin
2004-12-20 22:33         ` [Comm] " Alexey S. Kuznetsov
2004-12-20 20:50           ` Denis Kirienko
2004-12-20 23:19             ` Alexey S. Kuznetsov
2004-12-22 13:49               ` [Comm] " Michael Shigorin
2004-12-21  9:55             ` [Comm] " Oleg Shulga
2004-12-21  5:01           ` Mike Lykov
2004-12-22 13:49           ` Michael Shigorin [this message]
2004-12-22 14:13             ` [Comm] iptables vs ipchains Andriy Dobrovol's'kii
2004-12-22 14:25               ` Alexey Morsov
2004-12-22 14:47                 ` Serge Polkovnikov
2004-12-22 14:53                   ` Igor Solovyov
2004-12-22 14:59                     ` Serge Polkovnikov
2004-12-22 15:00                   ` Alexey I. Froloff
2004-12-22 15:43                     ` [Comm] iptables vs ipchains [JT] Denis Kirienko
2004-12-22 15:00               ` [Comm] IA: iptables bolvanka, fixed version (was: iptables vs ipchains) Michael Shigorin
2004-12-22 16:22                 ` Andrey Rahmatullin
2004-12-22 17:05                   ` [Comm] dotfiles.com Michael Shigorin
2004-12-22 17:51                   ` [Comm] IA: iptables bolvanka, fixed version (was: iptables vs ipchains) Maxim Tyurin
2004-12-22 15:30             ` [Comm] iptables vs ipchains (was: Как настроить шлюз в инет?) Alexey S. Kuznetsov
2004-12-22 15:39               ` Denis Kirienko

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20041222134903.GF9534@osdn.org.ua \
    --to=mike@osdn.org.ua \
    --cc=community@altlinux.ru \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link

ALT Linux Community general discussions

This inbox may be cloned and mirrored by anyone:

	git clone --mirror http://lore.altlinux.org/community/0 community/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 community community/ http://lore.altlinux.org/community \
		mandrake-russian@linuxteam.iplabs.ru community@lists.altlinux.org community@lists.altlinux.ru community@lists.altlinux.com
	public-inbox-index community

Example config snippet for mirrors.
Newsgroup available over NNTP:
	nntp://lore.altlinux.org/org.altlinux.lists.community


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git