[PLUG] Comanche on RedHat 9 installation question....

Derek Loree drl at drloree.com
Fri Aug 8 17:38:01 UTC 2003


On Fri, 2003-08-08 at 15:27, Rik Fischer Smoody wrote:
> I feel like the mouse in a psychologist's maze:
> 	I can smell the cheese, but I haven't quite reached it.
> 
> Request:
> 	I'm looking for help getting  a separate (webpage) server
> 	(Comanche, runs in Squeak)
> 	up in addition to Apache on Linux (Redhat 9)
> 
> 	I think this is likely entirely outside of Squeak, but instead suffering
> 	from an over-protective firewall or some such...
> 	I have tested using complete-slut iptables and
> 	turning off ip6tables from redhat-config-services
> 
> 	Thus I beg for help from Linux experts.
> 
> Background:
> 
> I set up an old PC with RedHat 9
> but I am having more than a bit of trouble getting a simple? thing  to work.
> 
> If I turn ON httpd, I can see www.smoo.com through Apache,
> and I can see http://192.168.123.120:8080 from the Comanche server running in Squeak.
> but still no http://www.smoo.com:8080, not even from within the local network.
> 
Looks like you need to allow access to port 8080 on your public
interface.  I've never heard of complete-slut, so have no advice on how
to change it, but the commands would look something like:

EXTINT="ethx"
PUBLICPORTS="1024:65535"
/sbin/iptables -A OUTPUT -o $EXTINT -p TCP --sport 8080 \
        --dport $PUBLICPORTS -j ACCEPT
/sbin/iptables -A INPUT  -i $EXTINT -p TCP --sport $PUBLICPORTS \
        --dport 8080 -j ACCEPT

Where the x in ethx would be the number of the public interface.


Good Luck,

Derek Loree






More information about the PLUG mailing list