01-17-2018 09:49 AM - edited 03-05-2019 09:47 AM
02-06-2018 09:09 PM - edited 02-26-2018 10:38 AM
someone please help
02-07-2018 12:56 AM
Hello,
just to be sure, do you have the ip sla responder configured on the other side ?
02-07-2018 08:47 AM - edited 02-26-2018 10:38 AM
someone please help
02-07-2018 11:57 AM
Hello,
try and add the below EEM script to your configuration. This clears the crypto session and NAT translations in case of a failover, it also adds the static NAT entries which would otherwise not work.
Does that make a difference ? Even if it doesn't, leave that script in your configuration.
event manager applet CLEAR_NAT_DOWN
event track 1 state down
action 1.0 cli command "enable"
action 2.0 cli command "clear crypto session"
action 3.0 cli command "clear ip nat translation forced"
action 4.0 cli command "conf t"
action 4.1 cli command "no ip nat inside source static tcp 192.168.110.133 443 interface GigabitEthernet0/1 443"
action 4.2 cli command "no ip nat inside source static udp 192.168.110.133 3391 interface GigabitEthernet0/1 3391"
action 4.3 cli command "ip nat inside source static tcp 192.168.110.133 443 interface GigabitEthernet0/0/0 443"
action 4.4 cli command "ip nat inside source static udp 192.168.110.133 3391 interface GigabitEthernet0/0/0 3391"
action 5.0 cli command "exit"
event manager applet CLEAR_NAT_UP
event track 1 state up
action 1.0 cli command "enable"
action 2.0 cli command "clear crypto session"
action 3.0 cli command "clear ip nat translation forced"
action 4.0 cli command "conf t"
action 4.1 cli command "no ip nat inside source static tcp 192.168.110.133 443 interface GigabitEthernet0/0/0 443"
action 4.2 cli command "no ip nat inside source static udp 192.168.110.133 3391 interface GigabitEthernet0/0/0 3391"
action 4.3 cli command "ip nat inside source static tcp 192.168.110.133 443 interface GigabitEthernet0/1 443"
action 4.4 cli command "ip nat inside source static udp 192.168.110.133 3391 interface GigabitEthernet0/1 3391"
action 5.0 cli command "exit"
02-07-2018 02:32 PM - edited 02-26-2018 10:39 AM
someone please help
02-07-2018 02:44 PM - edited 02-26-2018 10:39 AM
someone please help
02-07-2018 08:06 PM - edited 02-26-2018 10:40 AM
someone please help
02-08-2018 12:38 AM
Hello,
in the script it is assumed that GigabitEthernet0/1 is the primary interface, and GigabitEthernet0/0/0 the backup. If that is reversed, you need to reverse the script as well...
02-08-2018 07:46 AM - edited 02-26-2018 10:40 AM
someone please help
02-08-2018 08:20 AM
Hello,
if GigabitEthernet0/0/0 is your primary port, make sure the 'track 1' is added to the default route pointing to that port.
Otherwise, the script looks good. The best way to enter it into your configuration is to paste it in config mode:
R1#conf t
R1(config)# --> paste the lines starting with 'event manager applet' here
Repeat the same thing for the other event manager applet.
The original problem of course was to find out if the failover works now...
02-08-2018 10:31 PM - edited 02-26-2018 10:40 AM
someone please help
02-09-2018 12:07 AM
Hello,
the track goes on the primary route:
ip route 0.0.0.0 0.0.0.0 50.225.187.209 track 1 <-- primary route
ip route 0.0.0.0 0.0.0.0 70.89.25.230 10 <-- secondary route with higher AD
02-09-2018 08:11 AM
03-09-2018 09:32 AM
thank you very much for all your help. took me a while to get a window to test everything , everything working
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