Here, we just use a single rule to allow incoming traffic on UDP port 7001
for callbacks:
-A RH-Firewall-1-INPUT -p udp --dport 7001 -j ACCEPT
so that hosts can communicate with any AFS cell. (due to the callback
issue that Russ describes)
This is assuming a standard RHEL3/RHEL4/rec
Ron Croonenberg <[EMAIL PROTECTED]> writes:
> Im trying to figure out what ports need to be open in iptables for
> running an OpenAFS client (and server).
> Only the ports 7000-7009 both udp and tcp need to be open, corrrect ?
> so that means I need:
> iptables -I RH-Firewall-1-INPUT 1 -p tcp
Im trying to figure out what ports need to be open in iptables for
running an OpenAFS client (and server).
Only the ports 7000-7009 both udp and tcp need to be open, corrrect ?
so that means I need:
iptables -I RH-Firewall-1-INPUT 1 -p tcp --dport 7000:7009 -j ACCEPT
and
iptables -I RH-Firew