--- In PIX_Firewall%40yahoogroups.com">PIX_Firewall
yahoogroups.com, "xionextreme" <xionextreme
...>
wrote:
>
> Can you please show me a detailed sample code to allow IP
> 207.58.145.109 to be able to access IP 10.1.7.1 through port 8081?
> (port forwarding)
> I have tried many things, but nothing has worked so far.
>
> Please help...
>
> Thank you in advance.
>
Try this, it should work but let know if it does not.
'This creates a static map between IP address
static (inside,outside) 207.58.145.109 10.1.7.1
'This opens the port you wanted
access-list acl-in permit tcp any host 207.58.145.109 eq 8081
'This applies access list acl-in to the outside interface.
access-group acl-in in interface outside
.