Hello,
I'm trying to setup redondancy for my edge router. I have 2 routers AR2240, each one have wan interface and local interface. I have setup NAT for internal subnet but it's not working as expected. When master change, i can see outgoing packets on the new master but incoming packet are showing up on the old master.
Am i missing some config ? I have see a vrrp option for outgoinf nat but not really documented and after some tests it doesn't change anything.
Here are my configs. lan traffic is comming from eth-t10, xg0/0/1 is public IP lan, xg0/0/0 is wan interco :
R1:
nat address-group 1 yy.yy.yy.201 yy.yy.yy.201
#
acl number 2000
rule 5 permit source 192.168.0.0 0.0.255.255
#
interface XGigabitEthernet0/0/0
description TO MT
ip address xx.xx.xx.27 255.255.255.248
vrrp vrid 1 virtual-ip xx.xx.xx.26
vrrp vrid 1 priority 120
vrrp vrid 1 preempt-mode timer delay 60
nat outbound 2000 address-group 1
#
interface XGigabitEthernet0/0/1
description To_Switch
ip address yy.yy.yy.211 255.255.255.0
vrrp vrid 2 virtual-ip yy.yy.yy.253
vrrp vrid 2 priority 120
vrrp vrid 2 preempt-mode timer delay 60
nat outbound 2000 address-group 1
#
interface Eth-Trunk10
undo portswitch
ip address 10.0.0.211 255.255.255.0
vrrp vrid 3 virtual-ip 10.0.0.254
vrrp vrid 3 priority 120
vrrp vrid 3 preempt-mode timer delay 60
mode lacp-static
#
R2:
nat address-group 1 yy.yy.yy.201 yy.yy.yy.201
#
acl number 2000
rule 5 permit source 192.168.0.0 0.0.255.255
#
interface XGigabitEthernet0/0/0
description TO MT
ip address xx.xx.xx.28 255.255.255.248
vrrp vrid 1 virtual-ip xx.xx.xx.26
vrrp vrid 1 priority 120
vrrp vrid 1 preempt-mode timer delay 60
nat outbound 2000 address-group 1
#
interface XGigabitEthernet0/0/1
description To_Switch
ip address yy.yy.yy.210 255.255.255.0
vrrp vrid 2 virtual-ip yy.yy.yy.253
vrrp vrid 2 priority 120
vrrp vrid 2 preempt-mode timer delay 60
nat outbound 2000 address-group 1
#
interface Eth-Trunk10
undo portswitch
ip address 10.0.0.210 255.255.255.0
vrrp vrid 3 virtual-ip 10.0.0.254
vrrp vrid 3 priority 120
vrrp vrid 3 preempt-mode timer delay 60
mode lacp-static
What config should i change to achieve NAT HA ?