So if I understand this correctly, 155.212.41.18 is the publicly assigned address that you will be using for the web development PC?
If this is the case, then you will need to configure NAT on the PIX so that all requests to 155.212.41.18 will be translated to the private IP address 192.168.1.86.
To do this:
1. PIX(config)# static (<interface where the development PC is located>,<outside_interface>)
example: PIX(config)# static (inside,outside) 155.212.41.18 192.168.1.86 netmask 255.255.255.255
2. Make sure that you have routes to get to the internal PC configured on the PIX.
3. Make sure you have access rules to allow traffic from the outside to get to the internal PC.
example:
access-list 101 line 10 remark [Allow HTTP traffic to Web Development PC]:
access-list 101 line 11 remark ==========================
access-list 101 line 12 permit tcp any host 155.212.41.18 eq 80
Let me know if I understood your question correctly and if I answered it completely.
Main Topics
Browse All Topics





by: ChristianTPosted on 2009-08-24 at 08:28:47ID: 25169323
I'm not sure this is going to work for you. You said the new address is assigned to your router. Do you know which interface of the router it is assigned to? Do you manage your router or is it managed for you by your ISP?
I think what you will find is that you will need a separate firewall for that new IP address since it is in a different network from your existing block of 5. The PIX is only capable of handling one IP subnet on the outside interface, and in the scenario you are explaining, you would be putting two subnets on the outside interface.
Answer the questions I asked above and I might be able to give you a more precise answer.