Hi all,
I need some help on this one. I have a Cisco 2611 router, IOS 12.3.6a.
I'm uncertain as to whether I can use a public IP for a firewall on the LAN side of my router when I'm already using public IPs from the same subnet for NAT (64.x.x.0). For lack of a term, I'll call it transparent pass-through. Do I need to configure my router to allow traffic to the 64.x.x.1 firewall, and will this conflict with dynamic and static NAT already configured for 64.x.x.0?
Here is a portion of my config:
interface serial0/0.1
ip address 64.z.z.130
ip nat outside
frame-relay interface-dlci 16 IETF
no ip unreachables
.
.
.
interface Ethernet0/0.2 (just one of my 5 subinterfaces)
ecapsulation dot1Q 2
ip address 192.168.50.99 255.255.255.0
ip nat inside
ip access-group No-Inter-vlan-Routing-2
no ip unreachables
.
.
.
ip nat pool natpool-1 64.x.x.101 64.x.x.254 netmask 255.255.255.0
ip nat inside source list 15 pool natpool-1
ip nat inside source static 192.168.50.201 64.x.x.2
ip nat inside source static 192.168.1.201 64.x.x.3
ip nat inside source static 192.168.99.201 64.x.x.4
ip classless
ip route 0.0.0.0 0.0.0.0 Serial0/0.1
!
logging trap notifications
access-list 15 permit 192.168.0.0 0.0.255.255
!
! Deny Inter-VLAN routing to vlan1, 3, and 4. Allow traffic out.
ip access-list extended No-Inter-vlan-Routing-2
Deny ip 192.168.50.0 0.0.0.255 192.168.99.0 0.0.0.255
Deny ip 192.168.50.0 0.0.0.255 192.168.0.0 0.0.0.255
Deny ip 192.168.50.0 0.0.0.255 192.168.1.0 0.0.0.255
permit ip any any
!
etc.
I need some help on this one. I have a Cisco 2611 router, IOS 12.3.6a.
I'm uncertain as to whether I can use a public IP for a firewall on the LAN side of my router when I'm already using public IPs from the same subnet for NAT (64.x.x.0). For lack of a term, I'll call it transparent pass-through. Do I need to configure my router to allow traffic to the 64.x.x.1 firewall, and will this conflict with dynamic and static NAT already configured for 64.x.x.0?
Here is a portion of my config:
interface serial0/0.1
ip address 64.z.z.130
ip nat outside
frame-relay interface-dlci 16 IETF
no ip unreachables
.
.
.
interface Ethernet0/0.2 (just one of my 5 subinterfaces)
ecapsulation dot1Q 2
ip address 192.168.50.99 255.255.255.0
ip nat inside
ip access-group No-Inter-vlan-Routing-2
no ip unreachables
.
.
.
ip nat pool natpool-1 64.x.x.101 64.x.x.254 netmask 255.255.255.0
ip nat inside source list 15 pool natpool-1
ip nat inside source static 192.168.50.201 64.x.x.2
ip nat inside source static 192.168.1.201 64.x.x.3
ip nat inside source static 192.168.99.201 64.x.x.4
ip classless
ip route 0.0.0.0 0.0.0.0 Serial0/0.1
!
logging trap notifications
access-list 15 permit 192.168.0.0 0.0.255.255
!
! Deny Inter-VLAN routing to vlan1, 3, and 4. Allow traffic out.
ip access-list extended No-Inter-vlan-Routing-2
Deny ip 192.168.50.0 0.0.0.255 192.168.99.0 0.0.0.255
Deny ip 192.168.50.0 0.0.0.255 192.168.0.0 0.0.0.255
Deny ip 192.168.50.0 0.0.0.255 192.168.1.0 0.0.0.255
permit ip any any
!
etc.