[GH-ISSUE #365] During cls handshake connection from #195

Closed
opened 2026-04-08 16:51:01 +03:00 by zhus · 11 comments
Owner

Originally created by @Asmaelh on GitHub (Feb 20, 2024).
Original GitHub issue: https://github.com/sigoden/dufs/issues/365

after some time (a couple of days), errors start going into the logs and the server stops accepting requests until you restart

2024-02-17T10:33:52+03:00 WARN - During cls handshake connection from 192.241.215.42:43624
2024-02-17T11:19:00+03:00 WARN - During cls handshake connection from 107.170.231.42:40164
2024-02-17T13:24:44+03:00 WARN - During cls handshake connection from 107.170.229.48:44398
2024-02-17T14:28:54+03:00 WARN - During cls handshake connection from 45.227.254.49:32175
2024-02-17T14:28:54+03:00 WARN - During cls handshake connection from 45.227.254.49:32427
2024-02-17T14:28:54+03:00 WARN - During cls handshake connection from 45.227.254.49:32974

Everything works well on version 0.37

Environment:

  • Dufs version: 0.40
  • OS info: Windows 10
Originally created by @Asmaelh on GitHub (Feb 20, 2024). Original GitHub issue: https://github.com/sigoden/dufs/issues/365 after some time (a couple of days), errors start going into the logs and the server stops accepting requests until you restart 2024-02-17T10:33:52+03:00 WARN - During cls handshake connection from 192.241.215.42:43624 2024-02-17T11:19:00+03:00 WARN - During cls handshake connection from 107.170.231.42:40164 2024-02-17T13:24:44+03:00 WARN - During cls handshake connection from 107.170.229.48:44398 2024-02-17T14:28:54+03:00 WARN - During cls handshake connection from 45.227.254.49:32175 2024-02-17T14:28:54+03:00 WARN - During cls handshake connection from 45.227.254.49:32427 2024-02-17T14:28:54+03:00 WARN - During cls handshake connection from 45.227.254.49:32974 Everything works well on version 0.37 **Environment:** - Dufs version: 0.40 - OS info: Windows 10
zhus closed this issue 2026-04-08 16:51:01 +03:00
Author
Owner

@sigoden commented on GitHub (Feb 21, 2024):

Just a warning that there is something unusual about tls handshake. it's harmless, please ignore.
This problem may be solved in the near future, see hyperium/hyper#3427

<!-- gh-comment-id:1955394142 --> @sigoden commented on GitHub (Feb 21, 2024): Just a warning that there is something unusual about tls handshake. it's harmless, please ignore. This problem may be solved in the near future, see hyperium/hyper#3427
Author
Owner

@Asmaelh commented on GitHub (Feb 21, 2024):

Just a warning that there is something unusual about tls handshake. it's harmless, please ignore. This problem may be solved in the near future, see hyperium/hyper#3427

But then why does the program hang and does not respond to requests, I checked on several servers

<!-- gh-comment-id:1955806211 --> @Asmaelh commented on GitHub (Feb 21, 2024): > Just a warning that there is something unusual about tls handshake. it's harmless, please ignore. This problem may be solved in the near future, see [hyperium/hyper#3427](https://github.com/hyperium/hyper/issues/3427) But then why does the program hang and does not respond to requests, I checked on several servers
Author
Owner

@Asmaelh commented on GitHub (Feb 21, 2024):

On version 0.37 its OK

<!-- gh-comment-id:1955806939 --> @Asmaelh commented on GitHub (Feb 21, 2024): On version 0.37 its OK
Author
Owner

@sigoden commented on GitHub (Feb 21, 2024):

After #321 (from dufs v0.39.0), dufs switched to hyper v1. This is probably where the problem is most likely to occur.

The warning log may not tell why the server stopped accepting requests.

What are the steps to reproduce the problem? The simpler and more direct the better. @Asmaelh

<!-- gh-comment-id:1955820188 --> @sigoden commented on GitHub (Feb 21, 2024): After #321 (from dufs v0.39.0), dufs switched to hyper v1. This is probably where the problem is most likely to occur. The warning log may not tell why the server stopped accepting requests. What are the steps to reproduce the problem? The simpler and more direct the better. @Asmaelh
Author
Owner

@Asmaelh commented on GitHub (Feb 21, 2024):

My config file:

serve-path: '../download'
bind:

  • 10.85.80.2
    port: 9009
    auth:
  • admin:$6$qCAVUG7yn7t/hH4d$BWm8r5MoDywNmDP/J3V2S2a6flmKHC1IpblfoqZfuK.LtLBZ0KFXP9QIfJP8RqL8MCw4isdheoAMTuwOz.pAO/@/:rw
    allow-all: true
    enable-cors: true
    assets: ./assets/
    log-format: '$remote_addr'
    tls-cert: ./cert/cloud.crt
    tls-key: ./cert/cloud.key

it's just that after a while the server becomes unavailable, even with a low load, and in the log here are the messages that were above

What else can I check?

<!-- gh-comment-id:1955867076 --> @Asmaelh commented on GitHub (Feb 21, 2024): My config file: serve-path: '../download' bind: - 10.85.80.2 port: 9009 auth: - admin:$6$qCAVUG7yn7t/hH4d$BWm8r5MoDywNmDP/J3V2S2a6flmKHC1IpblfoqZfuK.LtLBZ0KFXP9QIfJP8RqL8MCw4isdheoAMTuwOz.pAO/@/:rw allow-all: true enable-cors: true assets: ./assets/ log-format: '$remote_addr' tls-cert: ./cert/cloud.crt tls-key: ./cert/cloud.key it's just that after a while the server becomes unavailable, even with a low load, and in the log here are the messages that were above What else can I check?
Author
Owner

@sigoden commented on GitHub (Feb 21, 2024):

According to your configuration, there should be some access logs as follows. Why don't they exist?

2024-02-21T07:30:08Z INFO - 192.168.8.8

Only by confirming the problem can I fix it.
I have tested 10,000 requests and still cannot reproduce the problem.
Can you restart again, wait for the problem to occur, and record all the logs generated? @Asmaelh

<!-- gh-comment-id:1956049212 --> @sigoden commented on GitHub (Feb 21, 2024): According to your configuration, there should be some access logs as follows. Why don't they exist? ``` 2024-02-21T07:30:08Z INFO - 192.168.8.8 ``` Only by confirming the problem can I fix it. I have tested 10,000 requests and still cannot reproduce the problem. Can you restart again, wait for the problem to occur, and record all the logs generated? @Asmaelh
Author
Owner

@sigoden commented on GitHub (Feb 23, 2024):

I have tested 100,000 requests and still cannot reproduce the problem.

I'll close this issue first. But new feedback is welcome.

<!-- gh-comment-id:1960594301 --> @sigoden commented on GitHub (Feb 23, 2024): I have tested 100,000 requests and still cannot reproduce the problem. I'll close this issue first. But new feedback is welcome.
Author
Owner

@Asmaelh commented on GitHub (Feb 23, 2024):

D:\dufs>dufs.exe -c config2.yaml
Listening on https://10.85.80.2:9009/
2024-02-20T20:56:49+03:00 INFO - 93.125.107.37
2024-02-20T20:56:49+03:00 INFO - 93.125.107.37
2024-02-20T20:56:49+03:00 INFO - 93.125.107.37
2024-02-20T20:56:49+03:00 INFO - 93.125.107.37
2024-02-20T20:56:50+03:00 INFO - 93.125.107.37
2024-02-20T20:56:51+03:00 INFO - 93.125.107.37
2024-02-20T20:56:53+03:00 INFO - 93.125.107.37
2024-02-20T20:56:53+03:00 INFO - 93.125.107.37
2024-02-20T22:36:12+03:00 WARN - During cls handshake connection from 3.91.205.89:54292
2024-02-20T22:36:13+03:00 WARN - During cls handshake connection from 3.91.205.89:54298
2024-02-20T22:36:13+03:00 INFO - 3.91.205.89
2024-02-20T22:36:14+03:00 WARN - Illegal SNI hostname received "91.149.187.60"
2024-02-20T22:36:14+03:00 WARN - During cls handshake connection from 3.91.205.89:54334
2024-02-20T22:36:14+03:00 WARN - Illegal SNI hostname received "91.149.187.60"
2024-02-20T22:36:14+03:00 WARN - During cls handshake connection from 3.91.205.89:54338
2024-02-20T22:36:14+03:00 WARN - Illegal SNI hostname received "91.149.187.60"
2024-02-20T22:36:14+03:00 WARN - During cls handshake connection from 3.91.205.89:54340
2024-02-20T22:36:14+03:00 WARN - Illegal SNI hostname received "91.149.187.60"
2024-02-20T22:36:14+03:00 WARN - During cls handshake connection from 3.91.205.89:54344
2024-02-20T22:36:15+03:00 WARN - Illegal SNI hostname received "91.149.187.60"
2024-02-20T22:36:15+03:00 WARN - During cls handshake connection from 3.91.205.89:54352
2024-02-20T22:36:15+03:00 WARN - Illegal SNI hostname received "91.149.187.60"
2024-02-20T22:36:15+03:00 WARN - During cls handshake connection from 3.91.205.89:54358
2024-02-20T22:36:15+03:00 WARN - Illegal SNI hostname received "91.149.187.60"
2024-02-20T22:36:15+03:00 WARN - During cls handshake connection from 3.91.205.89:54360
2024-02-20T22:36:15+03:00 WARN - Illegal SNI hostname received "91.149.187.60"
2024-02-20T22:36:15+03:00 WARN - During cls handshake connection from 3.91.205.89:54374
2024-02-20T22:36:16+03:00 WARN - Illegal SNI hostname received "91.149.187.60"
2024-02-20T22:36:16+03:00 WARN - During cls handshake connection from 3.91.205.89:54384
2024-02-20T22:36:16+03:00 WARN - Illegal SNI hostname received "91.149.187.60"
2024-02-20T22:36:16+03:00 WARN - During cls handshake connection from 3.91.205.89:54394
2024-02-20T22:36:16+03:00 WARN - Serving connection from 3.91.205.89:54318: Удаленный хост принудительно разорвал существующее подключение. (os error 10054)
2024-02-20T22:36:17+03:00 WARN - Illegal SNI hostname received "91.149.187.60"
2024-02-20T22:36:17+03:00 WARN - During cls handshake connection from 3.91.205.89:54396
2024-02-20T22:36:17+03:00 WARN - Illegal SNI hostname received "91.149.187.60"
2024-02-20T22:36:17+03:00 WARN - During cls handshake connection from 3.91.205.89:54398
2024-02-20T22:36:17+03:00 WARN - Illegal SNI hostname received "91.149.187.60"
2024-02-20T22:36:17+03:00 WARN - During cls handshake connection from 3.91.205.89:54410
2024-02-20T22:36:17+03:00 WARN - Illegal SNI hostname received "91.149.187.60"
2024-02-20T22:36:17+03:00 WARN - During cls handshake connection from 3.91.205.89:54424
2024-02-20T22:36:18+03:00 WARN - Illegal SNI hostname received "91.149.187.60"
2024-02-20T22:36:18+03:00 WARN - During cls handshake connection from 3.91.205.89:54440
2024-02-20T22:36:18+03:00 WARN - Illegal SNI hostname received "91.149.187.60"
2024-02-20T22:36:18+03:00 WARN - During cls handshake connection from 3.91.205.89:54456
2024-02-20T22:36:18+03:00 WARN - Illegal SNI hostname received "91.149.187.60"
2024-02-20T22:36:18+03:00 WARN - During cls handshake connection from 3.91.205.89:54466
2024-02-20T22:36:18+03:00 WARN - During cls handshake connection from 3.91.205.89:54472
2024-02-20T22:36:19+03:00 WARN - During cls handshake connection from 3.91.205.89:54486
2024-02-20T23:19:34+03:00 WARN - During cls handshake connection from 194.165.16.76:16170
2024-02-20T23:19:34+03:00 WARN - During cls handshake connection from 194.165.16.76:21276
2024-02-20T23:19:41+03:00 WARN - During cls handshake connection from 194.165.16.76:49271
2024-02-21T01:35:50+03:00 WARN - During cls handshake connection from 109.74.204.123:49430
2024-02-21T01:35:50+03:00 WARN - During cls handshake connection from 109.74.204.123:16952
2024-02-21T01:36:01+03:00 INFO - 109.74.204.123
2024-02-21T01:36:01+03:00 INFO - 109.74.204.123
2024-02-21T01:36:01+03:00 WARN - Serving connection from 109.74.204.123:35706: invalid HTTP version parsed
2024-02-21T01:36:02+03:00 WARN - Serving connection from 109.74.204.123:35828: invalid HTTP method parsed
2024-02-21T01:36:02+03:00 WARN - Serving connection from 109.74.204.123:43383: invalid HTTP method parsed
2024-02-21T01:36:02+03:00 WARN - Serving connection from 109.74.204.123:36002: invalid HTTP method parsed
2024-02-21T01:36:02+03:00 WARN - Serving connection from 109.74.204.123:36132: invalid HTTP method parsed
2024-02-21T01:36:02+03:00 WARN - Serving connection from 109.74.204.123:36220: invalid HTTP method parsed
2024-02-21T01:36:02+03:00 WARN - Serving connection from 109.74.204.123:36354: invalid HTTP method parsed
2024-02-21T01:36:03+03:00 WARN - Serving connection from 109.74.204.123:36486: invalid HTTP method parsed
2024-02-21T01:36:03+03:00 WARN - Serving connection from 109.74.204.123:36614: invalid HTTP method parsed
2024-02-21T01:36:03+03:00 WARN - Serving connection from 109.74.204.123:36708: invalid HTTP version parsed
2024-02-21T01:36:04+03:00 INFO - 109.74.204.123
2024-02-21T01:36:04+03:00 INFO - 109.74.204.123
2024-02-21T01:36:04+03:00 INFO - 109.74.204.123
2024-02-21T01:36:04+03:00 WARN - During cls handshake connection from 109.74.204.123:37660
2024-02-21T01:36:04+03:00 INFO - 109.74.204.123
2024-02-21T01:36:04+03:00 INFO - 109.74.204.123
2024-02-21T01:36:04+03:00 INFO - 109.74.204.123
2024-02-21T01:36:04+03:00 INFO - 109.74.204.123
2024-02-21T01:36:04+03:00 WARN - During cls handshake connection from 109.74.204.123:37810
2024-02-21T01:36:04+03:00 WARN - Serving connection from 109.74.204.123:37782: message head is too large
2024-02-21T01:36:04+03:00 INFO - 109.74.204.123
2024-02-21T01:36:04+03:00 INFO - 109.74.204.123
2024-02-21T01:36:04+03:00 INFO - 109.74.204.123
2024-02-21T01:36:04+03:00 INFO - 109.74.204.123
2024-02-21T01:36:04+03:00 INFO - 109.74.204.123
2024-02-21T01:36:04+03:00 INFO - 109.74.204.123
2024-02-21T01:36:04+03:00 INFO - 109.74.204.123
2024-02-21T01:36:04+03:00 INFO - 109.74.204.123
2024-02-21T01:36:09+03:00 WARN - During cls handshake connection from 109.74.204.123:38072
2024-02-21T01:36:09+03:00 WARN - During cls handshake connection from 109.74.204.123:38146
2024-02-21T01:36:09+03:00 WARN - During cls handshake connection from 109.74.204.123:38150
2024-02-21T01:36:09+03:00 WARN - During cls handshake connection from 109.74.204.123:38186
2024-02-21T01:36:09+03:00 WARN - During cls handshake connection from 109.74.204.123:38182
2024-02-21T01:36:09+03:00 WARN - During cls handshake connection from 109.74.204.123:38184
2024-02-21T01:36:09+03:00 WARN - During cls handshake connection from 109.74.204.123:38392
2024-02-21T01:36:09+03:00 WARN - During cls handshake connection from 109.74.204.123:38442
2024-02-21T01:36:09+03:00 WARN - During cls handshake connection from 109.74.204.123:39022
2024-02-21T01:36:09+03:00 WARN - During cls handshake connection from 109.74.204.123:39026
2024-02-21T01:36:09+03:00 WARN - During cls handshake connection from 109.74.204.123:39058
2024-02-21T01:36:09+03:00 WARN - During cls handshake connection from 109.74.204.123:39060
2024-02-21T01:36:09+03:00 WARN - During cls handshake connection from 109.74.204.123:39056
2024-02-21T01:36:09+03:00 WARN - During cls handshake connection from 109.74.204.123:39194
2024-02-21T01:36:09+03:00 WARN - During cls handshake connection from 109.74.204.123:39226
2024-02-21T01:36:10+03:00 INFO - 109.74.204.123
2024-02-21T01:36:10+03:00 INFO - 109.74.204.123
2024-02-21T01:36:10+03:00 INFO - 109.74.204.123
2024-02-21T01:36:10+03:00 INFO - 109.74.204.123
2024-02-21T01:36:15+03:00 WARN - During cls handshake connection from 109.74.204.123:46890
2024-02-21T01:36:15+03:00 WARN - During cls handshake connection from 109.74.204.123:46900
2024-02-21T01:36:15+03:00 WARN - During cls handshake connection from 109.74.204.123:46892
2024-02-21T01:36:15+03:00 WARN - During cls handshake connection from 109.74.204.123:7235
2024-02-21T01:36:15+03:00 WARN - During cls handshake connection from 109.74.204.123:46934
2024-02-21T01:36:15+03:00 INFO - 109.74.204.123
2024-02-21T01:36:15+03:00 WARN - During cls handshake connection from 109.74.204.123:47058
2024-02-21T01:36:15+03:00 WARN - During cls handshake connection from 109.74.204.123:47060
2024-02-21T01:36:15+03:00 WARN - During cls handshake connection from 109.74.204.123:47086
2024-02-21T01:36:15+03:00 WARN - During cls handshake connection from 109.74.204.123:47118
2024-02-21T01:36:15+03:00 WARN - During cls handshake connection from 109.74.204.123:47160
2024-02-21T01:36:15+03:00 WARN - During cls handshake connection from 109.74.204.123:47158
2024-02-21T01:36:15+03:00 WARN - During cls handshake connection from 109.74.204.123:47182
2024-02-21T01:36:15+03:00 WARN - During cls handshake connection from 109.74.204.123:47212
2024-02-21T01:36:15+03:00 WARN - During cls handshake connection from 109.74.204.123:47246
2024-02-21T01:36:15+03:00 WARN - During cls handshake connection from 109.74.204.123:47310
2024-02-21T01:36:15+03:00 WARN - During cls handshake connection from 109.74.204.123:47400
2024-02-21T01:36:15+03:00 WARN - During cls handshake connection from 109.74.204.123:47398
2024-02-21T01:36:15+03:00 WARN - During cls handshake connection from 109.74.204.123:47440
2024-02-21T01:36:15+03:00 WARN - During cls handshake connection from 109.74.204.123:47482
2024-02-21T01:36:15+03:00 WARN - During cls handshake connection from 109.74.204.123:47508
2024-02-21T01:36:15+03:00 WARN - During cls handshake connection from 109.74.204.123:47506
2024-02-21T01:36:15+03:00 WARN - During cls handshake connection from 109.74.204.123:47626
2024-02-21T01:36:16+03:00 WARN - During cls handshake connection from 109.74.204.123:47662
2024-02-21T01:36:16+03:00 WARN - During cls handshake connection from 109.74.204.123:47696
2024-02-21T01:36:16+03:00 WARN - During cls handshake connection from 109.74.204.123:47698
2024-02-21T01:36:16+03:00 WARN - During cls handshake connection from 109.74.204.123:47754
2024-02-21T01:36:16+03:00 WARN - During cls handshake connection from 109.74.204.123:47814
2024-02-21T01:36:16+03:00 WARN - During cls handshake connection from 109.74.204.123:47856
2024-02-21T01:36:16+03:00 WARN - During cls handshake connection from 109.74.204.123:47858
2024-02-21T01:36:16+03:00 WARN - During cls handshake connection from 109.74.204.123:47936
2024-02-21T01:36:16+03:00 WARN - During cls handshake connection from 109.74.204.123:47938
2024-02-21T01:36:16+03:00 WARN - During cls handshake connection from 109.74.204.123:47990
2024-02-21T01:36:16+03:00 WARN - During cls handshake connection from 109.74.204.123:47988
2024-02-21T01:36:16+03:00 WARN - During cls handshake connection from 109.74.204.123:48102
2024-02-21T01:36:16+03:00 WARN - During cls handshake connection from 109.74.204.123:48136
2024-02-21T01:36:16+03:00 WARN - During cls handshake connection from 109.74.204.123:48236
2024-02-21T01:36:16+03:00 WARN - During cls handshake connection from 109.74.204.123:48304
2024-02-21T01:36:16+03:00 WARN - During cls handshake connection from 109.74.204.123:48384
2024-02-21T01:36:16+03:00 WARN - During cls handshake connection from 109.74.204.123:48528
2024-02-21T01:36:17+03:00 WARN - During cls handshake connection from 109.74.204.123:48652
2024-02-21T01:36:17+03:00 WARN - During cls handshake connection from 109.74.204.123:48742
2024-02-21T01:36:17+03:00 WARN - During cls handshake connection from 109.74.204.123:48850
2024-02-21T01:36:17+03:00 WARN - During cls handshake connection from 109.74.204.123:49024
2024-02-21T01:36:17+03:00 WARN - During cls handshake connection from 109.74.204.123:49174
2024-02-21T01:36:17+03:00 WARN - During cls handshake connection from 109.74.204.123:49318
2024-02-21T01:36:17+03:00 WARN - During cls handshake connection from 109.74.204.123:49460
2024-02-21T01:36:17+03:00 WARN - During cls handshake connection from 109.74.204.123:49568
2024-02-21T01:36:17+03:00 WARN - During cls handshake connection from 109.74.204.123:49692
2024-02-21T01:36:18+03:00 WARN - During cls handshake connection from 109.74.204.123:49838
2024-02-21T01:36:18+03:00 WARN - During cls handshake connection from 109.74.204.123:49972
2024-02-21T01:36:18+03:00 WARN - During cls handshake connection from 109.74.204.123:50088
2024-02-21T01:36:18+03:00 WARN - During cls handshake connection from 109.74.204.123:50242
2024-02-21T01:36:18+03:00 WARN - During cls handshake connection from 109.74.204.123:50360
2024-02-21T01:36:26+03:00 WARN - During cls handshake connection from 109.74.204.123:57016
2024-02-21T03:23:24+03:00 WARN - During cls handshake connection from 198.235.24.204:62012
2024-02-21T03:30:46+03:00 WARN - During cls handshake connection from 192.241.232.13:39616
2024-02-21T06:14:28+03:00 INFO - 162.243.144.9
2024-02-21T06:22:46+03:00 INFO - 93.125.107.37
2024-02-21T06:22:46+03:00 INFO - 93.125.107.37
2024-02-21T06:22:46+03:00 INFO - 93.125.107.37
2024-02-21T06:22:46+03:00 INFO - 93.125.107.37
2024-02-21T09:55:12+03:00 WARN - During cls handshake connection from 167.94.145.59:56356
2024-02-21T09:55:16+03:00 INFO - 167.94.145.59
2024-02-21T09:55:16+03:00 WARN - Serving connection from 167.94.145.59:53878: error shutting down connection
2024-02-21T09:55:19+03:00 INFO - 167.94.145.59
2024-02-21T09:55:19+03:00 WARN - Serving connection from 167.94.145.59:44328: connection error
2024-02-21T10:04:01+03:00 WARN - During cls handshake connection from 23.168.152.83:46864
2024-02-21T10:46:55+03:00 WARN - During cls handshake connection from 194.165.16.10:45976
2024-02-21T10:46:55+03:00 WARN - During cls handshake connection from 194.165.16.10:46019
2024-02-21T10:46:55+03:00 WARN - During cls handshake connection from 194.165.16.10:46241
2024-02-21T12:21:22+03:00 WARN - Illegal SNI hostname received "91.149.187.60"
2024-02-21T12:21:22+03:00 WARN - During cls handshake connection from 167.248.133.189:57728
2024-02-21T12:21:23+03:00 WARN - Illegal SNI hostname received "91.149.187.60"
2024-02-21T12:21:23+03:00 WARN - During cls handshake connection from 167.248.133.189:34698
2024-02-21T12:21:23+03:00 WARN - Illegal SNI hostname received "91.149.187.60"
2024-02-21T12:21:23+03:00 WARN - During cls handshake connection from 167.248.133.189:38154
2024-02-21T12:21:24+03:00 WARN - Illegal SNI hostname received "91.149.187.60"
2024-02-21T12:21:24+03:00 WARN - During cls handshake connection from 167.248.133.189:34454
2024-02-21T12:21:24+03:00 WARN - Illegal SNI hostname received "91.149.187.60"
2024-02-21T12:21:24+03:00 WARN - During cls handshake connection from 167.248.133.189:54216
2024-02-21T12:21:26+03:00 WARN - Illegal SNI hostname received "91.149.187.60"
2024-02-21T12:21:26+03:00 WARN - During cls handshake connection from 167.248.133.189:38506
2024-02-21T12:21:26+03:00 WARN - Illegal SNI hostname received "91.149.187.60"
2024-02-21T12:21:26+03:00 WARN - During cls handshake connection from 167.248.133.189:56282
2024-02-21T12:21:26+03:00 WARN - Illegal SNI hostname received "91.149.187.60"
2024-02-21T12:21:26+03:00 WARN - During cls handshake connection from 167.248.133.189:49028
2024-02-21T12:21:28+03:00 WARN - Illegal SNI hostname received "91.149.187.60"
2024-02-21T12:21:28+03:00 WARN - During cls handshake connection from 167.248.133.189:58990
2024-02-21T12:21:28+03:00 WARN - Illegal SNI hostname received "91.149.187.60"
2024-02-21T12:21:28+03:00 WARN - During cls handshake connection from 167.248.133.189:35868
2024-02-21T15:02:43+03:00 WARN - During cls handshake connection from 141.105.97.128:53261
2024-02-21T15:02:43+03:00 WARN - During cls handshake connection from 141.105.97.128:53262
2024-02-21T16:21:19+03:00 WARN - During cls handshake connection from 87.236.176.193:44893
2024-02-21T16:21:34+03:00 WARN - During cls handshake connection from 87.236.176.214:55697
2024-02-21T16:21:47+03:00 WARN - During cls handshake connection from 87.236.176.209:50681
2024-02-21T16:22:02+03:00 WARN - During cls handshake connection from 87.236.176.214:38907
2024-02-21T16:22:14+03:00 WARN - During cls handshake connection from 87.236.176.200:59609
2024-02-21T16:22:29+03:00 WARN - During cls handshake connection from 87.236.176.214:60961
2024-02-21T16:22:44+03:00 WARN - During cls handshake connection from 87.236.176.217:55351
2024-02-21T16:22:59+03:00 WARN - During cls handshake connection from 87.236.176.192:36413
2024-02-21T16:23:14+03:00 WARN - During cls handshake connection from 87.236.176.199:53985
2024-02-21T16:23:30+03:00 WARN - During cls handshake connection from 87.236.176.212:53761
2024-02-21T16:23:45+03:00 WARN - During cls handshake connection from 87.236.176.214:49773
2024-02-21T16:24:00+03:00 WARN - During cls handshake connection from 87.236.176.215:56841
2024-02-21T16:24:15+03:00 WARN - During cls handshake connection from 87.236.176.196:47649
2024-02-21T16:24:30+03:00 WARN - During cls handshake connection from 87.236.176.210:51413
2024-02-21T16:24:30+03:00 WARN - During cls handshake connection from 87.236.176.210:44057
2024-02-21T16:24:49+03:00 INFO - 87.236.176.201
2024-02-21T16:24:50+03:00 WARN - Illegal SNI hostname received "91.149.187.60"
2024-02-21T16:24:50+03:00 WARN - During cls handshake connection from 87.236.176.130:55377
2024-02-21T16:25:24+03:00 WARN - Illegal SNI hostname received "91.149.187.60"
2024-02-21T16:25:24+03:00 WARN - During cls handshake connection from 87.236.176.113:60337
2024-02-21T16:25:57+03:00 WARN - Illegal SNI hostname received "91.149.187.60"
2024-02-21T16:25:57+03:00 WARN - During cls handshake connection from 87.236.176.122:38971
2024-02-21T16:26:30+03:00 WARN - Illegal SNI hostname received "91.149.187.60"
2024-02-21T16:26:30+03:00 WARN - During cls handshake connection from 87.236.176.140:42975
2024-02-21T16:27:03+03:00 WARN - Illegal SNI hostname received "91.149.187.60"
2024-02-21T16:27:03+03:00 WARN - During cls handshake connection from 87.236.176.134:39357
2024-02-21T16:27:36+03:00 WARN - Illegal SNI hostname received "91.149.187.60"
2024-02-21T16:27:36+03:00 WARN - During cls handshake connection from 87.236.176.115:60279
2024-02-21T16:28:10+03:00 WARN - Illegal SNI hostname received "91.149.187.60"
2024-02-21T16:28:10+03:00 WARN - During cls handshake connection from 87.236.176.119:39123
2024-02-21T16:28:43+03:00 WARN - Illegal SNI hostname received "91.149.187.60"
2024-02-21T16:28:43+03:00 WARN - During cls handshake connection from 87.236.176.139:49051
2024-02-21T16:29:16+03:00 WARN - Illegal SNI hostname received "91.149.187.60"
2024-02-21T16:29:16+03:00 WARN - During cls handshake connection from 87.236.176.138:46343
2024-02-21T16:29:49+03:00 WARN - Illegal SNI hostname received "91.149.187.60"
2024-02-21T16:29:49+03:00 WARN - During cls handshake connection from 87.236.176.136:42941
2024-02-21T20:53:35+03:00 WARN - During cls handshake connection from 45.227.254.54:51288
2024-02-21T20:53:35+03:00 WARN - During cls handshake connection from 45.227.254.54:51341
2024-02-21T20:53:35+03:00 WARN - During cls handshake connection from 45.227.254.54:53542
2024-02-22T01:20:16+03:00 WARN - During cls handshake connection from 167.99.239.31:46891
2024-02-22T01:20:29+03:00 WARN - During cls handshake connection from 167.99.239.31:42401
2024-02-22T01:20:29+03:00 WARN - During cls handshake connection from 167.99.239.31:43851
2024-02-22T01:20:30+03:00 WARN - During cls handshake connection from 167.99.239.31:32937
2024-02-22T01:20:41+03:00 INFO - 167.99.239.31
2024-02-22T01:20:42+03:00 WARN - Serving connection from 167.99.239.31:40907: invalid HTTP method parsed
2024-02-22T01:20:42+03:00 WARN - Serving connection from 167.99.239.31:41909: invalid HTTP method parsed
2024-02-22T01:20:43+03:00 WARN - Serving connection from 167.99.239.31:36467: invalid HTTP method parsed
2024-02-22T01:20:43+03:00 WARN - Serving connection from 167.99.239.31:43494: invalid HTTP method parsed
2024-02-22T03:09:52+03:00 WARN - During cls handshake connection from 198.235.24.246:63362
2024-02-22T04:00:51+03:00 WARN - During cls handshake connection from 152.32.141.208:58568
2024-02-22T04:00:54+03:00 WARN - During cls handshake connection from 152.32.141.208:60280
2024-02-22T04:01:03+03:00 INFO - 152.32.141.208
2024-02-22T04:01:04+03:00 WARN - Serving connection from 152.32.141.208:62842: invalid URI
2024-02-22T04:01:05+03:00 WARN - During cls handshake connection from 152.32.141.208:63038
2024-02-22T04:01:05+03:00 WARN - Illegal SNI hostname received "91.149.187.60"
2024-02-22T04:01:05+03:00 WARN - During cls handshake connection from 152.32.141.208:63158
2024-02-22T04:01:06+03:00 WARN - Illegal SNI hostname received "91.149.187.60"
2024-02-22T04:01:06+03:00 WARN - During cls handshake connection from 152.32.141.208:63278
2024-02-22T04:01:06+03:00 WARN - Illegal SNI hostname received "91.149.187.60"
2024-02-22T04:01:06+03:00 WARN - During cls handshake connection from 152.32.141.208:63406
2024-02-22T04:01:06+03:00 WARN - Illegal SNI hostname received "91.149.187.60"
2024-02-22T04:01:06+03:00 WARN - During cls handshake connection from 152.32.141.208:63516
2024-02-22T04:01:07+03:00 WARN - Illegal SNI hostname received "91.149.187.60"
2024-02-22T04:01:07+03:00 WARN - During cls handshake connection from 152.32.141.208:63620
2024-02-22T04:01:07+03:00 WARN - Illegal SNI hostname received "91.149.187.60"
2024-02-22T04:01:07+03:00 WARN - During cls handshake connection from 152.32.141.208:63722
2024-02-22T04:01:08+03:00 WARN - Illegal SNI hostname received "91.149.187.60"
2024-02-22T04:01:08+03:00 WARN - During cls handshake connection from 152.32.141.208:63940
2024-02-22T04:01:08+03:00 WARN - Illegal SNI hostname received "91.149.187.60"
2024-02-22T04:01:08+03:00 WARN - During cls handshake connection from 152.32.141.208:64030
2024-02-22T04:01:09+03:00 WARN - Illegal SNI hostname received "91.149.187.60"
2024-02-22T04:01:09+03:00 WARN - During cls handshake connection from 152.32.141.208:64196
2024-02-22T04:01:09+03:00 WARN - Illegal SNI hostname received "91.149.187.60"
2024-02-22T04:01:09+03:00 WARN - During cls handshake connection from 152.32.141.208:64232
2024-02-22T04:33:43+03:00 WARN - During cls handshake connection from 167.94.138.33:58236
2024-02-22T04:33:47+03:00 INFO - 167.94.138.33
2024-02-22T04:33:47+03:00 WARN - Serving connection from 167.94.138.33:49164: error shutting down connection
2024-02-22T04:33:51+03:00 INFO - 167.94.138.33
2024-02-22T04:33:52+03:00 WARN - Serving connection from 167.94.138.33:50156: connection error
2024-02-22T06:49:31+03:00 WARN - During cls handshake connection from 45.227.254.55:58703
2024-02-22T06:49:31+03:00 WARN - During cls handshake connection from 45.227.254.55:58833
2024-02-22T06:49:32+03:00 WARN - During cls handshake connection from 45.227.254.55:59193
2024-02-22T09:26:17+03:00 WARN - During cls handshake connection from 23.168.152.91:48272
2024-02-22T09:26:18+03:00 WARN - During cls handshake connection from 23.168.152.104:48280
2024-02-22T09:26:20+03:00 WARN - During cls handshake connection from 23.168.152.121:48296
2024-02-22T09:26:22+03:00 WARN - During cls handshake connection from 23.168.152.113:48302
2024-02-22T09:26:59+03:00 WARN - During cls handshake connection from 23.168.152.71:45196
2024-02-22T09:49:26+03:00 INFO - 93.125.107.37
2024-02-22T09:49:26+03:00 INFO - 93.125.107.37
2024-02-22T09:49:26+03:00 INFO - 93.125.107.37
2024-02-22T09:49:26+03:00 INFO - 93.125.107.37
2024-02-22T10:27:49+03:00 INFO - 213.184.251.229
2024-02-22T10:27:49+03:00 INFO - 213.184.251.229

<!-- gh-comment-id:1960698183 --> @Asmaelh commented on GitHub (Feb 23, 2024): D:\dufs>dufs.exe -c config2.yaml Listening on https://10.85.80.2:9009/ 2024-02-20T20:56:49+03:00 INFO - 93.125.107.37 2024-02-20T20:56:49+03:00 INFO - 93.125.107.37 2024-02-20T20:56:49+03:00 INFO - 93.125.107.37 2024-02-20T20:56:49+03:00 INFO - 93.125.107.37 2024-02-20T20:56:50+03:00 INFO - 93.125.107.37 2024-02-20T20:56:51+03:00 INFO - 93.125.107.37 2024-02-20T20:56:53+03:00 INFO - 93.125.107.37 2024-02-20T20:56:53+03:00 INFO - 93.125.107.37 2024-02-20T22:36:12+03:00 WARN - During cls handshake connection from 3.91.205.89:54292 2024-02-20T22:36:13+03:00 WARN - During cls handshake connection from 3.91.205.89:54298 2024-02-20T22:36:13+03:00 INFO - 3.91.205.89 2024-02-20T22:36:14+03:00 WARN - Illegal SNI hostname received "91.149.187.60" 2024-02-20T22:36:14+03:00 WARN - During cls handshake connection from 3.91.205.89:54334 2024-02-20T22:36:14+03:00 WARN - Illegal SNI hostname received "91.149.187.60" 2024-02-20T22:36:14+03:00 WARN - During cls handshake connection from 3.91.205.89:54338 2024-02-20T22:36:14+03:00 WARN - Illegal SNI hostname received "91.149.187.60" 2024-02-20T22:36:14+03:00 WARN - During cls handshake connection from 3.91.205.89:54340 2024-02-20T22:36:14+03:00 WARN - Illegal SNI hostname received "91.149.187.60" 2024-02-20T22:36:14+03:00 WARN - During cls handshake connection from 3.91.205.89:54344 2024-02-20T22:36:15+03:00 WARN - Illegal SNI hostname received "91.149.187.60" 2024-02-20T22:36:15+03:00 WARN - During cls handshake connection from 3.91.205.89:54352 2024-02-20T22:36:15+03:00 WARN - Illegal SNI hostname received "91.149.187.60" 2024-02-20T22:36:15+03:00 WARN - During cls handshake connection from 3.91.205.89:54358 2024-02-20T22:36:15+03:00 WARN - Illegal SNI hostname received "91.149.187.60" 2024-02-20T22:36:15+03:00 WARN - During cls handshake connection from 3.91.205.89:54360 2024-02-20T22:36:15+03:00 WARN - Illegal SNI hostname received "91.149.187.60" 2024-02-20T22:36:15+03:00 WARN - During cls handshake connection from 3.91.205.89:54374 2024-02-20T22:36:16+03:00 WARN - Illegal SNI hostname received "91.149.187.60" 2024-02-20T22:36:16+03:00 WARN - During cls handshake connection from 3.91.205.89:54384 2024-02-20T22:36:16+03:00 WARN - Illegal SNI hostname received "91.149.187.60" 2024-02-20T22:36:16+03:00 WARN - During cls handshake connection from 3.91.205.89:54394 2024-02-20T22:36:16+03:00 WARN - Serving connection from 3.91.205.89:54318: Удаленный хост принудительно разорвал существующее подключение. (os error 10054) 2024-02-20T22:36:17+03:00 WARN - Illegal SNI hostname received "91.149.187.60" 2024-02-20T22:36:17+03:00 WARN - During cls handshake connection from 3.91.205.89:54396 2024-02-20T22:36:17+03:00 WARN - Illegal SNI hostname received "91.149.187.60" 2024-02-20T22:36:17+03:00 WARN - During cls handshake connection from 3.91.205.89:54398 2024-02-20T22:36:17+03:00 WARN - Illegal SNI hostname received "91.149.187.60" 2024-02-20T22:36:17+03:00 WARN - During cls handshake connection from 3.91.205.89:54410 2024-02-20T22:36:17+03:00 WARN - Illegal SNI hostname received "91.149.187.60" 2024-02-20T22:36:17+03:00 WARN - During cls handshake connection from 3.91.205.89:54424 2024-02-20T22:36:18+03:00 WARN - Illegal SNI hostname received "91.149.187.60" 2024-02-20T22:36:18+03:00 WARN - During cls handshake connection from 3.91.205.89:54440 2024-02-20T22:36:18+03:00 WARN - Illegal SNI hostname received "91.149.187.60" 2024-02-20T22:36:18+03:00 WARN - During cls handshake connection from 3.91.205.89:54456 2024-02-20T22:36:18+03:00 WARN - Illegal SNI hostname received "91.149.187.60" 2024-02-20T22:36:18+03:00 WARN - During cls handshake connection from 3.91.205.89:54466 2024-02-20T22:36:18+03:00 WARN - During cls handshake connection from 3.91.205.89:54472 2024-02-20T22:36:19+03:00 WARN - During cls handshake connection from 3.91.205.89:54486 2024-02-20T23:19:34+03:00 WARN - During cls handshake connection from 194.165.16.76:16170 2024-02-20T23:19:34+03:00 WARN - During cls handshake connection from 194.165.16.76:21276 2024-02-20T23:19:41+03:00 WARN - During cls handshake connection from 194.165.16.76:49271 2024-02-21T01:35:50+03:00 WARN - During cls handshake connection from 109.74.204.123:49430 2024-02-21T01:35:50+03:00 WARN - During cls handshake connection from 109.74.204.123:16952 2024-02-21T01:36:01+03:00 INFO - 109.74.204.123 2024-02-21T01:36:01+03:00 INFO - 109.74.204.123 2024-02-21T01:36:01+03:00 WARN - Serving connection from 109.74.204.123:35706: invalid HTTP version parsed 2024-02-21T01:36:02+03:00 WARN - Serving connection from 109.74.204.123:35828: invalid HTTP method parsed 2024-02-21T01:36:02+03:00 WARN - Serving connection from 109.74.204.123:43383: invalid HTTP method parsed 2024-02-21T01:36:02+03:00 WARN - Serving connection from 109.74.204.123:36002: invalid HTTP method parsed 2024-02-21T01:36:02+03:00 WARN - Serving connection from 109.74.204.123:36132: invalid HTTP method parsed 2024-02-21T01:36:02+03:00 WARN - Serving connection from 109.74.204.123:36220: invalid HTTP method parsed 2024-02-21T01:36:02+03:00 WARN - Serving connection from 109.74.204.123:36354: invalid HTTP method parsed 2024-02-21T01:36:03+03:00 WARN - Serving connection from 109.74.204.123:36486: invalid HTTP method parsed 2024-02-21T01:36:03+03:00 WARN - Serving connection from 109.74.204.123:36614: invalid HTTP method parsed 2024-02-21T01:36:03+03:00 WARN - Serving connection from 109.74.204.123:36708: invalid HTTP version parsed 2024-02-21T01:36:04+03:00 INFO - 109.74.204.123 2024-02-21T01:36:04+03:00 INFO - 109.74.204.123 2024-02-21T01:36:04+03:00 INFO - 109.74.204.123 2024-02-21T01:36:04+03:00 WARN - During cls handshake connection from 109.74.204.123:37660 2024-02-21T01:36:04+03:00 INFO - 109.74.204.123 2024-02-21T01:36:04+03:00 INFO - 109.74.204.123 2024-02-21T01:36:04+03:00 INFO - 109.74.204.123 2024-02-21T01:36:04+03:00 INFO - 109.74.204.123 2024-02-21T01:36:04+03:00 WARN - During cls handshake connection from 109.74.204.123:37810 2024-02-21T01:36:04+03:00 WARN - Serving connection from 109.74.204.123:37782: message head is too large 2024-02-21T01:36:04+03:00 INFO - 109.74.204.123 2024-02-21T01:36:04+03:00 INFO - 109.74.204.123 2024-02-21T01:36:04+03:00 INFO - 109.74.204.123 2024-02-21T01:36:04+03:00 INFO - 109.74.204.123 2024-02-21T01:36:04+03:00 INFO - 109.74.204.123 2024-02-21T01:36:04+03:00 INFO - 109.74.204.123 2024-02-21T01:36:04+03:00 INFO - 109.74.204.123 2024-02-21T01:36:04+03:00 INFO - 109.74.204.123 2024-02-21T01:36:09+03:00 WARN - During cls handshake connection from 109.74.204.123:38072 2024-02-21T01:36:09+03:00 WARN - During cls handshake connection from 109.74.204.123:38146 2024-02-21T01:36:09+03:00 WARN - During cls handshake connection from 109.74.204.123:38150 2024-02-21T01:36:09+03:00 WARN - During cls handshake connection from 109.74.204.123:38186 2024-02-21T01:36:09+03:00 WARN - During cls handshake connection from 109.74.204.123:38182 2024-02-21T01:36:09+03:00 WARN - During cls handshake connection from 109.74.204.123:38184 2024-02-21T01:36:09+03:00 WARN - During cls handshake connection from 109.74.204.123:38392 2024-02-21T01:36:09+03:00 WARN - During cls handshake connection from 109.74.204.123:38442 2024-02-21T01:36:09+03:00 WARN - During cls handshake connection from 109.74.204.123:39022 2024-02-21T01:36:09+03:00 WARN - During cls handshake connection from 109.74.204.123:39026 2024-02-21T01:36:09+03:00 WARN - During cls handshake connection from 109.74.204.123:39058 2024-02-21T01:36:09+03:00 WARN - During cls handshake connection from 109.74.204.123:39060 2024-02-21T01:36:09+03:00 WARN - During cls handshake connection from 109.74.204.123:39056 2024-02-21T01:36:09+03:00 WARN - During cls handshake connection from 109.74.204.123:39194 2024-02-21T01:36:09+03:00 WARN - During cls handshake connection from 109.74.204.123:39226 2024-02-21T01:36:10+03:00 INFO - 109.74.204.123 2024-02-21T01:36:10+03:00 INFO - 109.74.204.123 2024-02-21T01:36:10+03:00 INFO - 109.74.204.123 2024-02-21T01:36:10+03:00 INFO - 109.74.204.123 2024-02-21T01:36:15+03:00 WARN - During cls handshake connection from 109.74.204.123:46890 2024-02-21T01:36:15+03:00 WARN - During cls handshake connection from 109.74.204.123:46900 2024-02-21T01:36:15+03:00 WARN - During cls handshake connection from 109.74.204.123:46892 2024-02-21T01:36:15+03:00 WARN - During cls handshake connection from 109.74.204.123:7235 2024-02-21T01:36:15+03:00 WARN - During cls handshake connection from 109.74.204.123:46934 2024-02-21T01:36:15+03:00 INFO - 109.74.204.123 2024-02-21T01:36:15+03:00 WARN - During cls handshake connection from 109.74.204.123:47058 2024-02-21T01:36:15+03:00 WARN - During cls handshake connection from 109.74.204.123:47060 2024-02-21T01:36:15+03:00 WARN - During cls handshake connection from 109.74.204.123:47086 2024-02-21T01:36:15+03:00 WARN - During cls handshake connection from 109.74.204.123:47118 2024-02-21T01:36:15+03:00 WARN - During cls handshake connection from 109.74.204.123:47160 2024-02-21T01:36:15+03:00 WARN - During cls handshake connection from 109.74.204.123:47158 2024-02-21T01:36:15+03:00 WARN - During cls handshake connection from 109.74.204.123:47182 2024-02-21T01:36:15+03:00 WARN - During cls handshake connection from 109.74.204.123:47212 2024-02-21T01:36:15+03:00 WARN - During cls handshake connection from 109.74.204.123:47246 2024-02-21T01:36:15+03:00 WARN - During cls handshake connection from 109.74.204.123:47310 2024-02-21T01:36:15+03:00 WARN - During cls handshake connection from 109.74.204.123:47400 2024-02-21T01:36:15+03:00 WARN - During cls handshake connection from 109.74.204.123:47398 2024-02-21T01:36:15+03:00 WARN - During cls handshake connection from 109.74.204.123:47440 2024-02-21T01:36:15+03:00 WARN - During cls handshake connection from 109.74.204.123:47482 2024-02-21T01:36:15+03:00 WARN - During cls handshake connection from 109.74.204.123:47508 2024-02-21T01:36:15+03:00 WARN - During cls handshake connection from 109.74.204.123:47506 2024-02-21T01:36:15+03:00 WARN - During cls handshake connection from 109.74.204.123:47626 2024-02-21T01:36:16+03:00 WARN - During cls handshake connection from 109.74.204.123:47662 2024-02-21T01:36:16+03:00 WARN - During cls handshake connection from 109.74.204.123:47696 2024-02-21T01:36:16+03:00 WARN - During cls handshake connection from 109.74.204.123:47698 2024-02-21T01:36:16+03:00 WARN - During cls handshake connection from 109.74.204.123:47754 2024-02-21T01:36:16+03:00 WARN - During cls handshake connection from 109.74.204.123:47814 2024-02-21T01:36:16+03:00 WARN - During cls handshake connection from 109.74.204.123:47856 2024-02-21T01:36:16+03:00 WARN - During cls handshake connection from 109.74.204.123:47858 2024-02-21T01:36:16+03:00 WARN - During cls handshake connection from 109.74.204.123:47936 2024-02-21T01:36:16+03:00 WARN - During cls handshake connection from 109.74.204.123:47938 2024-02-21T01:36:16+03:00 WARN - During cls handshake connection from 109.74.204.123:47990 2024-02-21T01:36:16+03:00 WARN - During cls handshake connection from 109.74.204.123:47988 2024-02-21T01:36:16+03:00 WARN - During cls handshake connection from 109.74.204.123:48102 2024-02-21T01:36:16+03:00 WARN - During cls handshake connection from 109.74.204.123:48136 2024-02-21T01:36:16+03:00 WARN - During cls handshake connection from 109.74.204.123:48236 2024-02-21T01:36:16+03:00 WARN - During cls handshake connection from 109.74.204.123:48304 2024-02-21T01:36:16+03:00 WARN - During cls handshake connection from 109.74.204.123:48384 2024-02-21T01:36:16+03:00 WARN - During cls handshake connection from 109.74.204.123:48528 2024-02-21T01:36:17+03:00 WARN - During cls handshake connection from 109.74.204.123:48652 2024-02-21T01:36:17+03:00 WARN - During cls handshake connection from 109.74.204.123:48742 2024-02-21T01:36:17+03:00 WARN - During cls handshake connection from 109.74.204.123:48850 2024-02-21T01:36:17+03:00 WARN - During cls handshake connection from 109.74.204.123:49024 2024-02-21T01:36:17+03:00 WARN - During cls handshake connection from 109.74.204.123:49174 2024-02-21T01:36:17+03:00 WARN - During cls handshake connection from 109.74.204.123:49318 2024-02-21T01:36:17+03:00 WARN - During cls handshake connection from 109.74.204.123:49460 2024-02-21T01:36:17+03:00 WARN - During cls handshake connection from 109.74.204.123:49568 2024-02-21T01:36:17+03:00 WARN - During cls handshake connection from 109.74.204.123:49692 2024-02-21T01:36:18+03:00 WARN - During cls handshake connection from 109.74.204.123:49838 2024-02-21T01:36:18+03:00 WARN - During cls handshake connection from 109.74.204.123:49972 2024-02-21T01:36:18+03:00 WARN - During cls handshake connection from 109.74.204.123:50088 2024-02-21T01:36:18+03:00 WARN - During cls handshake connection from 109.74.204.123:50242 2024-02-21T01:36:18+03:00 WARN - During cls handshake connection from 109.74.204.123:50360 2024-02-21T01:36:26+03:00 WARN - During cls handshake connection from 109.74.204.123:57016 2024-02-21T03:23:24+03:00 WARN - During cls handshake connection from 198.235.24.204:62012 2024-02-21T03:30:46+03:00 WARN - During cls handshake connection from 192.241.232.13:39616 2024-02-21T06:14:28+03:00 INFO - 162.243.144.9 2024-02-21T06:22:46+03:00 INFO - 93.125.107.37 2024-02-21T06:22:46+03:00 INFO - 93.125.107.37 2024-02-21T06:22:46+03:00 INFO - 93.125.107.37 2024-02-21T06:22:46+03:00 INFO - 93.125.107.37 2024-02-21T09:55:12+03:00 WARN - During cls handshake connection from 167.94.145.59:56356 2024-02-21T09:55:16+03:00 INFO - 167.94.145.59 2024-02-21T09:55:16+03:00 WARN - Serving connection from 167.94.145.59:53878: error shutting down connection 2024-02-21T09:55:19+03:00 INFO - 167.94.145.59 2024-02-21T09:55:19+03:00 WARN - Serving connection from 167.94.145.59:44328: connection error 2024-02-21T10:04:01+03:00 WARN - During cls handshake connection from 23.168.152.83:46864 2024-02-21T10:46:55+03:00 WARN - During cls handshake connection from 194.165.16.10:45976 2024-02-21T10:46:55+03:00 WARN - During cls handshake connection from 194.165.16.10:46019 2024-02-21T10:46:55+03:00 WARN - During cls handshake connection from 194.165.16.10:46241 2024-02-21T12:21:22+03:00 WARN - Illegal SNI hostname received "91.149.187.60" 2024-02-21T12:21:22+03:00 WARN - During cls handshake connection from 167.248.133.189:57728 2024-02-21T12:21:23+03:00 WARN - Illegal SNI hostname received "91.149.187.60" 2024-02-21T12:21:23+03:00 WARN - During cls handshake connection from 167.248.133.189:34698 2024-02-21T12:21:23+03:00 WARN - Illegal SNI hostname received "91.149.187.60" 2024-02-21T12:21:23+03:00 WARN - During cls handshake connection from 167.248.133.189:38154 2024-02-21T12:21:24+03:00 WARN - Illegal SNI hostname received "91.149.187.60" 2024-02-21T12:21:24+03:00 WARN - During cls handshake connection from 167.248.133.189:34454 2024-02-21T12:21:24+03:00 WARN - Illegal SNI hostname received "91.149.187.60" 2024-02-21T12:21:24+03:00 WARN - During cls handshake connection from 167.248.133.189:54216 2024-02-21T12:21:26+03:00 WARN - Illegal SNI hostname received "91.149.187.60" 2024-02-21T12:21:26+03:00 WARN - During cls handshake connection from 167.248.133.189:38506 2024-02-21T12:21:26+03:00 WARN - Illegal SNI hostname received "91.149.187.60" 2024-02-21T12:21:26+03:00 WARN - During cls handshake connection from 167.248.133.189:56282 2024-02-21T12:21:26+03:00 WARN - Illegal SNI hostname received "91.149.187.60" 2024-02-21T12:21:26+03:00 WARN - During cls handshake connection from 167.248.133.189:49028 2024-02-21T12:21:28+03:00 WARN - Illegal SNI hostname received "91.149.187.60" 2024-02-21T12:21:28+03:00 WARN - During cls handshake connection from 167.248.133.189:58990 2024-02-21T12:21:28+03:00 WARN - Illegal SNI hostname received "91.149.187.60" 2024-02-21T12:21:28+03:00 WARN - During cls handshake connection from 167.248.133.189:35868 2024-02-21T15:02:43+03:00 WARN - During cls handshake connection from 141.105.97.128:53261 2024-02-21T15:02:43+03:00 WARN - During cls handshake connection from 141.105.97.128:53262 2024-02-21T16:21:19+03:00 WARN - During cls handshake connection from 87.236.176.193:44893 2024-02-21T16:21:34+03:00 WARN - During cls handshake connection from 87.236.176.214:55697 2024-02-21T16:21:47+03:00 WARN - During cls handshake connection from 87.236.176.209:50681 2024-02-21T16:22:02+03:00 WARN - During cls handshake connection from 87.236.176.214:38907 2024-02-21T16:22:14+03:00 WARN - During cls handshake connection from 87.236.176.200:59609 2024-02-21T16:22:29+03:00 WARN - During cls handshake connection from 87.236.176.214:60961 2024-02-21T16:22:44+03:00 WARN - During cls handshake connection from 87.236.176.217:55351 2024-02-21T16:22:59+03:00 WARN - During cls handshake connection from 87.236.176.192:36413 2024-02-21T16:23:14+03:00 WARN - During cls handshake connection from 87.236.176.199:53985 2024-02-21T16:23:30+03:00 WARN - During cls handshake connection from 87.236.176.212:53761 2024-02-21T16:23:45+03:00 WARN - During cls handshake connection from 87.236.176.214:49773 2024-02-21T16:24:00+03:00 WARN - During cls handshake connection from 87.236.176.215:56841 2024-02-21T16:24:15+03:00 WARN - During cls handshake connection from 87.236.176.196:47649 2024-02-21T16:24:30+03:00 WARN - During cls handshake connection from 87.236.176.210:51413 2024-02-21T16:24:30+03:00 WARN - During cls handshake connection from 87.236.176.210:44057 2024-02-21T16:24:49+03:00 INFO - 87.236.176.201 2024-02-21T16:24:50+03:00 WARN - Illegal SNI hostname received "91.149.187.60" 2024-02-21T16:24:50+03:00 WARN - During cls handshake connection from 87.236.176.130:55377 2024-02-21T16:25:24+03:00 WARN - Illegal SNI hostname received "91.149.187.60" 2024-02-21T16:25:24+03:00 WARN - During cls handshake connection from 87.236.176.113:60337 2024-02-21T16:25:57+03:00 WARN - Illegal SNI hostname received "91.149.187.60" 2024-02-21T16:25:57+03:00 WARN - During cls handshake connection from 87.236.176.122:38971 2024-02-21T16:26:30+03:00 WARN - Illegal SNI hostname received "91.149.187.60" 2024-02-21T16:26:30+03:00 WARN - During cls handshake connection from 87.236.176.140:42975 2024-02-21T16:27:03+03:00 WARN - Illegal SNI hostname received "91.149.187.60" 2024-02-21T16:27:03+03:00 WARN - During cls handshake connection from 87.236.176.134:39357 2024-02-21T16:27:36+03:00 WARN - Illegal SNI hostname received "91.149.187.60" 2024-02-21T16:27:36+03:00 WARN - During cls handshake connection from 87.236.176.115:60279 2024-02-21T16:28:10+03:00 WARN - Illegal SNI hostname received "91.149.187.60" 2024-02-21T16:28:10+03:00 WARN - During cls handshake connection from 87.236.176.119:39123 2024-02-21T16:28:43+03:00 WARN - Illegal SNI hostname received "91.149.187.60" 2024-02-21T16:28:43+03:00 WARN - During cls handshake connection from 87.236.176.139:49051 2024-02-21T16:29:16+03:00 WARN - Illegal SNI hostname received "91.149.187.60" 2024-02-21T16:29:16+03:00 WARN - During cls handshake connection from 87.236.176.138:46343 2024-02-21T16:29:49+03:00 WARN - Illegal SNI hostname received "91.149.187.60" 2024-02-21T16:29:49+03:00 WARN - During cls handshake connection from 87.236.176.136:42941 2024-02-21T20:53:35+03:00 WARN - During cls handshake connection from 45.227.254.54:51288 2024-02-21T20:53:35+03:00 WARN - During cls handshake connection from 45.227.254.54:51341 2024-02-21T20:53:35+03:00 WARN - During cls handshake connection from 45.227.254.54:53542 2024-02-22T01:20:16+03:00 WARN - During cls handshake connection from 167.99.239.31:46891 2024-02-22T01:20:29+03:00 WARN - During cls handshake connection from 167.99.239.31:42401 2024-02-22T01:20:29+03:00 WARN - During cls handshake connection from 167.99.239.31:43851 2024-02-22T01:20:30+03:00 WARN - During cls handshake connection from 167.99.239.31:32937 2024-02-22T01:20:41+03:00 INFO - 167.99.239.31 2024-02-22T01:20:42+03:00 WARN - Serving connection from 167.99.239.31:40907: invalid HTTP method parsed 2024-02-22T01:20:42+03:00 WARN - Serving connection from 167.99.239.31:41909: invalid HTTP method parsed 2024-02-22T01:20:43+03:00 WARN - Serving connection from 167.99.239.31:36467: invalid HTTP method parsed 2024-02-22T01:20:43+03:00 WARN - Serving connection from 167.99.239.31:43494: invalid HTTP method parsed 2024-02-22T03:09:52+03:00 WARN - During cls handshake connection from 198.235.24.246:63362 2024-02-22T04:00:51+03:00 WARN - During cls handshake connection from 152.32.141.208:58568 2024-02-22T04:00:54+03:00 WARN - During cls handshake connection from 152.32.141.208:60280 2024-02-22T04:01:03+03:00 INFO - 152.32.141.208 2024-02-22T04:01:04+03:00 WARN - Serving connection from 152.32.141.208:62842: invalid URI 2024-02-22T04:01:05+03:00 WARN - During cls handshake connection from 152.32.141.208:63038 2024-02-22T04:01:05+03:00 WARN - Illegal SNI hostname received "91.149.187.60" 2024-02-22T04:01:05+03:00 WARN - During cls handshake connection from 152.32.141.208:63158 2024-02-22T04:01:06+03:00 WARN - Illegal SNI hostname received "91.149.187.60" 2024-02-22T04:01:06+03:00 WARN - During cls handshake connection from 152.32.141.208:63278 2024-02-22T04:01:06+03:00 WARN - Illegal SNI hostname received "91.149.187.60" 2024-02-22T04:01:06+03:00 WARN - During cls handshake connection from 152.32.141.208:63406 2024-02-22T04:01:06+03:00 WARN - Illegal SNI hostname received "91.149.187.60" 2024-02-22T04:01:06+03:00 WARN - During cls handshake connection from 152.32.141.208:63516 2024-02-22T04:01:07+03:00 WARN - Illegal SNI hostname received "91.149.187.60" 2024-02-22T04:01:07+03:00 WARN - During cls handshake connection from 152.32.141.208:63620 2024-02-22T04:01:07+03:00 WARN - Illegal SNI hostname received "91.149.187.60" 2024-02-22T04:01:07+03:00 WARN - During cls handshake connection from 152.32.141.208:63722 2024-02-22T04:01:08+03:00 WARN - Illegal SNI hostname received "91.149.187.60" 2024-02-22T04:01:08+03:00 WARN - During cls handshake connection from 152.32.141.208:63940 2024-02-22T04:01:08+03:00 WARN - Illegal SNI hostname received "91.149.187.60" 2024-02-22T04:01:08+03:00 WARN - During cls handshake connection from 152.32.141.208:64030 2024-02-22T04:01:09+03:00 WARN - Illegal SNI hostname received "91.149.187.60" 2024-02-22T04:01:09+03:00 WARN - During cls handshake connection from 152.32.141.208:64196 2024-02-22T04:01:09+03:00 WARN - Illegal SNI hostname received "91.149.187.60" 2024-02-22T04:01:09+03:00 WARN - During cls handshake connection from 152.32.141.208:64232 2024-02-22T04:33:43+03:00 WARN - During cls handshake connection from 167.94.138.33:58236 2024-02-22T04:33:47+03:00 INFO - 167.94.138.33 2024-02-22T04:33:47+03:00 WARN - Serving connection from 167.94.138.33:49164: error shutting down connection 2024-02-22T04:33:51+03:00 INFO - 167.94.138.33 2024-02-22T04:33:52+03:00 WARN - Serving connection from 167.94.138.33:50156: connection error 2024-02-22T06:49:31+03:00 WARN - During cls handshake connection from 45.227.254.55:58703 2024-02-22T06:49:31+03:00 WARN - During cls handshake connection from 45.227.254.55:58833 2024-02-22T06:49:32+03:00 WARN - During cls handshake connection from 45.227.254.55:59193 2024-02-22T09:26:17+03:00 WARN - During cls handshake connection from 23.168.152.91:48272 2024-02-22T09:26:18+03:00 WARN - During cls handshake connection from 23.168.152.104:48280 2024-02-22T09:26:20+03:00 WARN - During cls handshake connection from 23.168.152.121:48296 2024-02-22T09:26:22+03:00 WARN - During cls handshake connection from 23.168.152.113:48302 2024-02-22T09:26:59+03:00 WARN - During cls handshake connection from 23.168.152.71:45196 2024-02-22T09:49:26+03:00 INFO - 93.125.107.37 2024-02-22T09:49:26+03:00 INFO - 93.125.107.37 2024-02-22T09:49:26+03:00 INFO - 93.125.107.37 2024-02-22T09:49:26+03:00 INFO - 93.125.107.37 2024-02-22T10:27:49+03:00 INFO - 213.184.251.229 2024-02-22T10:27:49+03:00 INFO - 213.184.251.229
Author
Owner

@Asmaelh commented on GitHub (Feb 23, 2024):

it took 3 days and the server froze, this is the whole log, i.e. there were very few requests. There is no response in either the browser or the application

<!-- gh-comment-id:1960699983 --> @Asmaelh commented on GitHub (Feb 23, 2024): it took 3 days and the server froze, this is the whole log, i.e. there were very few requests. There is no response in either the browser or the application
Author
Owner

@sigoden commented on GitHub (Feb 23, 2024):

The logs show no obvious problem.
Can you check the memory and open handles of the dufs process and see if there are any leaks? @Asmaelh

<!-- gh-comment-id:1960716256 --> @sigoden commented on GitHub (Feb 23, 2024): The logs show no obvious problem. Can you check the memory and open handles of the dufs process and see if there are any leaks? @Asmaelh
Author
Owner

@Asmaelh commented on GitHub (Feb 23, 2024):

there are no memory leaks, I do not know what else to look at. I'll stay on version 0.37 - it doesn't freeze.

<!-- gh-comment-id:1960731798 --> @Asmaelh commented on GitHub (Feb 23, 2024): there are no memory leaks, I do not know what else to look at. I'll stay on version 0.37 - it doesn't freeze.
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: sigoden/dufs#195