Hello
Usually I configure GRE tunnels between Cisco and Cisco but now I have to do it between Cisco and Mikrotik , normally on Cisco I use
keep alive 5 4
But how to do it on Mikrotik ?
Please I need your help
Best Regards
Hello
Usually I configure GRE tunnels between Cisco and Cisco but now I have to do it between Cisco and Mikrotik , normally on Cisco I use
keep alive 5 4
But how to do it on Mikrotik ?
Please I need your help
Best Regards
No idea what the 5 and 4 mean on Cisco, however on Mikrotik, you add keepalive=interval,count as parameters on the /interface gre row. interval specifies how often to send the keepalive packets, count tells how many of them must fail in order that the interface was considered down. The default is 10s,10.
But there are other caveats with GRE on Mikrotik:
Thanks Sindy for the answer
5 4 means 5 = seconds = 4 retries
Can anyone help me how to configure on GUI ? Please
Best Regards
If you can use command line on Cisco, why the same scares you on Mikrotik? You can easily translate the command line hierarchy of items to the GUI hierarchy, it is at most places 1:1.
/interface gre
add remote-address=the.cisco.ip.address keepalive=5s,4 name=gre-to-cisco disabled=yes
/interface list
add name=all-gre
/interface list member
add list=all-gre interface=gre-to-cisco
/ip firewall filter
set [find chain~“input” action~“drop” connection-state~“invalid”] protocol=!gre
add chain=forward in-interface-list=all-gre prototol=gre out-interface-list=WAN action=accept
You have to place the second rule to the proper place among other rules in the firewall filter (somewhere right after the action=accept connection-state=established,related,untracked one if you use the default firewall). If you want a more precise suggestion, you have to post the export of your current configuration.
If the GRE tunnel doesn’t come up, disable it for more than 10 minutes at both the Mikrotik and the Cisco, and then enable it again.
Thanks Sindy