From 2f8e8b74487b36fe8ed233570115767ca3a13ec6 Mon Sep 17 00:00:00 2001 From: Christian Hesse Date: Tue, 18 Oct 2022 22:36:03 +0200 Subject: update-gre-address: strip "CN=" from peer's id The prefix "CN=" is now added in RouterOS 7.6... Let's match with and without the prefix in comment. --- update-gre-address | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/update-gre-address b/update-gre-address index d1402e3..a94616a 100644 --- a/update-gre-address +++ b/update-gre-address @@ -11,13 +11,14 @@ :global GlobalFunctionsReady; :while ($GlobalFunctionsReady != true) do={ :delay 500ms; } +:global CharacterReplace; :global LogPrintExit2; /interface/gre/set remote-address=0.0.0.0 disabled=yes [ find where !running !disabled ]; :foreach Peer in=[ /ip/ipsec/active-peers/find ] do={ :local PeerVal [ /ip/ipsec/active-peers/get $Peer ]; - :local GreInt [ /interface/gre/find where comment=$PeerVal->"id" ]; + :local GreInt [ /interface/gre/find where comment=($PeerVal->"id") or comment=[ $CharacterReplace ($PeerVal->"id") "CN=" "" ] ]; :if ([ :len $GreInt ] > 0) do={ :local GreIntVal [ /interface/gre/get $GreInt ]; :if ([ :typeof ($PeerVal->"dynamic-address") ] = "str" && \ -- cgit v1.2.3-54-g00ecf