yeah, so this is a script which i created
:set time [/system clock get time]
:local file [/ip ipsec installed-sa print file=ipsec append]
:local contents [/file get $file contents]
:set contents ($contents . “\n” . $time)
/file set $file contents=$contents
}
and just i RUN SCRIPT from GUI.
Is it script ok? I think it is.
sindy
October 13, 2020, 10:38am
22
Could you please create another script which will contain only the /ip ipsec installed-sa print file=ipsec append part and nothing else, run that new one twice, and see whether the file ipsec.txt is there and what is it contents?
i tried to make like this
:set time [/system clock get time]
:local file [/ip ipsec installed-sa print] <— this fills a (string) variable called file with the output of the print command
:local contents [/file get $file contents] <— this tries to extract the contents of a file whose name is the contents of the string variable above, that makes little sense
:set contents ($contents . “\n” . $time)
/file set $file contents=$contents
}
but from some reason, nothing been created in the file section. There is no ipsec file when I run script.
The bad news is that RouterOS is not great when it comes to file manipulation, but the good news is that the timestamp is part of every print “job”. So just do
/ip ipsec installed-sa print file=somefilename append
periodically, and each list of SAs will begin with a comment block which will include the timestamp.
But you cannot open the file in RouterOS as soon as it exceeds some size (which is not really big), so you’ll have to download it somewhere.
i created schjeduler for
/ip ipsec installed-sa print file=ipsec append
every 5 minutes. Waiting now for the tunnel problem and i will post file here.
Tunnel not working but not for all subnets of peer, just for one local subnet, another sees tunnel ip. Thats strange.
This is ipsec sa
new 4.txt (52.9 KB)
sindy
November 1, 2020, 6:52pm
26
In the past, there was an issue in IKEv2 rekey between two Mikrotiks, where in a few percent of rekeys the peers ended up with different keys for the same SA, hence the receiver was rejecting the packets. This particular issue has been fixed somewhere in late 6.43 version.
You have one policy per each (local subnet, remote subnet) pair, and each SA is rekeyed independently, so if it is a similar issue, it is no surprise that it pops up for a single SA while others remain unaffected. If all SAs handling the same local subnet don’t work, it’s another thing.
So I’m afraid there may be an issue in rekeying in IKE(v1) between Mikrotik’s IPsec implementation and the one used on pfSense. To make sure, you have to get the SA data also from the pfSense while the issue exists. If the failed rekey is the reason, you’ll see a difference between the keys shown at both peers for the affected SAs, whilst the working SAs will show the same keys.
sindy
November 2, 2020, 9:25am
28
Without the actual encryption and authentication keys in use, it is not sufficient, as you can only confirm that it is a rekey issue by comparing the keys at both ends for same SPIs.
Can you show me you /ip ipsec statistics print ? There is a counter which grows with each packet coming through the SA whose last rekey failed, but I don’t remember which one exactly it is.
sindy
November 2, 2020, 10:49am
30
I’m afraid it’s the in-state-sequence-errors value - it doesn’t sound related, but apparently there is no separate counter for packets encrypted using a wrong key. So whenever this counter increases, there is at least one “miskeyed” SA.
Go to command line of the pfsense and try ip xfrm state . It should show you the same information like /ip ipsec installed-sa print on Mikrotik:
src 192.168.12.1 dst 195.201.133.70
proto esp spi 0x0942b8a2 reqid 2208 mode tunnel
replay-window 32 flag af-unspec
auth-trunc hmac(sha256) 0xaf4069a8fe6fac611d203e925c1b0de100b053fabf14dce5a2b81aafd53e46ef 128
enc cbc(aes) 0x60c4e645bf20c5a321644fcb862271142a2e61622f7d900095d81d1a8afd4fe0 encap type espinudp sport 4500 dport 4500 addr 0.0.0.0
anti-replay context: seq 0x0, oseq 0x4d0, bitmap 0x00000000
src 195.201.133.70 dst 192.168.12.1
proto esp spi 0xc8c37789 reqid 2208 mode tunnel
replay-window 32 flag af-unspec
auth-trunc hmac(sha256) 0x5420611fe33c77d00a9a373bd040516cf3b33d397f2bbd869de83fda1aed7736 128
enc cbc(aes) 0x4628da3a9ec1dd0a02c5ed6b1369d627c511897c1ca57c454f00ae413892c141 encap type espinudp sport 4500 dport 4500 addr 0.0.0.0
anti-replay context: seq 0x222, oseq 0x0, bitmap 0xffffffff
With the number of policies you use, it will require to dump the SA information at both machines into a file when the issue appears on one of the policies, and then to do some text processing to convert the files from both machines to a unified form so that you could compare the SA keys per SPI. Be aware that the SPI values are also ephemeral and change with each rekey.
But you may first want to try to switch from exchange mode “main” (which is one of IKE(v1)'s modes) to exchange mode “ike2” (at both the Tik and the pfSense of course); the SA rekey procedure differs for SAs established under control of IKE(v1) and under control of IKEv2, so maybe it will work fine with IKEv2.
If it doesn’t help, you’ll have to open a case with both Mikrotik and pfSense, as you won’t be able to find out on your own which party is responsible for the rekey failure.
I’m afraid it’s the in-state-sequence-errors value - it doesn’t sound related, but apparently there is no separate counter for packets encrypted using a wrong key. So whenever this counter increases, there is at least one “miskeyed” SA.
Go to command line of the pfsense and try ip xfrm state . It should show you the same information like /ip ipsec installed-sa print on Mikrotik:
src 192.168.12.1 dst 195.201.133.70
proto esp spi 0x0942b8a2 reqid 2208 mode tunnel
replay-window 32 flag af-unspec
auth-trunc hmac(sha256) 0xaf4069a8fe6fac611d203e925c1b0de100b053fabf14dce5a2b81aafd53e46ef 128
enc cbc(aes) 0x60c4e645bf20c5a321644fcb862271142a2e61622f7d900095d81d1a8afd4fe0 encap type espinudp sport 4500 dport 4500 addr 0.0.0.0
anti-replay context: seq 0x0, oseq 0x4d0, bitmap 0x00000000
src 195.201.133.70 dst 192.168.12.1
proto esp spi 0xc8c37789 reqid 2208 mode tunnel
replay-window 32 flag af-unspec
auth-trunc hmac(sha256) 0x5420611fe33c77d00a9a373bd040516cf3b33d397f2bbd869de83fda1aed7736 128
enc cbc(aes) 0x4628da3a9ec1dd0a02c5ed6b1369d627c511897c1ca57c454f00ae413892c141 encap type espinudp sport 4500 dport 4500 addr 0.0.0.0
anti-replay context: seq 0x222, oseq 0x0, bitmap 0xffffffff
With the number of policies you use, it will require to dump the SA information at both machines into a file when the issue appears on one of the policies, and then to do some text processing to convert the files from both machines to a unified form so that you could compare the SA keys per SPI. Be aware that the SPI values are also ephemeral and change with each rekey.
But you may first want to try to switch from exchange mode “main” (which is one of IKE(v1)'s modes) to exchange mode “ike2” (at both the Tik and the pfSense of course); the SA rekey procedure differs for SAs established under control of IKE(v1) and under control of IKEv2, so maybe it will work fine with IKEv2.
If it doesn’t help, you’ll have to open a case with both Mikrotik and pfSense, as you won’t be able to find out on your own which party is responsible for the rekey failure.
ip xfrm state
i got ip : command not found tried to find on google but couldnt
But you may first want to try to switch from exchange mode "main" (which is one of IKE(v1)'s modes) to exchange mode "ike2" (at both the Tik and the pfSense of course); the SA rekey procedure differs for SAs established under control of IKE(v1) and under control of IKEv2, so maybe it will work fine with IKEv2.
i tried this earlier and didnt help
sindy
November 2, 2020, 11:14am
32
Not knowing what linux distribution pfSense is based on, nor which IPsec implementation it uses (openswan, strongswan, something else), I cannot give you a more targeted suggestion. Did you issue that command as a linux user with root privileges, or is there some restricted command line of the pfSense so you first need to get from there to bash?
So try migrating to IKEv2 first and see whether it makes the issue disappear.
Not knowing what linux distribution pfSense is based on, nor which IPsec implementation it uses (openswan, strongswan, something else), I cannot give you a more targeted suggestion. Did you issue that command as a linux user with root privileges, or is there some restricted command line of the pfSense so you first need to get from there to bash?
So try migrating to IKEv2 first and see whether it makes the issue disappear.
So try migrating to IKEv2 first and see whether it makes the issue disappear.
i tried this before, and didnt help.
I will try to find out a pfsense commands for that what are you need for.
I’m afraid it’s the in-state-sequence-errors value - it doesn’t sound related, but apparently there is no separate counter for packets encrypted using a wrong key. So whenever this counter increases, there is at least one “miskeyed” SA.
Go to command line of the pfsense and try ip xfrm state . It should show you the same information like /ip ipsec installed-sa print on Mikrotik:
src 192.168.12.1 dst 195.201.133.70
proto esp spi 0x0942b8a2 reqid 2208 mode tunnel
replay-window 32 flag af-unspec
auth-trunc hmac(sha256) 0xaf4069a8fe6fac611d203e925c1b0de100b053fabf14dce5a2b81aafd53e46ef 128
enc cbc(aes) 0x60c4e645bf20c5a321644fcb862271142a2e61622f7d900095d81d1a8afd4fe0 encap type espinudp sport 4500 dport 4500 addr 0.0.0.0
anti-replay context: seq 0x0, oseq 0x4d0, bitmap 0x00000000
src 195.201.133.70 dst 192.168.12.1
proto esp spi 0xc8c37789 reqid 2208 mode tunnel
replay-window 32 flag af-unspec
auth-trunc hmac(sha256) 0x5420611fe33c77d00a9a373bd040516cf3b33d397f2bbd869de83fda1aed7736 128
enc cbc(aes) 0x4628da3a9ec1dd0a02c5ed6b1369d627c511897c1ca57c454f00ae413892c141 encap type espinudp sport 4500 dport 4500 addr 0.0.0.0
anti-replay context: seq 0x222, oseq 0x0, bitmap 0xffffffff
With the number of policies you use, it will require to dump the SA information at both machines into a file when the issue appears on one of the policies, and then to do some text processing to convert the files from both machines to a unified form so that you could compare the SA keys per SPI. Be aware that the SPI values are also ephemeral and change with each rekey.
But you may first want to try to switch from exchange mode “main” (which is one of IKE(v1)'s modes) to exchange mode “ike2” (at both the Tik and the pfSense of course); the SA rekey procedure differs for SAs established under control of IKE(v1) and under control of IKEv2, so maybe it will work fine with IKEv2.
If it doesn’t help, you’ll have to open a case with both Mikrotik and pfSense, as you won’t be able to find out on your own which party is responsible for the rekey failure.
i found command and here you are result
ipsec statusall
or
swanctl --list-sas
or
setkey -D
HQ2 HQ1
esp mode=tunnel spi=194053178(0x0b91043a) reqid=179(0x000000b3)
E: rijndael-cbc e91d22c7 34c5660b ee38fcb5 617ef027 e51d8664 98026fe0 c2a3f6d7 50324686
A: hmac-sha1 6c0071c1 7681c0cc 5a6073cf da4d6aae b12cfd84
seq=0x00e8045a replay=0 flags=0x00000000 state=mature
created: Dec 24 21:20:35 2020 current: Dec 24 22:03:31 2020
diff: 2576(s) hard: 3600(s) soft: 3589(s)
last: Dec 24 21:20:35 2020 hard: 0(s) soft: 0(s)
current: 18292672176(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 15205466 hard: 0 soft: 0
sadb_seq=71 pid=65019 refcnt=1
HQ1 HQ2
esp mode=tunnel spi=3251491520(0xc1cdd2c0) reqid=179(0x000000b3)
E: rijndael-cbc 95854d1c 7f9f1b41 9bba52d0 e42a1922 f7b98a9e 5aebd775 b2b08a63 0cb56e22
A: hmac-sha1 cacfce32 7dc71379 5256cff6 7e10aa2f cb87ce70
seq=0x00000000 replay=4 flags=0x00000000 state=mature
created: Dec 24 21:20:35 2020 current: Dec 24 22:03:31 2020
diff: 2576(s) hard: 3600(s) soft: 3579(s)
last: Dec 24 21:20:35 2020 hard: 0(s) soft: 0(s)
current: 382695806(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 8596284 hard: 0 soft: 0
sadb_seq=70 pid=65019 refcnt=1
HQ2 HQ1
esp mode=tunnel spi=90744231(0x0568a5a7) reqid=180(0x000000b4)
E: rijndael-cbc 93f6e98d 6c108df7 c1fe05e8 1398aad2 52e31a3d c7bcfc82 a1c7bd57 63b0d847
A: hmac-sha1 48cc6406 1db4db69 cfc83235 7627ea44 fa171142
seq=0x00000000 replay=0 flags=0x00000000 state=mature
created: Dec 24 22:00:29 2020 current: Dec 24 22:03:31 2020
diff: 182(s) hard: 3600(s) soft: 3587(s)
last: hard: 0(s) soft: 0(s)
current: 0(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 0 hard: 0 soft: 0
sadb_seq=69 pid=65019 refcnt=1
HQ2 HQ1
esp mode=tunnel spi=200505362(0x0bf37812) reqid=180(0x000000b4)
E: rijndael-cbc ecaffed1 901ca147 72095182 22809132 6b2b476e 10d7f9d7 c4177edf f1f2a319
A: hmac-sha1 90ec8e98 14309c03 d7d89773 8da9e88d ab2c499e
seq=0x00000000 replay=0 flags=0x00000000 state=mature
created: Dec 24 21:48:20 2020 current: Dec 24 22:03:31 2020
diff: 911(s) hard: 3600(s) soft: 3586(s)
last: hard: 0(s) soft: 0(s)
current: 0(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 0 hard: 0 soft: 0
sadb_seq=68 pid=65019 refcnt=1
HQ2 HQ1
esp mode=tunnel spi=40106998(0x0263fbf6) reqid=180(0x000000b4)
E: rijndael-cbc 12ba534a 7a7bbee4 c40f74f0 4ac692cc 9c1db0d0 ffed8f3e 2d9f1140 150e498e
A: hmac-sha1 b60e0602 1213b0f5 bd6627df cb3dc8d7 5731dad0
seq=0x00000000 replay=0 flags=0x00000000 state=mature
created: Dec 24 21:19:04 2020 current: Dec 24 22:03:31 2020
diff: 2667(s) hard: 3600(s) soft: 3584(s)
last: hard: 0(s) soft: 0(s)
current: 0(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 0 hard: 0 soft: 0
sadb_seq=67 pid=65019 refcnt=1
HQ1 HQ2
esp mode=tunnel spi=3284684755(0xc3c84fd3) reqid=180(0x000000b4)
E: rijndael-cbc d61bceb6 9cef149f 0f0b875e ada64d8b e69d23af 85825951 36f425f9 b14e569a
A: hmac-sha1 c5714328 de33e343 fe614677 a7536532 388eb341
seq=0x00000000 replay=4 flags=0x00000000 state=mature
created: Dec 24 22:00:29 2020 current: Dec 24 22:03:31 2020
diff: 182(s) hard: 3600(s) soft: 3585(s)
last: hard: 0(s) soft: 0(s)
current: 0(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 0 hard: 0 soft: 0
sadb_seq=66 pid=65019 refcnt=1
HQ1 HQ2
esp mode=tunnel spi=3464886564(0xce85f924) reqid=180(0x000000b4)
E: rijndael-cbc ada10215 ff34f61b 3f196f8d da7246b7 cdf71b49 5b1afb07 8725f298 578b785c
A: hmac-sha1 dc7a0217 001c3de4 4a2cc765 8e3efc9d 12d1f0bb
seq=0x00000000 replay=4 flags=0x00000000 state=mature
created: Dec 24 21:48:20 2020 current: Dec 24 22:03:31 2020
diff: 911(s) hard: 3600(s) soft: 3589(s)
last: hard: 0(s) soft: 0(s)
current: 0(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 0 hard: 0 soft: 0
sadb_seq=65 pid=65019 refcnt=1
HQ1 HQ2
esp mode=tunnel spi=3290874816(0xc426c3c0) reqid=180(0x000000b4)
E: rijndael-cbc e3053811 e32d977c 84a28a15 9dc8e511 8d5649a6 4f53fa82 0f48a721 a4e18042
A: hmac-sha1 ec526471 d2fb54d0 e0a635d0 7ace8f88 3b30074d
seq=0x00000000 replay=4 flags=0x00000000 state=mature
created: Dec 24 21:19:04 2020 current: Dec 24 22:03:31 2020
diff: 2667(s) hard: 3600(s) soft: 3587(s)
last: hard: 0(s) soft: 0(s)
current: 0(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 0 hard: 0 soft: 0
sadb_seq=64 pid=65019 refcnt=1
HQ2 HQ1
esp mode=tunnel spi=100184661(0x05f8b255) reqid=177(0x000000b1)
E: rijndael-cbc 51361fba 9581e121 2682dbe1 d315b23d fde1537a 092898d6 f059b8fe 04fae9be
A: hmac-sha1 272108cc c43dffc2 0342e887 c2893b5e b47cedd3
seq=0x00000000 replay=0 flags=0x00000000 state=mature
created: Dec 24 22:00:11 2020 current: Dec 24 22:03:31 2020
diff: 200(s) hard: 3600(s) soft: 3586(s)
last: hard: 0(s) soft: 0(s)
current: 0(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 0 hard: 0 soft: 0
sadb_seq=63 pid=65019 refcnt=1
HQ2 HQ1
esp mode=tunnel spi=13907557(0x00d43665) reqid=177(0x000000b1)
E: rijndael-cbc 4c850490 43b72603 ce0cb165 4df43b8e 6fa2b544 bb8ff671 0c3ddf1d bfe2641d
A: hmac-sha1 9c99901d 2b03f4fe 85f53863 9539e47c bf263503
seq=0x00000000 replay=0 flags=0x00000000 state=mature
created: Dec 24 21:49:50 2020 current: Dec 24 22:03:31 2020
diff: 821(s) hard: 3600(s) soft: 3588(s)
last: hard: 0(s) soft: 0(s)
current: 0(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 0 hard: 0 soft: 0
sadb_seq=62 pid=65019 refcnt=1
HQ2 HQ1
esp mode=tunnel spi=95254521(0x05ad77f9) reqid=177(0x000000b1)
E: rijndael-cbc f10ba5ab c25c83f4 d6bf8a06 96ee21ac 31167b3d 8a10d256 349f57e1 42312532
A: hmac-sha1 a480a161 c68242ee 9cb037a7 fd661838 01c2115a
seq=0x00000000 replay=0 flags=0x00000000 state=mature
created: Dec 24 21:20:13 2020 current: Dec 24 22:03:31 2020
diff: 2598(s) hard: 3600(s) soft: 3586(s)
last: hard: 0(s) soft: 0(s)
current: 0(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 0 hard: 0 soft: 0
sadb_seq=61 pid=65019 refcnt=1
HQ1 HQ2
esp mode=tunnel spi=3273134059(0xc3180feb) reqid=177(0x000000b1)
E: rijndael-cbc b33e978b 2607ee79 e6e308c2 444d9af7 25774a0f bd43bf59 d9a69eb6 8a195792
A: hmac-sha1 48ae8d5a 5ee789a1 1ca0fc8f b55850e8 9b1d3df1
seq=0x00000000 replay=4 flags=0x00000000 state=mature
created: Dec 24 22:00:11 2020 current: Dec 24 22:03:31 2020
diff: 200(s) hard: 3600(s) soft: 3589(s)
last: hard: 0(s) soft: 0(s)
current: 0(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 0 hard: 0 soft: 0
sadb_seq=60 pid=65019 refcnt=1
HQ1 HQ2
esp mode=tunnel spi=3243216105(0xc14f8ce9) reqid=177(0x000000b1)
E: rijndael-cbc bb69cb03 5f744aa7 48fb6766 9a77cd45 80685183 afed5076 58bc6e16 8db9e410
A: hmac-sha1 6392010e 398b6de8 61811368 c59b3f88 46cb24c7
seq=0x00000000 replay=4 flags=0x00000000 state=mature
created: Dec 24 21:49:50 2020 current: Dec 24 22:03:31 2020
diff: 821(s) hard: 3600(s) soft: 3580(s)
last: hard: 0(s) soft: 0(s)
current: 0(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 0 hard: 0 soft: 0
sadb_seq=59 pid=65019 refcnt=1
HQ1 HQ2
esp mode=tunnel spi=3351502395(0xc7c3de3b) reqid=177(0x000000b1)
E: rijndael-cbc 0a741595 0609ced4 b9e741ac e1503c99 782064ca 2e7027cf 1211ed45 f2969e10
A: hmac-sha1 15111446 f7e4b416 9a11b0dc b1be341a afd1420b
seq=0x00000000 replay=4 flags=0x00000000 state=mature
created: Dec 24 21:20:13 2020 current: Dec 24 22:03:31 2020
diff: 2598(s) hard: 3600(s) soft: 3587(s)
last: hard: 0(s) soft: 0(s)
current: 0(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 0 hard: 0 soft: 0
sadb_seq=58 pid=65019 refcnt=1
HQ2 HQ1
esp mode=tunnel spi=16508708(0x00fbe724) reqid=178(0x000000b2)
E: rijndael-cbc d152f74d 1c5251de c1792113 45711ebe 1dc1dd7f 1c9e2177 470f2e8d a1b61d5f
A: hmac-sha1 52d0299e 13727e64 eb869ccd 7fa33802 cb0a1409
seq=0x0087eb7d replay=0 flags=0x00000000 state=mature
created: Dec 24 21:38:54 2020 current: Dec 24 22:03:31 2020
diff: 1477(s) hard: 3600(s) soft: 3586(s)
last: Dec 24 21:38:54 2020 hard: 0(s) soft: 0(s)
current: 10107311440(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 8907644 hard: 0 soft: 0
sadb_seq=57 pid=65019 refcnt=2
HQ2 HQ1
esp mode=tunnel spi=258189634(0x0f63a942) reqid=178(0x000000b2)
E: rijndael-cbc 3e5ce00d 1a686859 b1ba7adc df7ef792 8bdaa823 e0b27385 7af4d109 eb598f22
A: hmac-sha1 5a214de8 20e5eb43 a51aafa6 a38a305e 991472cf
seq=0x00bb705e replay=0 flags=0x00000000 state=mature
created: Dec 24 21:06:01 2020 current: Dec 24 22:03:31 2020
diff: 3450(s) hard: 3600(s) soft: 3588(s)
last: Dec 24 21:06:01 2020 hard: 0(s) soft: 0(s)
current: 14053576912(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 12283998 hard: 0 soft: 0
sadb_seq=56 pid=65019 refcnt=1
HQ1 HQ2
esp mode=tunnel spi=3405409504(0xcafa6ce0) reqid=178(0x000000b2)
E: rijndael-cbc 404450d8 6b2d237b f79cfabb 3fb23909 761c53a9 58208c8d 69972f6c 8856d1c1
A: hmac-sha1 028e87c7 ac1d78ce b498b4fd ebf41eea f5763c1d
seq=0x00000000 replay=4 flags=0x00000000 state=mature
created: Dec 24 21:38:54 2020 current: Dec 24 22:03:31 2020
diff: 1477(s) hard: 3600(s) soft: 3588(s)
last: Dec 24 21:38:54 2020 hard: 0(s) soft: 0(s)
current: 227913790(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 5115416 hard: 0 soft: 0
sadb_seq=55 pid=65019 refcnt=2
HQ1 HQ2
esp mode=tunnel spi=3376674182(0xc943f586) reqid=178(0x000000b2)
E: rijndael-cbc 82e4cb31 bfe72297 08886a15 c9123576 e9fa00cc fed801f8 faefdc64 0cedb7c2
A: hmac-sha1 629c5fc3 b4019d8e 380c2a7b 67fb746a 189a501f
seq=0x00000000 replay=4 flags=0x00000000 state=mature
created: Dec 24 21:06:01 2020 current: Dec 24 22:03:31 2020
diff: 3450(s) hard: 3600(s) soft: 3585(s)
last: Dec 24 21:06:01 2020 hard: 0(s) soft: 0(s)
current: 312098311(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 7007371 hard: 0 soft: 0
sadb_seq=54 pid=65019 refcnt=1
HQ2 HQ1
esp mode=tunnel spi=26192280(0x018fa998) reqid=79(0x0000004f)
E: rijndael-cbc 8be4236c 936f2747 6fc0377a 7f194da4 81aa7234 04ac7b4d fbe30820 0a58c188
A: hmac-sha1 823f0faa c971d04b dfc1f451 f1d66532 18d95863
seq=0x00000000 replay=0 flags=0x00000000 state=mature
created: Dec 24 22:00:38 2020 current: Dec 24 22:03:31 2020
diff: 173(s) hard: 3600(s) soft: 3587(s)
last: hard: 0(s) soft: 0(s)
current: 0(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 0 hard: 0 soft: 0
sadb_seq=53 pid=65019 refcnt=1
HQ2 HQ1
esp mode=tunnel spi=144768731(0x08a0fedb) reqid=79(0x0000004f)
E: rijndael-cbc a990af72 a3442b52 08018d28 2fdae1c2 eadae086 e786045d 8d8e27cf c2d5117f
A: hmac-sha1 c9c98cd7 b4ffa301 226a673a 02b7f83e 16f82d2f
seq=0x00000000 replay=0 flags=0x00000000 state=mature
created: Dec 24 21:53:52 2020 current: Dec 24 22:03:31 2020
diff: 579(s) hard: 3600(s) soft: 3583(s)
last: hard: 0(s) soft: 0(s)
current: 0(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 0 hard: 0 soft: 0
sadb_seq=52 pid=65019 refcnt=1
HQ2 HQ1
esp mode=tunnel spi=127178844(0x0794985c) reqid=79(0x0000004f)
E: rijndael-cbc d4588e3a 204d0b17 21bf204e cbeee408 a89e94b6 a65e1295 14af2e34 eabf6362
A: hmac-sha1 51c3d07c 67b4f1dd 9962d162 f3aa44aa 78ccb5fb
seq=0x00000000 replay=0 flags=0x00000000 state=mature
created: Dec 24 21:48:33 2020 current: Dec 24 22:03:31 2020
diff: 898(s) hard: 3600(s) soft: 3585(s)
last: hard: 0(s) soft: 0(s)
current: 0(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 0 hard: 0 soft: 0
sadb_seq=51 pid=65019 refcnt=1
HQ2 HQ1
esp mode=tunnel spi=19908652(0x012fc82c) reqid=79(0x0000004f)
E: rijndael-cbc 97e7be21 891debeb 13ceddf3 a86b55a5 3988fd6b 5c602717 7530e83d 7b72bb03
A: hmac-sha1 cbc14ca3 63cf7cb1 523ee7ce 453f693d c594b040
seq=0x00000000 replay=0 flags=0x00000000 state=mature
created: Dec 24 21:36:22 2020 current: Dec 24 22:03:31 2020
diff: 1629(s) hard: 3600(s) soft: 3579(s)
last: hard: 0(s) soft: 0(s)
current: 0(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 0 hard: 0 soft: 0
sadb_seq=50 pid=65019 refcnt=1
HQ2 HQ1
esp mode=tunnel spi=254885991(0x0f314067) reqid=79(0x0000004f)
E: rijndael-cbc 2a944d23 aea728fb a70a27a7 0665f061 55d03006 445a3f97 9c0ab3aa 6a2dd3be
A: hmac-sha1 f83cf61f 8d38be26 fedbd605 e5a77406 f09bfe1b
seq=0x00000000 replay=0 flags=0x00000000 state=mature
created: Dec 24 21:12:54 2020 current: Dec 24 22:03:31 2020
diff: 3037(s) hard: 3600(s) soft: 3579(s)
last: hard: 0(s) soft: 0(s)
current: 0(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 0 hard: 0 soft: 0
sadb_seq=49 pid=65019 refcnt=1
HQ1 HQ2
esp mode=tunnel spi=3409704620(0xcb3bf6ac) reqid=79(0x0000004f)
E: rijndael-cbc 1b95ec94 a1db9fde 0f574717 bbe4397a 95bf5eab 739ceee7 650453be 682f3419
A: hmac-sha1 1ae109e4 8c4a5222 1e028f03 35088e29 d8183054
seq=0x00000000 replay=4 flags=0x00000000 state=mature
created: Dec 24 22:00:38 2020 current: Dec 24 22:03:31 2020
diff: 173(s) hard: 3600(s) soft: 3584(s)
last: hard: 0(s) soft: 0(s)
current: 0(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 0 hard: 0 soft: 0
sadb_seq=48 pid=65019 refcnt=1
HQ1 HQ2
esp mode=tunnel spi=3416480777(0xcba35c09) reqid=79(0x0000004f)
E: rijndael-cbc b6c7ac36 c45a6351 4af5f4fc ebdd6d24 f4ce4e32 2c492cd4 9fcf9c8b b874c7c1
A: hmac-sha1 411c9b98 e00a9e0f 0efef89b b241dcbc f258b122
seq=0x00000000 replay=4 flags=0x00000000 state=mature
created: Dec 24 21:53:52 2020 current: Dec 24 22:03:31 2020
diff: 579(s) hard: 3600(s) soft: 3582(s)
last: hard: 0(s) soft: 0(s)
current: 0(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 0 hard: 0 soft: 0
sadb_seq=47 pid=65019 refcnt=1
HQ1 HQ2
esp mode=tunnel spi=3427334997(0xcc48fb55) reqid=79(0x0000004f)
E: rijndael-cbc eda58416 5375f1da f61f88e8 b642f8ce b5a3c938 49fecb0d b93b48f5 f94f180c
A: hmac-sha1 831b07cd 45e77174 2eaed06b 2f23fdd5 9de430f7
seq=0x00000000 replay=4 flags=0x00000000 state=mature
created: Dec 24 21:48:33 2020 current: Dec 24 22:03:31 2020
diff: 898(s) hard: 3600(s) soft: 3585(s)
last: hard: 0(s) soft: 0(s)
current: 0(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 0 hard: 0 soft: 0
sadb_seq=46 pid=65019 refcnt=1
HQ1 HQ2
esp mode=tunnel spi=3334325250(0xc6bdc402) reqid=79(0x0000004f)
E: rijndael-cbc 68cfbd0e 8de7f199 89ce3061 56960074 84c50c25 2c6e1912 365ff3d0 d6b213f9
A: hmac-sha1 cf0111fa ffa65162 75027035 5beb2155 fc84f6a6
seq=0x00000000 replay=4 flags=0x00000000 state=mature
created: Dec 24 21:36:22 2020 current: Dec 24 22:03:31 2020
diff: 1629(s) hard: 3600(s) soft: 3589(s)
last: hard: 0(s) soft: 0(s)
current: 0(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 0 hard: 0 soft: 0
sadb_seq=45 pid=65019 refcnt=1
HQ1 HQ2
esp mode=tunnel spi=3238978861(0xc10ee52d) reqid=79(0x0000004f)
E: rijndael-cbc 946f8ee3 3ed9e030 04776c61 608542d6 34b0b81d ce8cb4e3 844d161e 88545316
A: hmac-sha1 5a838db1 f8714dd9 73ee4503 ca2ea3fd 9c182b82
seq=0x00000000 replay=4 flags=0x00000000 state=mature
created: Dec 24 21:12:54 2020 current: Dec 24 22:03:31 2020
diff: 3037(s) hard: 3600(s) soft: 3587(s)
last: hard: 0(s) soft: 0(s)
current: 0(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 0 hard: 0 soft: 0
sadb_seq=44 pid=65019 refcnt=1
HQ2 HQ1
esp mode=tunnel spi=15244991(0x00e89ebf) reqid=58(0x0000003a)
E: rijndael-cbc 5283f7e6 4f4b571e 7e3f2b82 9baaf1e6 b98b98ad 8f305b03 61f8ccd6 6356d4fb
A: hmac-sha1 55ac3b41 7e85e5d5 5bde5c55 1584d9eb a788be6c
seq=0x00000000 replay=0 flags=0x00000000 state=mature
created: Dec 24 22:01:48 2020 current: Dec 24 22:03:31 2020
diff: 103(s) hard: 3600(s) soft: 3579(s)
last: hard: 0(s) soft: 0(s)
current: 0(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 0 hard: 0 soft: 0
sadb_seq=43 pid=65019 refcnt=1
HQ2 HQ1
esp mode=tunnel spi=234976296(0x0e017428) reqid=58(0x0000003a)
E: rijndael-cbc ab517934 e903b97e b6c9ea9b f7fb0985 6dfa689a debc3ca3 c73a0130 a05a124f
A: hmac-sha1 5c518cfc 3d67def3 81cb03ef bdf2fbf9 1e1382e3
seq=0x00000000 replay=0 flags=0x00000000 state=mature
created: Dec 24 21:45:58 2020 current: Dec 24 22:03:31 2020
diff: 1053(s) hard: 3600(s) soft: 3579(s)
last: hard: 0(s) soft: 0(s)
current: 0(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 0 hard: 0 soft: 0
sadb_seq=42 pid=65019 refcnt=1
HQ2 HQ1
esp mode=tunnel spi=189044906(0x0b4498aa) reqid=58(0x0000003a)
E: rijndael-cbc 96e3c2a6 d0a365bc 3190a2a5 b084baaa 2c4be94b 6afae290 bdafcb14 fe01e510
A: hmac-sha1 d3590dbc 05c13cde 5bfa721f a1e59b28 dd18d030
seq=0x00000000 replay=0 flags=0x00000000 state=mature
created: Dec 24 21:19:38 2020 current: Dec 24 22:03:31 2020
diff: 2633(s) hard: 3600(s) soft: 3588(s)
last: hard: 0(s) soft: 0(s)
current: 0(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 0 hard: 0 soft: 0
sadb_seq=41 pid=65019 refcnt=1
HQ1 HQ2
esp mode=tunnel spi=3371313563(0xc8f2299b) reqid=58(0x0000003a)
E: rijndael-cbc 44b44c95 285f40f8 0c1fb1bb 6eeb008c f13faf7c e4469daa ae79fd3f 2570df78
A: hmac-sha1 f1686b31 5c41abcf 728a6378 2b910418 4ad6a83c
seq=0x00000000 replay=4 flags=0x00000000 state=mature
created: Dec 24 22:01:48 2020 current: Dec 24 22:03:31 2020
diff: 103(s) hard: 3600(s) soft: 3587(s)
last: hard: 0(s) soft: 0(s)
current: 0(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 0 hard: 0 soft: 0
sadb_seq=40 pid=65019 refcnt=1
HQ1 HQ2
esp mode=tunnel spi=3410313727(0xcb4541ff) reqid=58(0x0000003a)
E: rijndael-cbc 7e182ca9 cf803578 4704a15c 4d24dc53 7573e608 44446205 8d5f285d b4de2822
A: hmac-sha1 f402edfe ea3447c9 c112ba14 df7328a3 249086ce
seq=0x00000000 replay=4 flags=0x00000000 state=mature
created: Dec 24 21:45:58 2020 current: Dec 24 22:03:31 2020
diff: 1053(s) hard: 3600(s) soft: 3581(s)
last: hard: 0(s) soft: 0(s)
current: 0(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 0 hard: 0 soft: 0
sadb_seq=39 pid=65019 refcnt=1
HQ1 HQ2
esp mode=tunnel spi=3295745067(0xc471142b) reqid=58(0x0000003a)
E: rijndael-cbc a74a4d8d 34ab4846 dc619a83 264988a7 cdd55164 c42f773d dc646518 23701cb2
A: hmac-sha1 04ce0ce6 cc919ed1 6d11bc8e 7666fc91 cc10c016
seq=0x00000000 replay=4 flags=0x00000000 state=mature
created: Dec 24 21:19:38 2020 current: Dec 24 22:03:31 2020
diff: 2633(s) hard: 3600(s) soft: 3581(s)
last: hard: 0(s) soft: 0(s)
current: 0(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 0 hard: 0 soft: 0
sadb_seq=38 pid=65019 refcnt=1
HQ2 HQ1
esp mode=tunnel spi=54996732(0x03472efc) reqid=25(0x00000019)
E: rijndael-cbc e8e42a31 aa695dcd 4d255fa6 6355e074 387a816e bad78bbf 3947dec9 274801bf
A: hmac-sha1 bba93625 6aeab4ad 95b8805e f287a5b9 292a243d
seq=0x00000064 replay=0 flags=0x00000000 state=mature
created: Dec 24 22:01:21 2020 current: Dec 24 22:03:31 2020
diff: 130(s) hard: 3600(s) soft: 3583(s)
last: Dec 24 22:01:22 2020 hard: 0(s) soft: 0(s)
current: 15200(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 100 hard: 0 soft: 0
sadb_seq=37 pid=65019 refcnt=1
HQ2 HQ1
esp mode=tunnel spi=160804156(0x0995ad3c) reqid=25(0x00000019)
E: rijndael-cbc d336a553 73439fd4 6ae70c44 763f693b bb3e7645 c6533248 a34838e7 43f86ddc
A: hmac-sha1 383ef500 e5f3fbb5 738e2151 8b129486 e0447dd9
seq=0x00000140 replay=0 flags=0x00000000 state=mature
created: Dec 24 21:54:17 2020 current: Dec 24 22:03:31 2020
diff: 554(s) hard: 3600(s) soft: 3583(s)
last: Dec 24 21:54:17 2020 hard: 0(s) soft: 0(s)
current: 48640(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 320 hard: 0 soft: 0
sadb_seq=36 pid=65019 refcnt=1
HQ2 HQ1
esp mode=tunnel spi=116748749(0x06f571cd) reqid=25(0x00000019)
E: rijndael-cbc a42271e7 836b4531 1898f6fb 464f937f 408a434d b1b10f42 9556d764 de7ba6f0
A: hmac-sha1 ffedee7a eae5e271 d5f39b56 0799bd80 94042d79
seq=0x0000013b replay=0 flags=0x00000000 state=mature
created: Dec 24 21:47:16 2020 current: Dec 24 22:03:31 2020
diff: 975(s) hard: 3600(s) soft: 3586(s)
last: Dec 24 21:47:17 2020 hard: 0(s) soft: 0(s)
current: 47880(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 315 hard: 0 soft: 0
sadb_seq=35 pid=65019 refcnt=1
HQ2 HQ1
esp mode=tunnel spi=49302150(0x02f04a86) reqid=25(0x00000019)
E: rijndael-cbc 86718e88 35609f47 76c0dc0f 7b8b7558 786d3611 beeaa320 4cf61a40 a07da1c6
A: hmac-sha1 f3b4d537 a8d1044e 8b305b53 4e983fa9 e79528f4
seq=0x000005e6 replay=0 flags=0x00000000 state=mature
created: Dec 24 21:13:56 2020 current: Dec 24 22:03:31 2020
diff: 2975(s) hard: 3600(s) soft: 3586(s)
last: Dec 24 21:13:56 2020 hard: 0(s) soft: 0(s)
current: 229520(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 1510 hard: 0 soft: 0
sadb_seq=34 pid=65019 refcnt=1
HQ1 HQ2
esp mode=tunnel spi=3486512649(0xcfcff609) reqid=25(0x00000019)
E: rijndael-cbc 206942d7 6d5a6196 715b483e e75e952f acf5ee3a fee8a562 1884d7d8 c44f0124
A: hmac-sha1 0813209e 63f6c4d2 ccd6d938 037b5e2f a8630eb5
seq=0x00000000 replay=4 flags=0x00000000 state=mature
created: Dec 24 22:01:21 2020 current: Dec 24 22:03:31 2020
diff: 130(s) hard: 3600(s) soft: 3583(s)
last: hard: 0(s) soft: 0(s)
current: 0(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 0 hard: 0 soft: 0
sadb_seq=33 pid=65019 refcnt=1
HQ1 HQ2
esp mode=tunnel spi=3277388473(0xc358fab9) reqid=25(0x00000019)
E: rijndael-cbc c8f543d2 474a9c8d 0991bf2b 5ae32e1e 2af18218 abd26691 0e4932b6 7be23ef1
A: hmac-sha1 e5be2746 91d17af6 c479d0c1 0333ce60 1ddec481
seq=0x00000000 replay=4 flags=0x00000000 state=mature
created: Dec 24 21:54:17 2020 current: Dec 24 22:03:31 2020
diff: 554(s) hard: 3600(s) soft: 3588(s)
last: hard: 0(s) soft: 0(s)
current: 0(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 0 hard: 0 soft: 0
sadb_seq=32 pid=65019 refcnt=1
HQ1 HQ2
esp mode=tunnel spi=3360234241(0xc8491b01) reqid=25(0x00000019)
E: rijndael-cbc 58e1663f f462c931 3f6b1ea1 ddc34267 7236c9b4 4aa81ae6 4c816147 578a0f42
A: hmac-sha1 72f4e0c1 6baa796e df578ca4 e4f86415 bc4afbbe
seq=0x00000000 replay=4 flags=0x00000000 state=mature
created: Dec 24 21:47:16 2020 current: Dec 24 22:03:31 2020
diff: 975(s) hard: 3600(s) soft: 3579(s)
last: hard: 0(s) soft: 0(s)
current: 0(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 0 hard: 0 soft: 0
sadb_seq=31 pid=65019 refcnt=1
HQ1 HQ2
esp mode=tunnel spi=3442901187(0xcd3680c3) reqid=25(0x00000019)
E: rijndael-cbc e0c968a6 257ea9f1 0be5546b 946ce7a6 76827da2 2b69d751 168cb2ae dfc06991
A: hmac-sha1 2d03e453 6e0645e6 f14209ea 32d6f1c8 fe23c5a3
seq=0x00000000 replay=4 flags=0x00000000 state=mature
created: Dec 24 21:13:56 2020 current: Dec 24 22:03:31 2020
diff: 2975(s) hard: 3600(s) soft: 3581(s)
last: hard: 0(s) soft: 0(s)
current: 0(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 0 hard: 0 soft: 0
sadb_seq=30 pid=65019 refcnt=1
HQ2 HQ1
esp mode=tunnel spi=90389729(0x05633ce1) reqid=18(0x00000012)
E: rijndael-cbc cc7f0af8 176e42d6 e522cead 1e0b5817 02cc7d95 104887a4 25cd882d 31d9ed35
A: hmac-sha1 b99535a7 faf72965 14131575 efd192df ff12d49b
seq=0x0000000e replay=0 flags=0x00000000 state=mature
created: Dec 24 22:02:22 2020 current: Dec 24 22:03:31 2020
diff: 69(s) hard: 3600(s) soft: 3589(s)
last: Dec 24 22:02:24 2020 hard: 0(s) soft: 0(s)
current: 2352(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 14 hard: 0 soft: 0
sadb_seq=29 pid=65019 refcnt=1
HQ2 HQ1
esp mode=tunnel spi=262872706(0x0fab1e82) reqid=18(0x00000012)
E: rijndael-cbc cb6cc782 907b6f56 551a4cb5 f5719410 558acb6d e8b71956 99160264 37e46ed0
A: hmac-sha1 e0994b0b c302fd79 3fa3571d 2d098daf dcd3341c
seq=0x00000062 replay=0 flags=0x00000000 state=mature
created: Dec 24 21:53:46 2020 current: Dec 24 22:03:31 2020
diff: 585(s) hard: 3600(s) soft: 3587(s)
last: Dec 24 21:53:52 2020 hard: 0(s) soft: 0(s)
current: 16464(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 98 hard: 0 soft: 0
sadb_seq=28 pid=65019 refcnt=1
HQ2 HQ1
esp mode=tunnel spi=196082408(0x0baffae8) reqid=18(0x00000012)
E: rijndael-cbc f7aba988 55f2b005 ca80f9f3 021f8589 aa7bf3a4 63530758 f708bd5b c645390d
A: hmac-sha1 e695b69c 4743570c de655435 2c505692 98eddc7c
seq=0x0000003c replay=0 flags=0x00000000 state=mature
created: Dec 24 21:48:31 2020 current: Dec 24 22:03:31 2020
diff: 900(s) hard: 3600(s) soft: 3587(s)
last: Dec 24 21:48:39 2020 hard: 0(s) soft: 0(s)
current: 10080(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 60 hard: 0 soft: 0
sadb_seq=27 pid=65019 refcnt=1
HQ2 HQ1
esp mode=tunnel spi=33623083(0x02010c2b) reqid=18(0x00000012)
E: rijndael-cbc b1a13bbf f9b61c01 c406608e 634b8a8a 67f741d5 fff9eb11 cb128b40 5b380e54
A: hmac-sha1 1626f6fd 8df02e81 5de96bac d86ff7d5 8f60db5e
seq=0x000001b5 replay=0 flags=0x00000000 state=mature
created: Dec 24 21:12:22 2020 current: Dec 24 22:03:31 2020
diff: 3069(s) hard: 3600(s) soft: 3581(s)
last: Dec 24 21:12:27 2020 hard: 0(s) soft: 0(s)
current: 72600(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 437 hard: 0 soft: 0
sadb_seq=26 pid=65019 refcnt=1
HQ1 HQ2
esp mode=tunnel spi=3450316315(0xcda7a61b) reqid=18(0x00000012)
E: rijndael-cbc c7d768d2 8cbdf398 3328fecf 53b33c8c d4ac4730 c3f33b29 c1ea19a2 10cf8de0
A: hmac-sha1 d1df22aa 4524f4fd d83f8e25 099d895d 7aee10db
seq=0x00000000 replay=4 flags=0x00000000 state=mature
created: Dec 24 22:02:22 2020 current: Dec 24 22:03:31 2020
diff: 69(s) hard: 3600(s) soft: 3580(s)
last: Dec 24 22:02:24 2020 hard: 0(s) soft: 0(s)
current: 957(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 8 hard: 0 soft: 0
sadb_seq=25 pid=65019 refcnt=1
HQ1 HQ2
esp mode=tunnel spi=3295603338(0xc46eea8a) reqid=18(0x00000012)
E: rijndael-cbc 1d56c65f a93369e5 1294d00a 7bfeb235 172060ae 220aced5 ada1d57e 36e8038f
A: hmac-sha1 62397368 7d90765e 29d8d60a 970084af 2d972e34
seq=0x00000000 replay=4 flags=0x00000000 state=mature
created: Dec 24 21:53:46 2020 current: Dec 24 22:03:31 2020
diff: 585(s) hard: 3600(s) soft: 3586(s)
last: Dec 24 21:53:52 2020 hard: 0(s) soft: 0(s)
current: 6579(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 53 hard: 0 soft: 0
sadb_seq=24 pid=65019 refcnt=1
HQ1 HQ2
esp mode=tunnel spi=3378150255(0xc95a7b6f) reqid=18(0x00000012)
E: rijndael-cbc 6dab7c7b 195805fc 58c80467 5be6bb12 d8ce7fac b11f9082 d9e9eb51 a2f677d9
A: hmac-sha1 d413c7e0 e456a2c9 6d20872a 1654b6e6 8a41b1e7
seq=0x00000000 replay=4 flags=0x00000000 state=mature
created: Dec 24 21:48:31 2020 current: Dec 24 22:03:31 2020
diff: 900(s) hard: 3600(s) soft: 3586(s)
last: Dec 24 21:48:39 2020 hard: 0(s) soft: 0(s)
current: 4010(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 32 hard: 0 soft: 0
sadb_seq=23 pid=65019 refcnt=1
HQ1 HQ2
esp mode=tunnel spi=3266135825(0xc2ad4711) reqid=18(0x00000012)
E: rijndael-cbc 94d0ef7a ed801680 709ab923 f83751b6 f78bbad9 cccb4f62 0c23be36 1431eb2a
A: hmac-sha1 60a3241e b33cac0b e4247f0a dcd631da 285ccc61
seq=0x00000000 replay=4 flags=0x00000000 state=mature
created: Dec 24 21:12:22 2020 current: Dec 24 22:03:31 2020
diff: 3069(s) hard: 3600(s) soft: 3581(s)
last: Dec 24 21:12:27 2020 hard: 0(s) soft: 0(s)
current: 34191(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 246 hard: 0 soft: 0
sadb_seq=22 pid=65019 refcnt=1
HQ2 HQ1
esp mode=tunnel spi=211798274(0x0c9fc902) reqid=37(0x00000025)
E: rijndael-cbc bfb98d12 8511db8f 1ab13de9 20e60d53 30a3b597 10a8cee2 b4cd8b32 6395dc4d
A: hmac-sha1 cb86691f f5874bc9 0edbbfa2 40f8996d 0d5a253c
seq=0x000002b1 replay=0 flags=0x00000000 state=mature
created: Dec 24 21:46:08 2020 current: Dec 24 22:03:31 2020
diff: 1043(s) hard: 3600(s) soft: 3587(s)
last: Dec 24 21:46:08 2020 hard: 0(s) soft: 0(s)
current: 71656(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 689 hard: 0 soft: 0
sadb_seq=21 pid=65019 refcnt=1
HQ2 HQ1
esp mode=tunnel spi=200764208(0x0bf76b30) reqid=37(0x00000025)
E: rijndael-cbc 2f0bc352 add8328d 5c758d00 572a0715 1f5536c0 500e7067 50f3d2b9 265c1fa9
A: hmac-sha1 72712c47 3d9abaad 0022f83f b5884316 2fc89555
seq=0x00000159 replay=0 flags=0x00000000 state=mature
created: Dec 24 21:37:41 2020 current: Dec 24 22:03:31 2020
diff: 1550(s) hard: 3600(s) soft: 3579(s)
last: Dec 24 21:37:41 2020 hard: 0(s) soft: 0(s)
current: 35880(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 345 hard: 0 soft: 0
sadb_seq=20 pid=65019 refcnt=1
HQ2 HQ1
esp mode=tunnel spi=162404294(0x09ae17c6) reqid=37(0x00000025)
E: rijndael-cbc 1b34d48a e28cd14f 8441cae3 316c8fe3 c91d7b37 6b2ac096 d54f9d7d 3456f85a
A: hmac-sha1 9345cdca d16bb418 10fae9f2 4e073f3e 304289b0
seq=0x00000335 replay=0 flags=0x00000000 state=mature
created: Dec 24 21:17:26 2020 current: Dec 24 22:03:31 2020
diff: 2765(s) hard: 3600(s) soft: 3585(s)
last: Dec 24 21:17:26 2020 hard: 0(s) soft: 0(s)
current: 85384(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 821 hard: 0 soft: 0
sadb_seq=19 pid=65019 refcnt=1
HQ1 HQ2
esp mode=tunnel spi=3484264983(0xcfadaa17) reqid=37(0x00000025)
E: rijndael-cbc 2ea00f57 290814bb 087e0244 f68a94ae 3ab442a1 f22f9e1a 02efc501 54d13fe3
A: hmac-sha1 7f44f856 477146d4 9ecf2e1b b20b1019 015b5a65
seq=0x00000000 replay=4 flags=0x00000000 state=mature
created: Dec 24 21:46:08 2020 current: Dec 24 22:03:31 2020
diff: 1043(s) hard: 3600(s) soft: 3579(s)
last: Dec 24 21:46:08 2020 hard: 0(s) soft: 0(s)
current: 59220(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 690 hard: 0 soft: 0
sadb_seq=18 pid=65019 refcnt=1
HQ1 HQ2
esp mode=tunnel spi=3253001901(0xc1e4dead) reqid=37(0x00000025)
E: rijndael-cbc 3c21b35d 850af546 d04fb9d0 be9d8d32 8ecc860b 4a39be08 fc3d638e c63ebb38
A: hmac-sha1 3f6c4e95 18384338 7c8a54e5 6e641c10 1ede9670
seq=0x00000000 replay=4 flags=0x00000000 state=mature
created: Dec 24 21:37:41 2020 current: Dec 24 22:03:31 2020
diff: 1550(s) hard: 3600(s) soft: 3586(s)
last: Dec 24 21:37:41 2020 hard: 0(s) soft: 0(s)
current: 29621(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 344 hard: 0 soft: 0
sadb_seq=17 pid=65019 refcnt=1
HQ1 HQ2
esp mode=tunnel spi=3358597903(0xc830230f) reqid=37(0x00000025)
E: rijndael-cbc e7366fa1 c41d949d 6afea0df 79c13495 ec370b63 9ecbc7da 944adf7c a1dbe146
A: hmac-sha1 b45167f7 6f32d773 b8ee0f16 9dc1e2e9 971839bf
seq=0x00000000 replay=4 flags=0x00000000 state=mature
created: Dec 24 21:17:26 2020 current: Dec 24 22:03:31 2020
diff: 2765(s) hard: 3600(s) soft: 3585(s)
last: Dec 24 21:17:27 2020 hard: 0(s) soft: 0(s)
current: 70580(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 821 hard: 0 soft: 0
sadb_seq=16 pid=65019 refcnt=1
HQ2 HQ1
esp mode=tunnel spi=3159326(0x0030351e) reqid=36(0x00000024)
E: rijndael-cbc b14c34e4 cbfcdbd5 df7be653 9a28b649 ca7e3718 f5d469cf c3ed1a26 89cc5697
A: hmac-sha1 67017315 5f180dc3 2297e1da fd522271 a52437a7
seq=0x00000000 replay=0 flags=0x00000000 state=mature
created: Dec 24 21:44:53 2020 current: Dec 24 22:03:31 2020
diff: 1118(s) hard: 3600(s) soft: 3581(s)
last: hard: 0(s) soft: 0(s)
current: 0(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 0 hard: 0 soft: 0
sadb_seq=15 pid=65019 refcnt=1
HQ2 HQ1
esp mode=tunnel spi=183273677(0x0aec88cd) reqid=36(0x00000024)
E: rijndael-cbc 81a14a2a 67617d60 64fc635d 3bd9ea34 28f5578d eda07e80 1ad2c60c bed0a64d
A: hmac-sha1 bc24d876 d494f4a6 e7bdad87 5213d213 e8793ee4
seq=0x00000000 replay=0 flags=0x00000000 state=mature
created: Dec 24 21:38:01 2020 current: Dec 24 22:03:31 2020
diff: 1530(s) hard: 3600(s) soft: 3582(s)
last: hard: 0(s) soft: 0(s)
current: 0(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 0 hard: 0 soft: 0
sadb_seq=14 pid=65019 refcnt=1
HQ2 HQ1
esp mode=tunnel spi=188512606(0x0b3c795e) reqid=36(0x00000024)
E: rijndael-cbc ffef98d9 5a795c8a 3b23a943 9046114b 0d2dd620 100f5611 fa3690c1 4a57fd7f
A: hmac-sha1 d94fc47c 6e104bfb ce8bd219 0ae45c14 269f9acc
seq=0x00000000 replay=0 flags=0x00000000 state=mature
created: Dec 24 21:19:24 2020 current: Dec 24 22:03:31 2020
diff: 2647(s) hard: 3600(s) soft: 3579(s)
last: hard: 0(s) soft: 0(s)
current: 0(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 0 hard: 0 soft: 0
sadb_seq=13 pid=65019 refcnt=1
HQ1 HQ2
esp mode=tunnel spi=3242791289(0xc1491179) reqid=36(0x00000024)
E: rijndael-cbc 023e15cc f0676572 ecbf8f1b 72b4b0f6 3d365c7d 47f2730b 297f1cd2 187bcf17
A: hmac-sha1 4ecdbda2 7dc997ca 21f9d125 7e9a8213 0dfaf008
seq=0x00000000 replay=4 flags=0x00000000 state=mature
created: Dec 24 21:44:53 2020 current: Dec 24 22:03:31 2020
diff: 1118(s) hard: 3600(s) soft: 3579(s)
last: hard: 0(s) soft: 0(s)
current: 0(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 0 hard: 0 soft: 0
sadb_seq=12 pid=65019 refcnt=1
HQ1 HQ2
esp mode=tunnel spi=3416645044(0xcba5ddb4) reqid=36(0x00000024)
E: rijndael-cbc d9da1159 039254da bd3f660a aeeda6c6 315cf30d 96d88ded 72ab3ee9 afb004da
A: hmac-sha1 77e3ed70 0889aa1c cd474fd2 c0aa934f 2515ea22
seq=0x00000000 replay=4 flags=0x00000000 state=mature
created: Dec 24 21:38:01 2020 current: Dec 24 22:03:31 2020
diff: 1530(s) hard: 3600(s) soft: 3584(s)
last: hard: 0(s) soft: 0(s)
current: 0(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 0 hard: 0 soft: 0
sadb_seq=11 pid=65019 refcnt=1
HQ1 HQ2
esp mode=tunnel spi=3275300612(0xc3391f04) reqid=36(0x00000024)
E: rijndael-cbc 45efafcd 09b1a615 79bd2a95 0955eca6 48f633fa dae46530 52a0e3af 0f75bcf9
A: hmac-sha1 49ec1545 47702fd1 70f2e18b 0356edf8 4d76e5ea
seq=0x00000000 replay=4 flags=0x00000000 state=mature
created: Dec 24 21:19:24 2020 current: Dec 24 22:03:31 2020
diff: 2647(s) hard: 3600(s) soft: 3583(s)
last: hard: 0(s) soft: 0(s)
current: 0(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 0 hard: 0 soft: 0
sadb_seq=10 pid=65019 refcnt=1
HQ2 HQ1
esp mode=tunnel spi=11914222(0x00b5cbee) reqid=34(0x00000022)
E: rijndael-cbc 45d9fa43 84bf2cf0 f9b9301d 037e66e0 efc93f00 003385f2 e9264153 35e50a7b
A: hmac-sha1 bff66e36 3ad97dbd 6e93d57e 449affdb 0a628eda
seq=0x00000458 replay=0 flags=0x00000000 state=mature
created: Dec 24 21:40:11 2020 current: Dec 24 22:03:31 2020
diff: 1400(s) hard: 3600(s) soft: 3580(s)
last: Dec 24 21:40:19 2020 hard: 0(s) soft: 0(s)
current: 279184(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 1112 hard: 0 soft: 0
sadb_seq=9 pid=65019 refcnt=1
HQ2 HQ1
esp mode=tunnel spi=30477431(0x01d10c77) reqid=34(0x00000022)
E: rijndael-cbc 01ed3749 2c6bd3b0 6175355c 9fdb0cc6 8b0ff5b5 76b39b81 6dc403b3 2275938f
A: hmac-sha1 0dc4ce73 525db503 6b49f5be c64d7967 42b12c46
seq=0x00000076 replay=0 flags=0x00000000 state=mature
created: Dec 24 21:37:55 2020 current: Dec 24 22:03:31 2020
diff: 1536(s) hard: 3600(s) soft: 3587(s)
last: Dec 24 21:37:58 2020 hard: 0(s) soft: 0(s)
current: 29952(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 118 hard: 0 soft: 0
sadb_seq=8 pid=65019 refcnt=1
HQ2 HQ1
esp mode=tunnel spi=118553440(0x0710fb60) reqid=34(0x00000022)
E: rijndael-cbc 6ba99726 bd478d78 f7935a01 e9def5bb 75a69aef d647496c 66d755f2 533d8d08
A: hmac-sha1 e31d94ea 2f86154b d3b81780 3fc5c5f4 2541e008
seq=0x000003c2 replay=0 flags=0x00000000 state=mature
created: Dec 24 21:17:46 2020 current: Dec 24 22:03:31 2020
diff: 2745(s) hard: 3600(s) soft: 3587(s)
last: Dec 24 21:17:50 2020 hard: 0(s) soft: 0(s)
current: 241488(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 962 hard: 0 soft: 0
sadb_seq=7 pid=65019 refcnt=1
HQ1 HQ2
esp mode=tunnel spi=3280329269(0xc385da35) reqid=34(0x00000022)
E: rijndael-cbc 4af4d631 8179b7b8 567de1cf 5d330073 cb112247 c43f6b4d 8eb72743 61a1910a
A: hmac-sha1 6b196be4 cc59691a 91574952 627e272b 21f0ae19
seq=0x00000000 replay=4 flags=0x00000000 state=mature
created: Dec 24 21:40:11 2020 current: Dec 24 22:03:31 2020
diff: 1400(s) hard: 3600(s) soft: 3586(s)
last: Dec 24 21:40:19 2020 hard: 0(s) soft: 0(s)
current: 104235(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 742 hard: 0 soft: 0
sadb_seq=6 pid=65019 refcnt=1
HQ1 HQ2
esp mode=tunnel spi=3351937984(0xc7ca83c0) reqid=34(0x00000022)
E: rijndael-cbc 0c7cefe7 1fb9978f 4831b0a4 b36722d9 49e0edb4 13a04067 85d286b1 12efba94
A: hmac-sha1 94b51112 274267c3 9634cd67 ab68fe9f 98bc45e1
seq=0x00000000 replay=4 flags=0x00000000 state=mature
created: Dec 24 21:37:55 2020 current: Dec 24 22:03:31 2020
diff: 1536(s) hard: 3600(s) soft: 3588(s)
last: Dec 24 21:37:58 2020 hard: 0(s) soft: 0(s)
current: 11180(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 78 hard: 0 soft: 0
sadb_seq=5 pid=65019 refcnt=1
HQ1 HQ2
esp mode=tunnel spi=3392979548(0xca3cc25c) reqid=34(0x00000022)
E: rijndael-cbc 4c520ca3 bc7ac3e4 adafd01a a9a4e309 df6a76dd 9ed15ee2 c975358d ea79292c
A: hmac-sha1 6d1ad8eb 59511cda 6a6c1df3 f7c814fa 1a27c0d6
seq=0x00000000 replay=4 flags=0x00000000 state=mature
created: Dec 24 21:17:46 2020 current: Dec 24 22:03:31 2020
diff: 2745(s) hard: 3600(s) soft: 3584(s)
last: Dec 24 21:17:50 2020 hard: 0(s) soft: 0(s)
current: 90200(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 643 hard: 0 soft: 0
sadb_seq=4 pid=65019 refcnt=1
HQ2 HQ1
esp mode=tunnel spi=234261298(0x0df68b32) reqid=3(0x00000003)
E: rijndael-cbc 4e3b34ac 9dfed62a ef30151e ded19008 29d0b855 c1d56fa3 6f34c50b 137265cd
A: hmac-sha1 3548ed38 fd778a41 a856daa4 77855306 b40ff427
seq=0x000058cd replay=0 flags=0x00000000 state=mature
created: Dec 24 21:55:45 2020 current: Dec 24 22:03:31 2020
diff: 466(s) hard: 3600(s) soft: 3586(s)
last: Dec 24 21:55:45 2020 hard: 0(s) soft: 0(s)
current: 9857128(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 22733 hard: 0 soft: 0
sadb_seq=3 pid=65019 refcnt=1
HQ2 HQ1
esp mode=tunnel spi=264750853(0x0fc7c705) reqid=3(0x00000003)
E: rijndael-cbc ab8cf3b1 06ad335e 93ab90c6 14b4b6c6 4f64fb8a b7828ee0 ac3bbd82 58289a68
A: hmac-sha1 995b130b d2a30f77 2128b957 1f901724 e8f103f4
seq=0x0001d2f8 replay=0 flags=0x00000000 state=mature
created: Dec 24 21:12:38 2020 current: Dec 24 22:03:31 2020
diff: 3053(s) hard: 3600(s) soft: 3580(s)
last: Dec 24 21:12:38 2020 hard: 0(s) soft: 0(s)
current: 45426144(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 119544 hard: 0 soft: 0
sadb_seq=2 pid=65019 refcnt=1
HQ1 HQ2
esp mode=tunnel spi=3322104549(0xc6034ae5) reqid=3(0x00000003)
E: rijndael-cbc 9e7efb6c d33841e4 2061e1a5 e39919d4 b6f081eb 1d6174b4 06722b16 dda503dd
A: hmac-sha1 b94c24a6 5fdce859 817d419b 17cbfd7e 03c53e78
seq=0x00000000 replay=4 flags=0x00000000 state=mature
created: Dec 24 21:55:45 2020 current: Dec 24 22:03:31 2020
diff: 466(s) hard: 3600(s) soft: 3585(s)
last: Dec 24 21:55:45 2020 hard: 0(s) soft: 0(s)
current: 1868542(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 22712 hard: 0 soft: 0
sadb_seq=1 pid=65019 refcnt=1
HQ1 HQ2
esp mode=tunnel spi=3365680657(0xc89c3611) reqid=3(0x00000003)
E: rijndael-cbc 298f22ec f854490c 587dc067 bbcf5c8c 200e9871 5add2265 0adf8004 0fd31662
A: hmac-sha1 6252462c 9fbf475e a2fc7cdb f19c90e2 94540ce5
seq=0x00000000 replay=4 flags=0x00000000 state=mature
created: Dec 24 21:12:38 2020 current: Dec 24 22:03:31 2020
diff: 3053(s) hard: 3600(s) soft: 3588(s)
last: Dec 24 21:12:38 2020 hard: 0(s) soft: 0(s)
current: 9597881(bytes) hard: 0(bytes) soft: 0(bytes)
allocated: 120641 hard: 0 soft: 0
sadb_seq=0 pid=65019 refcnt=1
sindy
December 25, 2020, 5:44pm
35
Great, now use this command on the pfsense and /ip ipsec installed-sa print on the Mikrotik almost simultaneously (few seconds of difference usually do not matter).
Once do that while everything works OK, to see what to compare, and then again while the issue exists.
While the issue exists, I assume that the encryption and/or authentication keys will differ between the devices for SAs with the same SPI value.