Max (that's great, nearly forgot about that commercial!)

I use this in my script to allow the RealVideo client; the RealAudio 
just seems to work without any special rules:

if [ $RV_CLIENT -gt 0 ]; then
   iptables -A OUTPUT -o $EXTERNAL_INTERFACE -p TCP --sport \ 
   $UNPRIVPORTS --dport 554 -s $EXTERNAL_IP -d $ANYWHERE -j ACCEPT

   iptables -A INPUT -i $EXTERNAL_INTERFACE -p TCP --sport 554 \ 
   -s $ANYWHERE -d $EXTERNAL_IP -j ACCEPT

   if [ $MASQUERADING -gt 0 ]; then 
      iptables -A FORWARD -p TCP -s $INTERNAL_NETWORK --sport \ 
      $UNPRIVPORTS --dport 544 -j ACCEPT
      iptables -A FORWARD -m state --state ESTABLISHED,RELATED \
      -p TCP -d $INTERNAL_NETWORK --sport 544 --dport $UNPRIVPORTS \ 
      -j ACCEPT
   fi
   if [ $VERBOSE -gt 0 ]; then
      echo "firewall: Real Video client enabled"
   fi
fi

HTH -- Bob

On Mon, 10 Jun 2002, Max Headroom wrote:

> I am interested in getting information about
> the NAT helper for Real Player in the 2.4
> kernel. There is a NAT helper in the 2.2 kernel
> but no one seems to be working on it.
> Does anyone know where I could get information
> about the Real Play NAT helper support
> in the 2.4 kernel? Who is working on it?
> 
> MH
> 
> __________________________________________________
> Do You Yahoo!?
> Yahoo! - Official partner of 2002 FIFA World Cup
> http://fifaworldcup.yahoo.com
> 

-- 
________________________________________
Bob Sully - Simi Valley, California, USA
http://www.malibyte.net

"The weather is here - wish you were beautiful." - J. Buffett



Reply via email to