Linux - NewbieThis Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place!
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Distribution: RedHat 9, Gentoo, I'm Working On More so Don't Bug Me.
Posts: 23
Rep:
Opening Internal Ports
How do I open Selective UDP ports on a Redhat 9 system.
I am trying to get MSN voice to work through a linux router, I have enabled upnp on it but it seems the internal UDP ports are not open so it can't get through.
I have edited the firewall script and my udp portscanner says that the Ports are open when scanning my external ip. but when I scan the internal network address they are shut.
It depends upon how you wrote the iptables rules. I'm assuming you've got two ethernet cards if you using this as a router and it would be VERY easy to write rules that open the appropriate ports on one interface, but not the other. So the upshot is that you'll have to post your rules in order for anyone to help.
echo " FWD: Allow all connections OUT and only existing and related ones IN"
#$IPTABLES -A FORWARD -i $EXTIF -o $INTIF -j ACCEPT
$IPTABLES -A FORWARD -i $EXTIF -o $INTIF -m state --state ESTABLISHED,RELATED -j ACCEPT
$IPTABLES -A FORWARD -i $INTIF -o $EXTIF -j ACCEPT
$IPTABLES -A FORWARD -j LOG
echo " Enabling SNAT (MASQUERADE) functionality on $EXTIF"
$IPTABLES -t nat -A POSTROUTING -o $EXTIF -j MASQUERADE
#echo " Opening UDP port 5000 for msn"
echo -e "\nrc.firewall-2.4 v$FWVER done.\n"
I had some trial port opening code, but I deleted them completely in order to start from scratch.
You've got a line commented out that pretty much allows all forwarding between exinf and intif. Does it work when you do that rather than the state matching? (Yes, I know its a bad idea to allow all trafic like that, but it may give a clue as to what's wrong)
The other thing is that you are logging.....Do your logs show anything interesting?
I'll admit to a bit of confusion here. This really isn't a restrictive firewall.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.