06-18-2012 03:47 PM - edited 03-04-2019 04:43 PM
Hello All,
I have a task for a config I have not done before. I'm replacing an older 831 and PIX with a Cisco 881 router with Firewall feature set. The router receives its public IP address dynamically and there is a static public IP range also assigned with a couple of NAT statements on the PIX for a few public IP's
I'm ok with the core router config but the range is where I'm a little stuck. Current setup is as follows
Internet ---------- Router( Public intf Dynamic IP----internal intf Range IP)Router-------------PIX (outside intf Range IP---------Inside intf private net)Pix-------
As per the aboive the PIX had a public IP address from the range on the outside interface with a default route to the Router inside interface which uses a public range addres.
With my proposed config I've setup the outside interface as dynamic and just created my nat statements for the Range IP's. I believe I'm correct that I do not need to actually have a Range IP address configured on the router? Can anyone please confirm I'm on the right track (Basic config attached).
Regards
Dave
Solved! Go to Solution.
06-19-2012 06:59 PM
Hi all,
Yes, you are correct
But i have a comment on your configuration
ip nat inside source static x.x.x.154 192.168.1.23
ip nat inside source static x.x.x.155 192.168.1.10
ip nat inside source static x.x.x.156 192.168.1.250
ip nat inside source static x.x.x.157 192.168.1.251
Those commands needs to be changed to
ip nat inside source static 192.168.1.23 x.x.x.154
ip nat inside source static 192.168.1.10 x.x.x.155
ip nat inside source static 192.168.1.250 x.x.x.156
ip nat inside source static 192.168.1.251 x.x.x.157
because the inside interfaces is from the subnet 192.168.1.0/24 which you has determined it using the (IP nat inside command)
Regards.
06-18-2012 11:12 PM
Anyone got 5min to coment or give your thoughts?
Dave
06-19-2012 06:59 PM
Hi all,
Yes, you are correct
But i have a comment on your configuration
ip nat inside source static x.x.x.154 192.168.1.23
ip nat inside source static x.x.x.155 192.168.1.10
ip nat inside source static x.x.x.156 192.168.1.250
ip nat inside source static x.x.x.157 192.168.1.251
Those commands needs to be changed to
ip nat inside source static 192.168.1.23 x.x.x.154
ip nat inside source static 192.168.1.10 x.x.x.155
ip nat inside source static 192.168.1.250 x.x.x.156
ip nat inside source static 192.168.1.251 x.x.x.157
because the inside interfaces is from the subnet 192.168.1.0/24 which you has determined it using the (IP nat inside command)
Regards.
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide