Is this config Possible?

static (inside,outside) tcp interface 443 INTERNALIP1 443 netmask

255.255.255.255 static (inside,outside) tcp interface 443 INTERNALIP2 443 netmask 255.255.255.255

access-list out2in permit tcp any interface outside eq 443

Reply to
mrchess51
Loading thread data ...

No, because in effect you're trying port forward 443/tcp to two different internal addresses. What you can do is change the external port number so they're both unique.

static (inside,outside) tcp interface 443 INTERNALIP1 443 netmask

255.255.255.255 static (inside,outside) tcp interface 4443 INTERNALIP2 443 netmask 255.255.255.255

access-list out2in permit tcp any interface outside eq 443 access-list out2in permit tcp any interface outside eq 4443

Note, that you'll only be able to browse to one address using https (with the first default 443 mapping) without including the outside port.

Cheers,

Matt

Reply to
Matthew Melbourne

Cabling-Design.com Forums website is not affiliated with any of the manufacturers or service providers discussed here. All logos and trade names are the property of their respective owners.