I've got a cisco 1760 router that we were running with the firewall feature turned on. I need to reconfig the router so that it is only a router and we will be running a separate firewall.
The ISP provides us with a /30 network and a /28 network for the 13 usable IP addresses. Originally, the router was set up with the /30 on the WAN side of the router and 192.168.2.0/24 as the LAN side. We were using ip nat pool and ip nat inside source to use those /28 addresses on the LAN.
I now want to just set up the LAN side of the router with a /28 address directly and then point the WAN side of the new firewall to that address.
at the same time I'll strip out
I'm assuming I can go from this:
to something like this, removing all the NAT commands, autoQOS, etc. basically going to be able to clean out a lot of obsolete configuration stuff, including old VPN tunnels, FXS/FXO cards, etc.
and then have the firewall with x.x.x.162 for its WAN address. the firewall's LAN address would be the 192.168.2.1. The firewall would then be able to NAT forward .163-174 to the internal servers as needed, correct? I'm already using ASA's at some of my other locations, so programming the firewall isn't too much of an issue, just need to make sure the router is set up right.
I'm pretty sure I understand it, but when I have to take a flight to Mexico to work on this, I don't have much time to troubleshoot. at least I still have internet access through my MPLS network if I need to google anything.
The ISP provides us with a /30 network and a /28 network for the 13 usable IP addresses. Originally, the router was set up with the /30 on the WAN side of the router and 192.168.2.0/24 as the LAN side. We were using ip nat pool and ip nat inside source to use those /28 addresses on the LAN.
I now want to just set up the LAN side of the router with a /28 address directly and then point the WAN side of the new firewall to that address.
at the same time I'll strip out
I'm assuming I can go from this:
interface FastEthernet0/0
description connected to EthernetLAN
ip address 192.168.2.1 255.255.255.0
ip nat inside
ip virtual-reassembly
ip policy route-map rmap
speed auto
!
interface Serial0/0:1
description For Telmex
bandwidth 2048
ip address y.y.y.125 255.255.255.252
ip access-group filterin in
ip access-group filterout out
ip nat outside
ip inspect sipphone in
ip inspect sipphone out
ip virtual-reassembly
service-policy output AutoQoS-Policy-UnTrust
auto qos voip
!
router rip
version 2
passive-interface Serial0/0:1
network 192.168.2.0
no auto-summary
!
ip nat pool telmex x.x.x.161 201.x.x.x..161 netmask 255.255.255.240
ip nat inside source route-map nonat pool telmex overload
ip nat inside source static 192.168.2.10 x.x.x.163
ip nat inside source static 192.168.2.11 x.x.x.164
description connected to EthernetLAN
ip address 192.168.2.1 255.255.255.0
ip nat inside
ip virtual-reassembly
ip policy route-map rmap
speed auto
!
interface Serial0/0:1
description For Telmex
bandwidth 2048
ip address y.y.y.125 255.255.255.252
ip access-group filterin in
ip access-group filterout out
ip nat outside
ip inspect sipphone in
ip inspect sipphone out
ip virtual-reassembly
service-policy output AutoQoS-Policy-UnTrust
auto qos voip
!
router rip
version 2
passive-interface Serial0/0:1
network 192.168.2.0
no auto-summary
!
ip nat pool telmex x.x.x.161 201.x.x.x..161 netmask 255.255.255.240
ip nat inside source route-map nonat pool telmex overload
ip nat inside source static 192.168.2.10 x.x.x.163
ip nat inside source static 192.168.2.11 x.x.x.164
to something like this, removing all the NAT commands, autoQOS, etc. basically going to be able to clean out a lot of obsolete configuration stuff, including old VPN tunnels, FXS/FXO cards, etc.
interface FastEthernet0/0
description connected to EthernetLAN
ip address x.x.x.161 255.255.255.240
ip virtual-reassembly
speed auto
!
interface Serial0/0:1
description For Telmex
bandwidth 2048
ip address y.y.y.125 255.255.255.252
ip virtual-reassembly
description connected to EthernetLAN
ip address x.x.x.161 255.255.255.240
ip virtual-reassembly
speed auto
!
interface Serial0/0:1
description For Telmex
bandwidth 2048
ip address y.y.y.125 255.255.255.252
ip virtual-reassembly
and then have the firewall with x.x.x.162 for its WAN address. the firewall's LAN address would be the 192.168.2.1. The firewall would then be able to NAT forward .163-174 to the internal servers as needed, correct? I'm already using ASA's at some of my other locations, so programming the firewall isn't too much of an issue, just need to make sure the router is set up right.
I'm pretty sure I understand it, but when I have to take a flight to Mexico to work on this, I don't have much time to troubleshoot. at least I still have internet access through my MPLS network if I need to google anything.

Comment