routing - 2 external IP address mapped to 1 internal -
is possible map same internal ip address 2 different external ip's on cisco firewall?
in process of getting new circuit have them both mapped until ready cutover.
with cisco firewall mean cisco asa guess. if so, never tried should possible static nat. asa version prior 8.3:
(config)# static($internal_net, $public_net), $public_ip1 $private_ip netmask 255.255.255.255 (config)# static($internal_net, $public_net), $public_ip2 $private_ip netmask 255.255.255.255
with asa version 8.3 , later:
(config)# object network $my_name1 (config-network-objct)# host $private_ip (config-network-objct)# nat($private_net, $public_net) static $public_ip1 (config)# object network $my_name2 (config-network-objct)# host $private_ip (config-network-objct)# nat($private_net, $public_net) static $public_ip2
then need proper acl of course.
Comments
Post a Comment