hi2all
I'm only starting with IPFW, but I already have experience with iptables. on my debian server I'm using
with default INPUT drop policy.
trying to do the same in IPFW:
but it works strange. I can establish ftp, or ssh connection from FreeBSD to other host and they can't doing the same to me, but I can't ping internet hosts, and pkg_add -r blablabla also doesn't work.
I'm only starting with IPFW, but I already have experience with iptables. on my debian server I'm using
Code:
-A INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT
trying to do the same in IPFW:
Code:
ipfw add allow all from me to any
ipfw add allow all from any to me establish