Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 16 Dec 2002 17:02:14 -0800
From:      Gary D Kline <kline@thought.org>
To:        FreeBSD Mailing List <freebsd-questions@FreeBSD.ORG>
Subject:   Are these IPF -> IPFW protocols equivalent?
Message-ID:  <20021217010213.GA23339@tao.thought.org>

next in thread | raw e-mail | index | archive | help
	Just a couple more questions on the migation to ipfw and 
	this much should be done.  Do I need to write for the "out"
	rule in ipfw, "out xmit via dc0"?  Similarly for the "in"
	rule, do I need the "recv"?  I thought I'd better check
	with the list for input on this.

	How close did I come with these 6 lines?

	thanks very much!!

	gary


# Inside Interface (ipf)
{IPF] pass out quick on dc1 proto tcp from any to any keep state
{IPF] pass out quick on dc1 proto icmp from any to any keep state
{IPF] block out quick on dc1 all

{IPF] pass in quick on dc1 proto tcp from any to any keep state
{IPF] pass in quick on dc1 proto icmp from any to any keep state
{IPF] block in quick on dc1 all

# Loopback Interface
{IPF] pass in quick on lo0 all
{IPF] pass out quick on lo0 all


# Inside Interface (ipfw)
[IPFW] add 200 allow tcp from any to any out xmit via dc0 keep-state
[IPFW] add 200 allow icmp from any to any out xmit via dc0 keep-state
[IPFW] add deny ip from any to any out xmit via dc0   

[IPFW] add 200 allow tcp from any to any in recv via dc0 keep-state
[IPFW] add 200 allow icmp from any to any in recv via dc0 keep-state
[IPFW] add deny ip from any to any in recv via dc0   

# Loopback Interface
[IPFW] add allow ip from 127.0.0.1 to 127.0.0.1 in recv via lo0
[IPFW] add allow ip from 127.0.0.1 to 127.0.0.1 out xmit via lo0


-- 
   Gary Kline     kline@thought.org   www.thought.org     Public service Unix


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-questions" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20021217010213.GA23339>