crazy-max / docker-fail2ban

Fail2ban Docker image
MIT License
638 stars 78 forks source link

Works Only at container startup #172

Open haroldcris opened 3 months ago

haroldcris commented 3 months ago

Support guidelines

I've found a bug and checked that ...

Description

I'm running mssql and fail2ban on same docker-compose file. Fail2ban does not automatically ban the ip address of failed login (after max3). But when you restart the fail2ban container, it reads the log file and performs the ban. then after startup, it just sits there.

Expected behaviour

Fail2ban should ban the Ip Address after [maxretry] failed attempt without restarting the container.

Actual behaviour

After [maxretry] failed attempt, fail2ban does NOT ban the ip address. You have to restart the fail2ban container for fail2ba to ban the ip address.

Steps to reproduce

  1. Run the docker compose up
  2. Try to login with invalid credential to mssql, 4 times.
  3. Nothing happen. It does not ban the IP. Check the fail2ban docker log,, endless loop of this log
    
    2024-07-02 06:28:40,866 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
    2024-07-02 06:28:42,866 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
    2024-07-02 06:28:42,866 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
    2024-07-02 06:28:43,366 fail2ban.transmitter    [1]: HEAVY   Command: ['ping']
4. But Restart the fail2ban container, it reads the log file and bans the Ip correctly.
5. then container is still running but same problem again.

### Docker info

```text
Client:
 Version:    26.1.4
 Context:    desktop-linux
 Debug Mode: false

 Operating System: Docker Desktop
 OSType: linux
 Architecture: x86_64
 CPUs: 12
 Total Memory: 15.54GiB
 Name: docker-desktop
 ID: 1d9d7978-3cc0-4081-90a9-64c47eaed3f2
 Docker Root Dir: /var/lib/docker
 Debug Mode: false
 HTTP Proxy: http.docker.internal:3128
 HTTPS Proxy: http.docker.internal:3128
 No Proxy: hubproxy.docker.internal
 Labels:
  com.docker.desktop.address=npipe://\\.\pipe\docker_cli
 Experimental: false
 Insecure Registries:
  hubproxy.docker.internal:5555
  127.0.0.0/8
 Live Restore Enabled: false

Docker Compose config

services:
  db1:
    image: mcr.microsoft.com/mssql/server:2019-latest
    container_name: MsSql2019
    #user: root
    environment:
      ACCEPT_EULA: "Y"      
      MSSQL_SA_PASSWORD: "password"
      TZ: Asia/Manila
    ports:
      - 1433:1433
    volumes:
      - ./mssql/log:/var/opt/mssql/log

  fail2ban:
    image: crazymax/fail2ban:latest
    container_name: fail2ban
    restart: always
    cap_add:
      - NET_ADMIN
      - NET_RAW
    volumes:
      - ./fail2ban/data:/data
      - ./fail2ban/log:/var/log:ro
      - ./mssql/log:/var/opt/mssql/log:ro,consistent
    depends_on:
      - db1      
    environment:
      TZ: "Asia/Manila"
    network_mode: "service:db1"

Logs

2024-07-01 23:18:18,844 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:18:20,845 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:18:20,845 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:18:22,846 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:18:22,846 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:18:25,847 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:18:25,847 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 0.8959541320800781 (default 2)
2024-07-01 23:18:26,979 fail2ban.transmitter    [1]: HEAVY   Command: ['ping']
2024-07-01 23:18:27,048 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:18:27,048 fail2ban.actions        [1]: NOTICE  [mssql-auth] Unban 172.30.0.1
2024-07-01 23:18:27,048 fail2ban.actions        [1]: DEBUG   [mssql-auth] action 'iptables-multiport': unban 172.30.0.1
2024-07-01 23:18:27,048 fail2ban.action         [1]: #09-Lev. iptables -D f2b-mssql -s 172.30.0.1 -j DROP
2024-07-01 23:18:27,051 fail2ban.utils          [1]: #09-Lev. 7f9b6b277c90 -- exec: iptables -D f2b-mssql -s 172.30.0.1 -j DROP
2024-07-01 23:18:27,052 fail2ban.utils          [1]: DEBUG   7f9b6b277c90 -- returned successfully 0
2024-07-01 23:18:27,052 fail2ban.actions        [1]: DEBUG   Unbanned 1, 0 ticket(s) in 'mssql-auth'
2024-07-01 23:18:27,052 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:18:29,052 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:18:29,052 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:18:31,053 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:18:31,053 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:18:33,054 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:18:33,054 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:18:35,055 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:18:35,055 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:18:37,056 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:18:37,056 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:18:37,068 fail2ban.transmitter    [1]: HEAVY   Command: ['ping']
2024-07-01 23:18:39,057 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:18:39,057 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:18:41,058 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:18:41,058 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:18:43,059 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:18:43,060 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:18:45,061 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:18:45,061 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:18:47,063 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:18:47,063 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:18:47,149 fail2ban.transmitter    [1]: HEAVY   Command: ['ping']
2024-07-01 23:18:49,064 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:18:49,064 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:18:51,065 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:18:51,065 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:18:53,066 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:18:53,066 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:18:55,067 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:18:55,067 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:18:57,068 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:18:57,068 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:18:57,229 fail2ban.transmitter    [1]: HEAVY   Command: ['ping']
2024-07-01 23:18:59,069 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:18:59,069 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:19:01,070 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:19:01,070 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:19:03,071 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:19:03,071 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:19:05,072 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:19:05,072 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:19:07,073 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:19:07,073 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:19:07,320 fail2ban.transmitter    [1]: HEAVY   Command: ['ping']
2024-07-01 23:19:09,074 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:19:09,074 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:19:11,075 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:19:11,075 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:19:13,076 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:19:13,076 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:19:15,077 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:19:15,077 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:19:17,078 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:19:17,078 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:19:17,409 fail2ban.transmitter    [1]: HEAVY   Command: ['ping']
2024-07-01 23:19:19,079 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:19:19,079 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:19:21,081 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:19:21,081 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:19:23,082 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:19:23,082 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:19:25,082 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:19:25,083 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:19:27,084 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:19:27,084 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:19:27,490 fail2ban.transmitter    [1]: HEAVY   Command: ['ping']
2024-07-01 23:19:29,085 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:19:29,085 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:19:31,086 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:19:31,086 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:19:33,087 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:19:33,087 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:19:35,087 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:19:35,087 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:19:37,088 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:19:37,088 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:19:37,573 fail2ban.transmitter    [1]: HEAVY   Command: ['ping']
2024-07-01 23:19:39,089 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:19:39,089 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:19:41,090 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:19:41,090 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:19:43,091 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:19:43,091 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:19:45,092 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:19:45,092 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:19:47,093 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:19:47,093 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:19:47,663 fail2ban.transmitter    [1]: HEAVY   Command: ['ping']
2024-07-01 23:19:49,094 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:19:49,094 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:19:51,095 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:19:51,095 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:19:53,096 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:19:53,096 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:19:56,096 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:19:56,096 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:19:57,743 fail2ban.transmitter    [1]: HEAVY   Command: ['ping']
2024-07-01 23:19:58,097 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:19:58,097 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:20:00,098 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:20:00,098 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:20:02,099 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:20:02,099 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:20:04,100 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:20:04,100 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:20:06,101 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:20:06,101 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:20:07,915 fail2ban.transmitter    [1]: HEAVY   Command: ['ping']
2024-07-01 23:20:08,101 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:20:08,101 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:20:10,102 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:20:10,102 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:20:12,103 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:20:12,103 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:20:14,104 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:20:14,104 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:20:16,106 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:20:16,106 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:20:18,036 fail2ban.transmitter    [1]: HEAVY   Command: ['ping']
2024-07-01 23:20:18,107 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:20:18,107 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:20:20,108 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:20:20,108 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:20:22,109 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:20:22,109 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:20:25,109 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:20:25,110 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:20:27,110 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:20:27,111 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:20:28,115 fail2ban.transmitter    [1]: HEAVY   Command: ['ping']
2024-07-01 23:20:29,111 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:20:29,111 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:20:31,112 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:20:31,112 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:20:33,113 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:20:33,113 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:20:35,114 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:20:35,114 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:20:37,115 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:20:37,115 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:20:38,230 fail2ban.transmitter    [1]: HEAVY   Command: ['ping']
2024-07-01 23:20:39,116 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:20:39,116 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:20:41,117 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:20:41,117 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:20:43,118 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:20:43,118 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:20:45,118 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:20:45,119 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:20:47,119 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:20:47,120 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:20:48,323 fail2ban.transmitter    [1]: HEAVY   Command: ['ping']
2024-07-01 23:20:49,120 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:20:49,121 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:20:51,122 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:20:51,122 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:20:53,124 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:20:53,124 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:20:56,124 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:20:56,124 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:20:58,125 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:20:58,125 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:20:58,436 fail2ban.transmitter    [1]: HEAVY   Command: ['ping']
2024-07-01 23:21:00,126 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:21:00,126 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:21:02,127 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:21:02,127 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:21:04,128 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:21:04,128 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:21:06,128 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:21:06,128 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:21:08,130 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:21:08,130 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:21:08,565 fail2ban.transmitter    [1]: HEAVY   Command: ['ping']
2024-07-01 23:21:10,130 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:21:10,131 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:21:12,131 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:21:12,131 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:21:14,132 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:21:14,132 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:21:16,133 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:21:16,133 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:21:18,134 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:21:18,134 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:21:18,678 fail2ban.transmitter    [1]: HEAVY   Command: ['ping']
2024-07-01 23:21:20,135 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:21:20,135 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:21:22,136 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:21:22,136 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:21:25,136 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:21:25,136 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:21:27,137 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:21:27,137 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:21:28,783 fail2ban.transmitter    [1]: HEAVY   Command: ['ping']
2024-07-01 23:21:29,138 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:21:29,138 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:21:31,139 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:21:31,139 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:21:33,140 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:21:33,140 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:21:35,141 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:21:35,141 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:21:37,141 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:21:37,141 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:21:38,867 fail2ban.transmitter    [1]: HEAVY   Command: ['ping']
2024-07-01 23:21:39,142 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:21:39,142 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:21:41,143 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:21:41,143 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:21:43,143 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:21:43,143 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:21:45,144 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:21:45,144 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:21:47,145 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:21:47,145 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:21:48,960 fail2ban.transmitter    [1]: HEAVY   Command: ['ping']
2024-07-01 23:21:49,146 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:21:49,146 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:21:51,147 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:21:51,147 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:21:53,148 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:21:53,148 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:21:56,148 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:21:56,148 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:21:58,149 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:21:58,149 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:21:59,086 fail2ban.transmitter    [1]: HEAVY   Command: ['ping']
2024-07-01 23:22:00,149 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:22:00,150 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:22:02,150 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:22:02,150 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:22:04,151 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:22:04,151 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:22:06,153 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:22:06,153 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:22:08,154 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:22:08,154 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:22:09,179 fail2ban.transmitter    [1]: HEAVY   Command: ['ping']
2024-07-01 23:22:10,155 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:22:10,155 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:22:12,156 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:22:12,156 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:22:14,157 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:22:14,157 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:22:16,158 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:22:16,158 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:22:18,159 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:22:18,159 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:22:19,274 fail2ban.transmitter    [1]: HEAVY   Command: ['ping']
2024-07-01 23:22:20,160 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:22:20,160 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:22:22,161 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:22:22,161 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:22:25,161 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:22:25,161 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:22:27,161 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:22:27,162 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:22:29,163 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:22:29,163 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:22:29,353 fail2ban.transmitter    [1]: HEAVY   Command: ['ping']
2024-07-01 23:22:31,163 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:22:31,164 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:22:33,165 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:22:33,165 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:22:35,165 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:22:35,166 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:22:37,166 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:22:37,166 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:22:39,167 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:22:39,167 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:22:39,433 fail2ban.transmitter    [1]: HEAVY   Command: ['ping']
2024-07-01 23:22:41,168 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:22:41,168 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:22:43,169 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:22:43,169 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:22:45,169 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:22:45,170 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:22:47,171 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:22:47,171 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:22:49,172 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:22:49,172 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:22:49,521 fail2ban.transmitter    [1]: HEAVY   Command: ['ping']
2024-07-01 23:22:51,173 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:22:51,173 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:22:53,174 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:22:53,174 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:22:55,175 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:22:55,175 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:22:57,176 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:22:57,176 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:22:59,176 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:22:59,177 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:22:59,601 fail2ban.transmitter    [1]: HEAVY   Command: ['ping']
2024-07-01 23:23:01,178 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:23:01,178 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:23:03,179 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:23:03,179 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:23:05,180 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:23:05,180 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:23:07,181 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:23:07,181 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:23:09,182 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:23:09,182 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:23:09,685 fail2ban.transmitter    [1]: HEAVY   Command: ['ping']
2024-07-01 23:23:11,184 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:23:11,184 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:23:13,185 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:23:13,185 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:23:15,186 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:23:15,186 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:23:17,187 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:23:17,187 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:23:19,188 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:23:19,188 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:23:19,768 fail2ban.transmitter    [1]: HEAVY   Command: ['ping']
2024-07-01 23:23:21,189 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:23:21,189 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:23:23,190 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:23:23,190 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:23:25,190 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:23:25,190 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:23:27,191 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:23:27,191 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:23:29,192 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:23:29,192 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:23:29,856 fail2ban.transmitter    [1]: HEAVY   Command: ['ping']
2024-07-01 23:23:31,193 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:23:31,193 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:23:33,194 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:23:33,195 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:23:35,196 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:23:35,196 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:23:37,197 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:23:37,197 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:23:39,198 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:23:39,198 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:23:39,939 fail2ban.transmitter    [1]: HEAVY   Command: ['ping']
2024-07-01 23:23:41,199 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:23:41,199 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:23:43,200 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:23:43,200 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:23:45,201 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:23:45,201 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:23:47,202 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:23:47,202 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:23:49,203 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:23:49,203 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:23:50,019 fail2ban.transmitter    [1]: HEAVY   Command: ['ping']
2024-07-01 23:23:51,204 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:23:51,204 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:23:53,205 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:23:53,205 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:23:56,206 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:23:56,206 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:23:58,207 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:23:58,207 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:24:00,096 fail2ban.transmitter    [1]: HEAVY   Command: ['ping']
2024-07-01 23:24:00,208 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:24:00,208 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:24:02,209 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:24:02,209 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:24:04,209 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:24:04,210 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:24:06,210 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:24:06,210 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:24:08,211 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:24:08,211 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:24:10,177 fail2ban.transmitter    [1]: HEAVY   Command: ['ping']
2024-07-01 23:24:10,212 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:24:10,212 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:24:12,213 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:24:12,213 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:24:14,214 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:24:14,214 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:24:16,215 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:24:16,215 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:24:18,216 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:24:18,216 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:24:20,217 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:24:20,217 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:24:20,254 fail2ban.transmitter    [1]: HEAVY   Command: ['ping']
2024-07-01 23:24:22,219 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:24:22,219 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:24:25,219 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:24:25,219 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:24:27,221 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:24:27,221 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:24:29,221 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:24:29,222 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:24:30,339 fail2ban.transmitter    [1]: HEAVY   Command: ['ping']
2024-07-01 23:24:31,222 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:24:31,223 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:24:33,223 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:24:33,223 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:24:35,224 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:24:35,224 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:24:37,225 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:24:37,225 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:24:39,226 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:24:39,226 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)
2024-07-01 23:24:40,455 fail2ban.transmitter    [1]: HEAVY   Command: ['ping']
2024-07-01 23:24:41,227 fail2ban.actions        [1]: HEAVY   Actions: check-unban 20, bancnt 0, max: 20
2024-07-01 23:24:41,227 fail2ban.actions        [1]: HEAVY   Actions: wait for pending tickets 2 (default 2)

Additional info

Environment:

jail.d/jail.local

[mssql-auth]
enabled = true
bantime = 60
maxretry = 3
findtime = 200

I've tried it in windows docker desktop and ubuntu docker both produce same results