Hi Doug,

I'm a little late in diving in here but I think the primary error in 
your config is in this section from what I can tell.

>##############################################################################
>#
># Port Forwarding
>##############################################################################
>#
># Remember to open appropriate holes in the firewall rules, above
>
># Uncomment following for port-forwarded internal services.
># The following is an example of what should be put here.
># Tuples are as follows:
>#       <protocol>_<local-ip>_<local-port>_<remote-ip>_<remote-port>
>#INTERN_SERVERS="tcp_${EXTERN_IP}_ftp_192.168.1.1_ftp
>tcp_${EXTERN_IP}_smtp_192.
>INTERN_SERVERS="tcp_${EXTERN_IP}_8080_192.168.1.1_8080"

Here you are forwarding 8080 to 8080

># These lines use the primary external IP address...if you need to
>port-forward
># an aliased IP address, use the INTERN_SERVERS setting above
>#INTERN_FTP_SERVER=192.168.1.1   # Internal FTP server to make available
>INTERN_WWW_SERVER=192.168.1.1   # Internal WWW server to make available
>#INTERN_SMTP_SERVER=192.168.1.1 # Internal SMTP server to make available
>#INTERN_POP3_SERVER=192.168.1.1 # Internal POP3 server to make available
>#INTERN_IMAP_SERVER=192.168.1.1  # Internal IMAP server to make available
>#INTERN_SSH_SERVER=192.168.1.1   # Internal SSH server to make available
>#EXTERN_SSH_PORT=24              # External port to use for internal SSH
>access

But here you are opening  www (80) so it is not connectin.

You could do one of two things. Either forward 8080 -> 8080 like 
above and open the destination 8080 using some of the comments others 
have made, or, you could simply forward 8080 -> 80 by changing your 
port forwarding to:

        INTERN_SERVERS="tcp_${EXTERN_IP}_8080_192.168.1.1_80"

And now that I look closer at it, the line

        NTERN_WWW_SERVER=192.168.1.1   # Internal WWW server to make available

defaults to ${EXTERN_IP} at port 80.... which is not what you want.

I hope this helps,

Scott

_______________________________________________
Leaf-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/leaf-user

Reply via email to