/* HINT: Search archives @ http://www.indyramp.com/masq/ before posting!
/* ALSO: Don't quote this header. It makes you look lame :-) */
@home Mail wrote:
> I'm running IPCHAINS, RH 6.2 and Icecast. Could someone give me a simple rule
> that will open up my IPCHAINS firewall to TCP and UDP traffic on 8000 and
> 8001. This is not a port forward issue, I just need the allow connections to
> those ports.
something like:
ipchains -A input -p tcp -i $extif -d $extip 8000:8001 -j ACCEPT
ipchains -A output -p tcp -i $extif -s $extip 8000:8001 ! -y -j ACCEPT
ipchains -A input -p udp -i $extif -d $extip 8000:8001 -j ACCEPT
ipchains -A output -p udp -i $extif -s $extip 8000:8001 -j ACCEPT
where:
$extif = external interface
$extip = external ip address
raf
_______________________________________________
Masq maillist - [EMAIL PROTECTED]
Admin requests can be handled at http://www.indyramp.com/masq-list/ --
THIS INCLUDES UNSUBSCRIBING!
or email to [EMAIL PROTECTED]
PLEASE read the HOWTO and search the archives before posting.
You can start your search at http://www.indyramp.com/masq/
Please keep general linux/unix/pc/internet questions off the list.