Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Multiple external ip addresses -> Ethernet0/0

Status
Not open for further replies.

l0nny

Programmer
May 9, 2007
1
US
Hello,

I have a windows server 2003 box running 2 ssl websites. Currently I am only using the windows firewall and have put the two exteral ip addresses right on the server's nic card.

I just purchased a asa5510 and am logged in to the asdm interface.

Is there any way to map more than one external ip address to one eternet interface (Ethernet0/0) and have that traffic routed to my nic as 2 different internal ips?


Ex: 23.124.124.12 -> 192.168.1.100
23.124.124.13 -> 192.168.1.101

Then in iis i would select the internal ip addresses for each site and hopefully the ssl certificates would work?

Thanks for reading this,

Mike
 
yeah, use a static statment
Code:
static (inside,outside) 23.124.124.12 192.168.1.100 netmask 255.255.255.255 0 0
static (inside,outside) 23.124.124.13 192.168.1.101 netmask 255.255.255.255 0 0

now apply an access list to the statments to permit the taffic
Code:
access-list 100 permit tcp any host 23.124.124.12 eq 443
access-list 100 permit tcp any host 23.124.124.13 eq 443
access-group 100 in interface outside

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top