I have a webserver in inside network with IP: 192.168.1.99 . The outside IP of PIX 501 is 71.155.211.233 and inside IP of PIX 501 is
192.168.1.1 . what to do if I want my webserver visible from public internet? I need HTTP://71.155.211.233 will be directed to my website on the webserver.
Thanks a lot!
Charlie
Didn't find your answer? Ask the community — no account required.
M
Merv
port forwarding is called port redirection in PIX parlance
Result of firewall command: "access-group 192.168.1.99 in interface outside"
ERROR: access-list does not exist Usage: [no] access-group in interface [per-user-override] Command failed
it seems "eq" is not accepted in the syntax.. Sorry for the headaches caused..
Thanks.
Charlie
M
Merv
Did you already have a name command for WEBSERVER in your config ?
Anyways try this instead:
ip address outside 71.155.211.233 255.255.255.0 ip address inside 192.168.1.1 255.255.255.0 static (inside,outside) tcp interface www 192.168.1.99 www netmask
255.255.255.255 0 0 access-list WEB_SERVER_ACL permit tcp any interface eq www access-group WEB_SERVER_ACL in interface outside
S
signal
interface eq www "
Yes. I named 192.168.1.99 as WEBSERVER
Error message returned for this command: interface doesn't exist all the first three commands work fine but I am stuck by creating an access-list.. Thanks Merv.
W
Walter Roberson
access-list WEB_SERVER_ACL permit tcp any interface outside eq www
S
signal
now everything is working perfectly. Thanks Walter and Merv for the greatest help!
S
signal
For future reader's reference, here is what I did for setting up port forwarding in PIX 501.
ip address outside 71.155.211.233 255.255.255.0 ip address inside 192.168.1.1 255.255.255.0 static (inside,outside) tcp interface www 192.168.1.99 www netmask
255.255.255.255 0 0 access-list WEB_SERVER_ACL permit tcp any interface outside eq www access-group WEB_SERVER_ACL in interface outside
Join the Discussion
Have something to add? Share your thoughts — no account required.
Didn't find your answer?
Ask the community — no account required
Report Content
You are reporting this content to the moderators. They will look at it
ASAP.