This is probably not the correct interpretation of this error.
The Win32 error above is more likely to indicate the actual problem.
Flags
Severity
Success
This code indicates success, rather than an error.
This may not be the correct interpretation of this code,
or possibly the program is handling errors incorrectly.
journalctl -b showed me log like this: something something somethng aaa: 0x00000111 bbb: 0x00000222 ccc: 0x00000333 ddd: 0x00000444 something something somethng How to get value of parameter 'ccc'? For example: journalctl -b | awk '/ccc:/{print $1}' showed first word, but I need to get first word after 'ccc': 0x00000333 read more
I would like to test my firewall configuration when IPsec traffic is received in my host and I also would like to know how to handle it (drop it at first). For testing reasons, I have deployed two containers (with ipv6 enabled) and then I am creating an ESP packet [...] read more