Giter Club home page Giter Club logo

tcpburn's Introduction

A tcp stream replay tool devoted to concurrentcy

Description

TCPBurn is a replay tool which focuses on concurrency. All TCP-based applications which could be replayed could be stressed by this powerful tool .

Characteristics

1) Network latency could be reserved
2) No need to bind multiple IP addresses and the number of client IP addresses 
   is unlimited
3) The maximum number of concurrent users is restricted to bandwidth, memory
   and CPU processing power
4) Only TCP-based applications that could be replayed are supported

Scenarios

1) Stress testing 
2) Comet
3) Performance testing

Architecture

tcpburn

As shown in the above Figure, TCPBurn consists of two parts: tcpburn and intercept. While tcpburn runs on the test server and sends the packets from pcap files, intercept runs on the assistant server and does some assistant work, such as passing response info to tcpburn.

tcpburn reads packets from pcap files and does the necessary processing (including TCP interaction simulation, network latency control, and common upper-layer interaction simulation), and uses raw socket output technique by default to send packets to the target server(pink arrows).

The only operation needed in the target server for TCPBurn is setting appropriate route commands to route response packets(green arrows) to the assistant server.

intercept is responsible for passing the response header to tcpburn. By capturing the response packets, intercept will extract response header information and send the response header to tcpburn using a special channel(purple arrows). When tcpburn receives the response header, it utilizes the header information to modify the attributes of pcap packets and continues to send another packet. It should be noticed that the responses from the target server are routed to the assistant server which should act as a black hole.

tcpburn configure Options

--with-debug      compile tcpburn with debug support (saved in a log file)
--pcap-send       send packets at the data link layer instead of the IP layer
--single          if intercept is configured with "--single" option, so does tcpburn
--comet           replay for comet applications

Installation and Running

1) intercept

a) Install intercept on the assistant server
  git clone git://github.com/session-replay-tools/intercept.git
  cd intercept
  ./configure --single  
  make
  make install

b) Running intercept on the assistant server(root privilege or the CAP_NET_RAW capability is required):

  ./intercept -F <filter> -i <device,> 

  Note that the filter format is the same as the pcap filter.

  For example:

    ./intercept -i eth0 -F 'tcp and src port 80' -d

    Intercept will capture response packets of the TCP-based application which 
  listens on port 80 from device eth0 

2) Set route commands on the target server which runs server applications

  Set route commands appropriately to route response packets to the assistant server

  For example:

  Assume 65.135.233.161 is the IP address of the assistant server. We set the following
  route commands to route all responses to the 62.135.200.x's clients to the assistant
  server.

  route add -net 62.135.200.0 netmask 255.255.255.0 gw 65.135.233.161

3) tcpburn (root privilege or the CAP_NET_RAW capability is required when running)

a) Install tcpburn on the test server
  git clone git://github.com/session-replay-tools/tcpburn.git
  cd tcpburn

  if not comet scenarios
    ./configure --single 
  else
    ./configure --single --comet  
  endif

  make
  make install

b) Running tcpburn on the test server(root privilege or the CAP_NET_RAW capability is required):
  ./tcpburn -x historyServerPort-targetServerIP:targetServerPort -f <pcapfile,> 
            -s <intercept address> -u <user num> -c <ip range,>

  For example:

  Assume 65.135.233.160 is the IP address of the target server and 10.110.10.161 is the
  internal IP address of the assistant server and 65.135.233.161 is the external IP 
  address of the assistant server.
    ./tcpburn -x 80-65.135.233.160:80 -f /path/to/80.pcap -s 10.110.10.161 
              -u 10000 -c 62.135.200.x

  tcpburn extracts packets from 80.pcap file on dst port 80 and replays these to the
  target server 65.135.233.160 which runs the application listening on port 80. Total 
  sessions replayed are 10000 and client IP addresses used are belonging to 62.135.200.x
  series. tcpburn connects to the assistant server(10.110.10.161) for asking response 
  information.

Note

1) All sessions are retrieved from pcap files and make sure the sessions in pcap files 
   are complete.
2) tcpburn uses raw socket to send packets by default, and if you want to avoid 
   ip_conntrack problems or get better performance, configure tcpburn with "--pcap-send"
   and refer to "./tcpburn -h" for how to set appropriate parameters for running.
3) The test server and the assistant server could share the same machine.
4) For comet applications, exclude publish sessions if they exist in pcap files.
5) tcpburn could not replay TCP-based sessions that could not be replayed, 
   such as SSL/TLS sessions
6) ip_forward should not be set on the assistant server.
7) Root privilege or the CAP_NET_RAW capability is required
8) Please execute "./tcpburn -h" or "./intercept -h" for more details.

Release History

  • 2014.09 v1.0 TCPBurn released

Bugs and feature requests

Have a bug or a feature request? Please open a new issue. Before opening any issue, please search for existing issues.

Technical support

tcpcopy

Copyright and license

Copyright 2019 under the BSD license.

tcpburn's People

Contributors

lazio579 avatar wangbin579 avatar wslfa avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

tcpburn's Issues

待解决问题

1)针对纯连接(没有请求)的测试支持
2)加入网络特性(比如网络延迟等)
3)部分浏览器看不到gryphon首页的完整的帮助文档(比如由于命令过长,只显示前面的内容)
4)回放完以后,需要有超时退出机制 ××××××××××××××××××

如何编译intercept,才能支持数百万并发连接?

为了支持数百万连接问题,编译intercept可以采用如下两种方式:
1)--million
可以支持多个tcpburn实例,但最多也就1千万连接,不能支持再多了

2)--single
这个没有涉及到路由问题,因此千万连接,甚至更多连接都没有问题,但要求tcpburn实例和intercept一一对应

tcpcopy离线回放和tcpburn的主要区别

tcpcopy离线回放,尽量去保持不同session的时序性,根据timestamp精确回放,而tcpburn并不保持pcap文件中的不同session的时序性,专注于并发性和comet的超高并发用户模拟,因此两者的用途是不一样的,而且实现时所采用的数据结构,两者也不相同.

通过log文件,如何查看运行效果?

active conns:代表目前活跃的连接数量

reject:代表被测试服务器拒绝的连接请求数量
reset recv:代表收到了多少测试服务器发送的reset数据包
fin recv:代表了收到了多少测试服务器发送的fin数据包

reset sent:代表了发送了多少reset数据包给测试服务器
fin sent:代表了发送了多少fin数据包给测试服务器

conns:代表了建立了多少连接数量(总共)
resp packs:代表了收到了多少测试服务器的响应包信息,包括各种类型的数据包
c-resp packs:代表了收到了多少含有内容(payload)的响应包信息(这些数据包是应用层面的数据包)

syn sent cnt:代表了发送了多少syn数据包给测试服务器
clt packs sent:代表了总共发送了多少数据包给测试服务器(包括各种数据包)
clt cont sent::代表了发送了多少带有上层应用(payload)的请求内容到测试服务器(只有建立了三次握手,才能发送)

并发数设置50000,连接数仅达到30000+

虚拟机操作系统:CentOS Linux 7 (Core)
Kernel: Linux 3.10.0-1160.el7.x86_64
内存:1G
处理器:1核

运行命令:
./intercept -i ens33 -F "tcp and src port 8090" -d
./tcpburn -x 8090-192.168.2.123:8090 -f /usr/local/tcpburn/sbin/03_5.pcap -s 192.168.2.201 -u 50000 -c 192.168.100.x

intercept 日志:
2022/04/26 09:46:58 +494 [notice] intercept version:1.0.0
2022/04/26 09:46:58 +494 [notice] intercept internal version:6
2022/04/26 09:46:58 +494 [notice] TC_SINGLE mode
2022/04/26 09:46:58 +494 [notice] TC_COMBINED mode
2022/04/26 09:46:58 +494 [notice] pcap version:libpcap version 1.5.3
2022/04/26 09:46:58 +494 [notice] HAVE_SET_IMMEDIATE_MODE is true
2022/04/26 09:46:58 +494 [notice] TC_ADVANCED mode
2022/04/26 09:46:58 +494 [notice] epoll mode
2022/04/26 09:46:58 +494 [notice] device:ens33
2022/04/26 09:46:58 +494 [notice] user filter:tcp and src port 8090
2022/04/26 09:46:58 +494 [notice] msg listen socket:5
2022/04/26 09:46:58 +494 [notice] pcap open,device:ens33
2022/04/26 09:46:58 +494 [notice] pcap_set_buffer_size:16777216
2022/04/26 11:13:09 +061 [notice] it adds fd:7
2022/04/26 11:13:09 +061 [warn] it does not support distributed clients
2022/04/26 11:13:09 +061 [notice] it adds fd:8
2022/04/26 11:13:09 +064 [info] malloc memory for fd:7
2022/04/26 11:13:09 +064 [info] malloc memory for fd:8
2022/04/26 11:13:28 +680 [notice] total resp packs:1189844, all:1189844, route:0, sock write cnt:163756
2022/04/26 11:13:54 +528 [notice] recv length 0,fd:7
2022/04/26 11:13:54 +528 [notice] release tunnel resources, fd:7
2022/04/26 11:13:54 +528 [notice] enter tc_event_destroy:7
2022/04/26 11:13:54 +528 [notice] destroy event:7
2022/04/26 11:13:54 +528 [notice] return -1,fd:8 (Connection reset by peer)
2022/04/26 11:13:54 +528 [notice] release tunnel resources, fd:8
2022/04/26 11:13:54 +528 [notice] enter tc_event_destroy:8
2022/04/26 11:13:54 +528 [notice] destroy event:8
2022/04/26 11:13:58 +680 [notice] total resp packs:1242658, all:1242658, route:0, sock write cnt:192028
2022/04/26 11:14:28 +680 [notice] total resp packs:1297919, all:1297919, route:0, sock write cnt:192028
2022/04/26 11:14:58 +680 [notice] total resp packs:1360834, all:1360834, route:0, sock write cnt:192028
2022/04/26 11:15:28 +680 [notice] total resp packs:1424702, all:1424702, route:0, sock write cnt:192028
2022/04/26 11:15:58 +681 [notice] total resp packs:1525755, all:1525755, route:0, sock write cnt:192028
2022/04/26 11:16:28 +682 [notice] total resp packs:1546701, all:1546701, route:0, sock write cnt:192028
2022/04/26 11:16:58 +682 [notice] total resp packs:1556440, all:1556440, route:0, sock write cnt:192028
2022/04/26 11:17:28 +684 [notice] total resp packs:1556444, all:1556444, route:0, sock write cnt:192028

tcpburn 日志:
2022/04/26 11:13:09 +060 [notice] tcpburn version:1.0.0
2022/04/26 11:13:09 +060 [notice] target:8090-192.168.2.123:8090
2022/04/26 11:13:09 +060 [notice] pcap version:libpcap version 1.5.3
2022/04/26 11:13:09 +060 [notice] TC_SINGLE mode
2022/04/26 11:13:09 +060 [notice] TC_COMET mode
2022/04/26 11:13:09 +060 [notice] keepalive timeout:75
2022/04/26 11:13:09 +060 [notice] set global port for tcpburn
2022/04/26 11:13:09 +060 [notice] client ips:192.168.100.x
2022/04/26 11:13:09 +060 [notice] parallel connections per target:2
2022/04/26 11:13:09 +060 [notice] throughput factor:1,accelerate:1
2022/04/26 11:13:09 +060 [notice] init connections speed:1024
2022/04/26 11:13:09 +060 [notice] s parameter:192.168.2.201
2022/04/26 11:13:09 +060 [notice] set only ip for burn
2022/04/26 11:13:09 +060 [info] connect to remote server(192.168.2.201:36524)
2022/04/26 11:13:09 +060 [info] connect to remote server(192.168.2.201:36524)
2022/04/26 11:13:09 +060 [notice] read over from file:/usr/local/tcpburn/sbin/03_5.pcap
2022/04/26 11:13:09 +060 [notice] pool size:5912
2022/04/26 11:13:09 +060 [notice] stop, null from pcap_next
2022/04/26 11:13:09 +060 [info] total packets: 60, clt packets:35
2022/04/26 11:13:09 +060 [notice] pool used:3656
2022/04/26 11:13:09 +060 [info] enter tc_build_users
2022/04/26 11:13:09 +060 [notice] users:50000, sess:5, total packets needed sent:150000
2022/04/26 11:13:09 +060 [info] leave tc_build_users
2022/04/26 11:13:14 +061 [notice] active conns:4156
2022/04/26 11:13:14 +061 [notice] reject:0, reset recv:0,fin recv:0
2022/04/26 11:13:14 +061 [notice] reset sent:0, fin:0
2022/04/26 11:13:14 +061 [notice] retrans:0, syn retrans:0
2022/04/26 11:13:14 +061 [notice] conns:4156,resp packs:12566,c-resp packs:4256
2022/04/26 11:13:14 +061 [notice] syn sent cnt:4156,clt packs sent:15189,clt cont sent:4155
2022/04/26 11:13:19 +062 [notice] active conns:8130
2022/04/26 11:13:19 +062 [notice] reject:0, reset recv:0,fin recv:0
2022/04/26 11:13:19 +062 [notice] reset sent:0, fin:0
2022/04/26 11:13:19 +062 [notice] retrans:0, syn retrans:0
2022/04/26 11:13:19 +062 [notice] conns:8130,resp packs:22125,c-resp packs:5868
2022/04/26 11:13:19 +062 [notice] syn sent cnt:8131,clt packs sent:28117,clt cont sent:8128
2022/04/26 11:13:24 +062 [notice] active conns:12155
2022/04/26 11:13:24 +062 [notice] reject:0, reset recv:0,fin recv:0
2022/04/26 11:13:24 +062 [notice] reset sent:0, fin:0
2022/04/26 11:13:24 +062 [notice] retrans:0, syn retrans:0
2022/04/26 11:13:24 +062 [notice] conns:12155,resp packs:32014,c-resp packs:7706
2022/04/26 11:13:24 +062 [notice] syn sent cnt:12156,clt packs sent:41393,clt cont sent:12155
2022/04/26 11:13:29 +063 [notice] active conns:16112
2022/04/26 11:13:29 +063 [notice] reject:0, reset recv:0,fin recv:0
2022/04/26 11:13:29 +063 [notice] reset sent:0, fin:0
2022/04/26 11:13:29 +063 [notice] retrans:0, syn retrans:0
2022/04/26 11:13:29 +063 [notice] conns:16112,resp packs:42047,c-resp packs:9826
2022/04/26 11:13:29 +063 [notice] syn sent cnt:16112,clt packs sent:54635,clt cont sent:16110
2022/04/26 11:13:34 +063 [notice] active conns:20046
2022/04/26 11:13:34 +063 [notice] reject:0, reset recv:0,fin recv:0
2022/04/26 11:13:34 +063 [notice] reset sent:0, fin:0
2022/04/26 11:13:34 +063 [notice] retrans:0, syn retrans:0
2022/04/26 11:13:34 +063 [notice] conns:20046,resp packs:51898,c-resp packs:11808
2022/04/26 11:13:34 +063 [notice] syn sent cnt:20047,clt packs sent:67748,clt cont sent:20046
2022/04/26 11:13:39 +063 [notice] active conns:23898
2022/04/26 11:13:39 +063 [notice] reject:0, reset recv:0,fin recv:0
2022/04/26 11:13:39 +063 [notice] reset sent:0, fin:0
2022/04/26 11:13:39 +063 [notice] retrans:2, syn retrans:212
2022/04/26 11:13:39 +063 [notice] conns:23898,resp packs:61486,c-resp packs:13693
2022/04/26 11:13:39 +063 [notice] syn sent cnt:24111,clt packs sent:80742,clt cont sent:23899
2022/04/26 11:13:44 +063 [notice] active conns:27842
2022/04/26 11:13:44 +063 [notice] reject:0, reset recv:0,fin recv:0
2022/04/26 11:13:44 +063 [notice] reset sent:0, fin:0
2022/04/26 11:13:44 +063 [notice] retrans:2, syn retrans:212
2022/04/26 11:13:44 +063 [notice] conns:27842,resp packs:71417,c-resp packs:15735
2022/04/26 11:13:44 +063 [notice] syn sent cnt:28055,clt packs sent:93929,clt cont sent:27844
2022/04/26 11:13:48 +180 [error] raw fd:6 (Operation not permitted)
2022/04/26 11:13:48 +180 [error] send error,tot_len:60,cont_len:0
2022/04/26 11:13:48 +180 [warn] sig 64 received
2022/04/26 11:13:48 +180 [notice] active conns:31109
2022/04/26 11:13:48 +180 [notice] reject:0, reset recv:0,fin recv:0
2022/04/26 11:13:48 +180 [notice] reset sent:0, fin:0
2022/04/26 11:13:48 +180 [notice] retrans:2, syn retrans:212
2022/04/26 11:13:48 +180 [notice] conns:31109,resp packs:79451,c-resp packs:17235
2022/04/26 11:13:48 +180 [notice] syn sent cnt:31323,clt packs sent:104682,clt cont sent:31111
2022/04/26 11:13:51 +154 [info] sleep a sec when recycling
2022/04/26 11:13:51 +154 [notice] conn fails:192.168.100.174:32960
2022/04/26 11:13:51 +154 [notice] conn fails:192.168.100.33:32964
2022/04/26 11:13:51 +154 [notice] conn fails:192.168.100.107:32768
2022/04/26 11:13:51 +154 [notice] conn fails:192.168.100.126:32773
2022/04/26 11:13:51 +154 [notice] conn fails:192.168.100.145:32778
...
2022/04/26 11:13:51 +154 [notice] conn fails:192.168.100.78:32940
2022/04/26 11:13:51 +154 [notice] conn fails:192.168.100.238:32941
2022/04/26 11:13:51 +154 [notice] conn fails:192.168.100.97:32945
2022/04/26 11:13:51 +154 [notice] conn fails:192.168.100.116:32950
2022/04/26 11:13:53 +524 [info] last sleep a sec when recycling
2022/04/26 11:13:53 +524 [notice] send 31111 resets to release tcp resources
2022/04/26 11:13:53 +524 [notice] valid sess:5
2022/04/26 11:13:53 +524 [notice] tc_event_loop_finish over

使用两台上述配置的虚拟机同时启动并发30000,连接达50000+,未达60000
其中一台虚拟机的intercept日志:
2022/04/21 14:20:52 +964 [notice] it adds fd:8
2022/04/21 14:20:52 +964 [warn] it does not support distributed clients
2022/04/21 14:20:52 +964 [notice] release tunnel resources, fd:9
2022/04/21 14:20:52 +964 [notice] enter tc_event_destroy:9
2022/04/21 14:20:52 +964 [notice] delayed destroy ev:9
2022/04/21 14:20:52 +964 [notice] release tunnel resources, fd:7
2022/04/21 14:20:52 +964 [notice] enter tc_event_destroy:7
2022/04/21 14:20:52 +964 [notice] destroy prev ev:7
2022/04/21 14:20:52 +964 [notice] destroy event:7
2022/04/21 14:20:52 +964 [notice] delayed destroy ev:7
2022/04/21 14:20:52 +964 [notice] it adds fd:7
2022/04/21 14:20:52 +976 [info] malloc memory for fd:7
2022/04/21 14:20:52 +976 [info] malloc memory for fd:8
2022/04/21 14:21:18 +195 [notice] total resp packs:798039, all:798039, route:0, sock write cnt:212887
2022/04/21 14:21:48 +196 [notice] total resp packs:830619, all:830619, route:0, sock write cnt:232525
2022/04/21 14:22:18 +197 [notice] total resp packs:836708, all:836708, route:0, sock write cnt:237796
2022/04/21 14:22:48 +198 [notice] total resp packs:842669, all:842669, route:0, sock write cnt:242888
2022/04/21 14:23:18 +199 [notice] total resp packs:848507, all:848507, route:0, sock write cnt:248033
2022/04/21 14:23:48 +199 [notice] total resp packs:854453, all:854453, route:0, sock write cnt:253166
2022/04/21 14:24:18 +199 [notice] total resp packs:860207, all:860207, route:0, sock write cnt:258185
2022/04/21 14:24:48 +199 [notice] total resp packs:866182, all:866182, route:0, sock write cnt:263336
2022/04/21 14:25:18 +199 [notice] total resp packs:1013750, all:1013750, route:0, sock write cnt:276288
2022/04/21 14:25:48 +200 [notice] total resp packs:1016711, all:1016711, route:0, sock write cnt:276573
2022/04/21 14:26:18 +201 [notice] total resp packs:1018991, all:1018991, route:0, sock write cnt:276816
2022/04/21 14:26:48 +204 [notice] total resp packs:1018991, all:1018991, route:0, sock write cnt:276816

tcpburn日志:
2022/04/21 14:20:52 +962 [notice] tcpburn version:1.0.0
2022/04/21 14:20:52 +962 [notice] target:8090-192.168.2.123:8090
2022/04/21 14:20:52 +962 [notice] pcap version:libpcap version 1.5.3
2022/04/21 14:20:52 +962 [notice] TC_SINGLE mode
2022/04/21 14:20:52 +962 [notice] TC_COMET mode
2022/04/21 14:20:52 +962 [notice] keepalive timeout:75
2022/04/21 14:20:52 +962 [notice] set global port for tcpburn
2022/04/21 14:20:52 +962 [notice] client ips:192.168.100.x
2022/04/21 14:20:52 +962 [notice] parallel connections per target:2
2022/04/21 14:20:52 +962 [notice] throughput factor:1,accelerate:1
2022/04/21 14:20:52 +962 [notice] init connections speed:1024
2022/04/21 14:20:52 +962 [notice] s parameter:192.168.2.201
2022/04/21 14:20:52 +962 [notice] set only ip for burn
2022/04/21 14:20:52 +962 [info] connect to remote server(192.168.2.201:36524)
2022/04/21 14:20:52 +962 [info] connect to remote server(192.168.2.201:36524)
2022/04/21 14:20:52 +962 [notice] read over from file:/usr/local/tcpburn/sbin/03_5.pcap
2022/04/21 14:20:52 +962 [notice] pool size:5912
2022/04/21 14:20:52 +962 [notice] stop, null from pcap_next
2022/04/21 14:20:52 +962 [info] total packets: 60, clt packets:35
2022/04/21 14:20:52 +962 [notice] pool used:3656
2022/04/21 14:20:52 +962 [info] enter tc_build_users
2022/04/21 14:20:52 +962 [notice] users:30000, sess:5, total packets needed sent:90000
2022/04/21 14:20:52 +962 [info] leave tc_build_users
2022/04/21 14:20:57 +962 [notice] active conns:2821
2022/04/21 14:20:57 +962 [notice] reject:0, reset recv:0,fin recv:0
2022/04/21 14:20:57 +962 [notice] reset sent:0, fin:0
2022/04/21 14:20:57 +962 [notice] retrans:12, syn retrans:179
2022/04/21 14:20:57 +962 [notice] conns:2821,resp packs:6039,c-resp packs:402
2022/04/21 14:20:57 +962 [notice] syn sent cnt:3687,clt packs sent:9589,clt cont sent:2839
2022/04/21 14:21:02 +962 [notice] active conns:7303
2022/04/21 14:21:02 +962 [notice] reject:0, reset recv:0,fin recv:0
2022/04/21 14:21:02 +962 [notice] reset sent:0, fin:0
2022/04/21 14:21:02 +962 [notice] retrans:33, syn retrans:840
2022/04/21 14:21:02 +962 [notice] conns:7303,resp packs:18297,c-resp packs:3682
2022/04/21 14:21:02 +962 [notice] syn sent cnt:8356,clt packs sent:25333,clt cont sent:7347
2022/04/21 14:21:07 +962 [notice] active conns:11147
2022/04/21 14:21:07 +962 [notice] reject:0, reset recv:0,fin recv:0
2022/04/21 14:21:07 +962 [notice] reset sent:0, fin:0
2022/04/21 14:21:07 +962 [notice] retrans:33, syn retrans:840
2022/04/21 14:21:07 +962 [notice] conns:11147,resp packs:27846,c-resp packs:5544
2022/04/21 14:21:07 +962 [notice] syn sent cnt:12200,clt packs sent:38040,clt cont sent:11191
2022/04/21 14:21:12 +962 [notice] active conns:14845
2022/04/21 14:21:12 +962 [notice] reject:0, reset recv:0,fin recv:0
2022/04/21 14:21:12 +962 [notice] reset sent:0, fin:0
2022/04/21 14:21:12 +962 [notice] retrans:38, syn retrans:1323
2022/04/21 14:21:12 +962 [notice] conns:14845,resp packs:36843,c-resp packs:7146
2022/04/21 14:21:12 +962 [notice] syn sent cnt:16398,clt packs sent:50670,clt cont sent:14895
2022/04/21 14:21:17 +962 [notice] active conns:18617
2022/04/21 14:21:17 +962 [notice] reject:0, reset recv:0,fin recv:0
2022/04/21 14:21:17 +962 [notice] reset sent:0, fin:0
2022/04/21 14:21:17 +962 [notice] retrans:42, syn retrans:1849
2022/04/21 14:21:17 +962 [notice] conns:18617,resp packs:46324,c-resp packs:9084
2022/04/21 14:21:17 +962 [notice] syn sent cnt:20706,clt packs sent:63779,clt cont sent:18670
2022/04/21 14:21:22 +962 [notice] active conns:22521
2022/04/21 14:21:22 +962 [notice] reject:0, reset recv:0,fin recv:0
2022/04/21 14:21:22 +962 [notice] reset sent:0, fin:0
2022/04/21 14:21:22 +962 [notice] retrans:49, syn retrans:1880
2022/04/21 14:21:22 +962 [notice] conns:22521,resp packs:56113,c-resp packs:11063
2022/04/21 14:21:22 +962 [notice] syn sent cnt:24636,clt packs sent:76841,clt cont sent:22582
2022/04/21 14:21:27 +962 [notice] active conns:26251
2022/04/21 14:21:27 +962 [notice] reject:0, reset recv:0,fin recv:0
2022/04/21 14:21:27 +962 [notice] reset sent:0, fin:0
2022/04/21 14:21:27 +962 [notice] retrans:58, syn retrans:2351
2022/04/21 14:21:27 +962 [notice] conns:26251,resp packs:65391,c-resp packs:12880
2022/04/21 14:21:27 +962 [notice] syn sent cnt:28856,clt packs sent:89682,clt cont sent:26321
2022/04/21 14:21:32 +507 [notice] ignite completely
2022/04/21 14:21:32 +962 [notice] active conns:29697
2022/04/21 14:21:32 +962 [notice] reject:0, reset recv:0,fin recv:0
2022/04/21 14:21:32 +962 [notice] reset sent:0, fin:0
2022/04/21 14:21:32 +962 [notice] retrans:63, syn retrans:2745
2022/04/21 14:21:32 +962 [notice] conns:29697,resp packs:74332,c-resp packs:14928
2022/04/21 14:21:32 +962 [notice] syn sent cnt:32745,clt packs sent:101864,clt cont sent:29772
2022/04/21 14:21:37 +962 [notice] active conns:29697
2022/04/21 14:21:37 +962 [notice] reject:0, reset recv:0,fin recv:0
2022/04/21 14:21:37 +962 [notice] reset sent:0, fin:0
2022/04/21 14:21:37 +962 [notice] retrans:71, syn retrans:2821
2022/04/21 14:21:37 +962 [notice] conns:29697,resp packs:76189,c-resp packs:16781
2022/04/21 14:21:37 +962 [notice] syn sent cnt:32821,clt packs sent:103285,clt cont sent:29784
2022/04/21 14:21:42 +963 [notice] active conns:29697
2022/04/21 14:21:42 +963 [notice] reject:0, reset recv:0,fin recv:0
2022/04/21 14:21:42 +963 [notice] reset sent:0, fin:0
2022/04/21 14:21:42 +963 [notice] retrans:81, syn retrans:2821
2022/04/21 14:21:42 +963 [notice] conns:29697,resp packs:78012,c-resp packs:18602
2022/04/21 14:21:42 +963 [notice] syn sent cnt:32821,clt packs sent:104526,clt cont sent:29794
2022/04/21 14:21:47 +964 [notice] active conns:29697
2022/04/21 14:21:47 +964 [notice] reject:0, reset recv:0,fin recv:0
2022/04/21 14:21:47 +964 [notice] reset sent:0, fin:0
2022/04/21 14:21:47 +964 [notice] retrans:91, syn retrans:2821
2022/04/21 14:21:47 +964 [notice] conns:29697,resp packs:79250,c-resp packs:19840
2022/04/21 14:21:47 +964 [notice] syn sent cnt:32821,clt packs sent:105425,clt cont sent:29804
2022/04/21 14:21:48 +838 [notice] recv rst from back:32836
2022/04/21 14:21:48 +839 [notice] recv rst from back:32832
2022/04/21 14:21:52 +963 [notice] user time used:0
2022/04/21 14:21:52 +963 [notice] sys time used:9
2022/04/21 14:21:52 +963 [notice] max memory size:7864
2022/04/21 14:21:52 +965 [notice] active conns:29695
2022/04/21 14:21:52 +965 [notice] reject:0, reset recv:2,fin recv:0
2022/04/21 14:21:52 +965 [notice] reset sent:0, fin:0
2022/04/21 14:21:52 +965 [notice] retrans:93, syn retrans:2821
2022/04/21 14:21:52 +965 [notice] conns:29697,resp packs:80373,c-resp packs:20961
2022/04/21 14:21:52 +965 [notice] syn sent cnt:32821,clt packs sent:106227,clt cont sent:29806
2022/04/21 14:21:57 +965 [notice] active conns:29695
2022/04/21 14:21:57 +965 [notice] reject:0, reset recv:2,fin recv:0
2022/04/21 14:21:57 +965 [notice] reset sent:0, fin:0
2022/04/21 14:21:57 +965 [notice] retrans:93, syn retrans:2821
2022/04/21 14:21:57 +965 [notice] conns:29697,resp packs:81458,c-resp packs:22046
2022/04/21 14:21:57 +965 [notice] syn sent cnt:32821,clt packs sent:106994,clt cont sent:29806
2022/04/21 14:22:02 +966 [notice] active conns:29695
2022/04/21 14:22:02 +966 [notice] reject:0, reset recv:2,fin recv:0
2022/04/21 14:22:02 +966 [notice] reset sent:0, fin:0
2022/04/21 14:22:02 +966 [notice] retrans:93, syn retrans:2821
2022/04/21 14:22:02 +966 [notice] conns:29697,resp packs:82452,c-resp packs:23040
2022/04/21 14:22:02 +966 [notice] syn sent cnt:32821,clt packs sent:107671,clt cont sent:29806
2022/04/21 14:22:07 +967 [notice] active conns:29695
2022/04/21 14:22:07 +967 [notice] reject:0, reset recv:2,fin recv:0
2022/04/21 14:22:07 +967 [notice] reset sent:0, fin:0
2022/04/21 14:22:07 +967 [notice] retrans:93, syn retrans:2821
2022/04/21 14:22:07 +967 [notice] conns:29697,resp packs:83451,c-resp packs:24039
2022/04/21 14:22:07 +967 [notice] syn sent cnt:32821,clt packs sent:108399,clt cont sent:29806
2022/04/21 14:22:12 +968 [notice] active conns:29695
2022/04/21 14:22:12 +968 [notice] reject:0, reset recv:2,fin recv:0
2022/04/21 14:22:12 +968 [notice] reset sent:0, fin:0
2022/04/21 14:22:12 +968 [notice] retrans:93, syn retrans:2821
2022/04/21 14:22:12 +968 [notice] conns:29697,resp packs:84415,c-resp packs:25003
2022/04/21 14:22:12 +968 [notice] syn sent cnt:32821,clt packs sent:109122,clt cont sent:29806
2022/04/21 14:22:17 +968 [notice] active conns:29695
2022/04/21 14:22:17 +968 [notice] reject:0, reset recv:2,fin recv:0
2022/04/21 14:22:17 +968 [notice] reset sent:0, fin:0
2022/04/21 14:22:17 +968 [notice] retrans:93, syn retrans:2821
2022/04/21 14:22:17 +968 [notice] conns:29697,resp packs:85375,c-resp packs:25963
2022/04/21 14:22:17 +968 [notice] syn sent cnt:32821,clt packs sent:109816,clt cont sent:29806
2022/04/21 14:22:22 +970 [notice] active conns:29695
2022/04/21 14:22:22 +970 [notice] reject:0, reset recv:2,fin recv:0
2022/04/21 14:22:22 +970 [notice] reset sent:0, fin:0
2022/04/21 14:22:22 +970 [notice] retrans:93, syn retrans:2821
2022/04/21 14:22:22 +970 [notice] conns:29697,resp packs:86350,c-resp packs:26938
2022/04/21 14:22:22 +970 [notice] syn sent cnt:32821,clt packs sent:110539,clt cont sent:29806
2022/04/21 14:22:27 +971 [notice] active conns:29695
2022/04/21 14:22:27 +971 [notice] reject:0, reset recv:2,fin recv:0
2022/04/21 14:22:27 +971 [notice] reset sent:0, fin:0
2022/04/21 14:22:27 +971 [notice] retrans:93, syn retrans:2821
2022/04/21 14:22:27 +971 [notice] conns:29697,resp packs:87413,c-resp packs:28001
2022/04/21 14:22:27 +971 [notice] syn sent cnt:32821,clt packs sent:111327,clt cont sent:29806
2022/04/21 14:22:32 +972 [notice] active conns:29695
2022/04/21 14:22:32 +972 [notice] reject:0, reset recv:2,fin recv:0
2022/04/21 14:22:32 +972 [notice] reset sent:0, fin:0
2022/04/21 14:22:32 +972 [notice] retrans:93, syn retrans:2821
2022/04/21 14:22:32 +972 [notice] conns:29697,resp packs:88284,c-resp packs:28872
2022/04/21 14:22:32 +972 [notice] syn sent cnt:32821,clt packs sent:111967,clt cont sent:29806
2022/04/21 14:22:37 +973 [notice] active conns:29695
2022/04/21 14:22:37 +973 [notice] reject:0, reset recv:2,fin recv:0
2022/04/21 14:22:37 +973 [notice] reset sent:0, fin:0
2022/04/21 14:22:37 +973 [notice] retrans:93, syn retrans:2821
2022/04/21 14:22:37 +973 [notice] conns:29697,resp packs:89256,c-resp packs:29844
2022/04/21 14:22:37 +973 [notice] syn sent cnt:32821,clt packs sent:112666,clt cont sent:29806
2022/04/21 14:22:42 +974 [notice] active conns:29695
2022/04/21 14:22:42 +974 [notice] reject:0, reset recv:2,fin recv:0
2022/04/21 14:22:42 +974 [notice] reset sent:0, fin:0
2022/04/21 14:22:42 +974 [notice] retrans:93, syn retrans:2821
2022/04/21 14:22:42 +974 [notice] conns:29697,resp packs:90330,c-resp packs:30918
2022/04/21 14:22:42 +974 [notice] syn sent cnt:32821,clt packs sent:113434,clt cont sent:29806
2022/04/21 14:22:47 +974 [notice] active conns:29695
2022/04/21 14:22:47 +974 [notice] reject:0, reset recv:2,fin recv:0
2022/04/21 14:22:47 +974 [notice] reset sent:0, fin:0
2022/04/21 14:22:47 +974 [notice] retrans:93, syn retrans:2821
2022/04/21 14:22:47 +974 [notice] conns:29697,resp packs:91293,c-resp packs:31881
2022/04/21 14:22:47 +974 [notice] syn sent cnt:32821,clt packs sent:114121,clt cont sent:29806
2022/04/21 14:22:52 +963 [notice] user time used:0
2022/04/21 14:22:52 +963 [notice] sys time used:12
2022/04/21 14:22:52 +963 [notice] max memory size:7864
2022/04/21 14:22:52 +974 [notice] active conns:29695
2022/04/21 14:22:52 +974 [notice] reject:0, reset recv:2,fin recv:0
2022/04/21 14:22:52 +974 [notice] reset sent:0, fin:0
2022/04/21 14:22:52 +974 [notice] retrans:93, syn retrans:2821
2022/04/21 14:22:52 +974 [notice] conns:29697,resp packs:92250,c-resp packs:32838
2022/04/21 14:22:52 +974 [notice] syn sent cnt:32821,clt packs sent:114821,clt cont sent:29806
2022/04/21 14:22:57 +975 [notice] active conns:29695
2022/04/21 14:22:57 +975 [notice] reject:0, reset recv:2,fin recv:0
2022/04/21 14:22:57 +975 [notice] reset sent:0, fin:0
2022/04/21 14:22:57 +975 [notice] retrans:93, syn retrans:2821
2022/04/21 14:22:57 +975 [notice] conns:29697,resp packs:93203,c-resp packs:33791
2022/04/21 14:22:57 +975 [notice] syn sent cnt:32821,clt packs sent:115462,clt cont sent:29806
2022/04/21 14:23:02 +976 [notice] active conns:29695
2022/04/21 14:23:02 +976 [notice] reject:0, reset recv:2,fin recv:0
2022/04/21 14:23:02 +976 [notice] reset sent:0, fin:0
2022/04/21 14:23:02 +976 [notice] retrans:93, syn retrans:2821
2022/04/21 14:23:02 +976 [notice] conns:29697,resp packs:94249,c-resp packs:34837
2022/04/21 14:23:02 +976 [notice] syn sent cnt:32821,clt packs sent:116271,clt cont sent:29806
2022/04/21 14:23:07 +977 [notice] active conns:29695
2022/04/21 14:23:07 +977 [notice] reject:0, reset recv:2,fin recv:0
2022/04/21 14:23:07 +977 [notice] reset sent:0, fin:0
2022/04/21 14:23:07 +977 [notice] retrans:93, syn retrans:2821
2022/04/21 14:23:07 +977 [notice] conns:29697,resp packs:95225,c-resp packs:35813
2022/04/21 14:23:07 +977 [notice] syn sent cnt:32821,clt packs sent:117002,clt cont sent:29806
2022/04/21 14:23:12 +978 [notice] active conns:29695
2022/04/21 14:23:12 +978 [notice] reject:0, reset recv:2,fin recv:0
2022/04/21 14:23:12 +978 [notice] reset sent:0, fin:0
2022/04/21 14:23:12 +978 [notice] retrans:93, syn retrans:2821
2022/04/21 14:23:12 +978 [notice] conns:29697,resp packs:96212,c-resp packs:36800
2022/04/21 14:23:12 +978 [notice] syn sent cnt:32821,clt packs sent:117739,clt cont sent:29806
2022/04/21 14:23:17 +979 [notice] active conns:29695
2022/04/21 14:23:17 +979 [notice] reject:0, reset recv:2,fin recv:0
2022/04/21 14:23:17 +979 [notice] reset sent:0, fin:0
2022/04/21 14:23:17 +979 [notice] retrans:93, syn retrans:2821
2022/04/21 14:23:17 +979 [notice] conns:29697,resp packs:97186,c-resp packs:37774
2022/04/21 14:23:17 +979 [notice] syn sent cnt:32821,clt packs sent:118464,clt cont sent:29806
2022/04/21 14:23:22 +980 [notice] active conns:29695
2022/04/21 14:23:22 +980 [notice] reject:0, reset recv:2,fin recv:0
2022/04/21 14:23:22 +980 [notice] reset sent:0, fin:0
2022/04/21 14:23:22 +980 [notice] retrans:93, syn retrans:2821
2022/04/21 14:23:22 +980 [notice] conns:29697,resp packs:98166,c-resp packs:38754
2022/04/21 14:23:22 +980 [notice] syn sent cnt:32821,clt packs sent:119189,clt cont sent:29806
2022/04/21 14:23:27 +981 [notice] active conns:29695
2022/04/21 14:23:27 +981 [notice] reject:0, reset recv:2,fin recv:0
2022/04/21 14:23:27 +981 [notice] reset sent:0, fin:0
2022/04/21 14:23:27 +981 [notice] retrans:93, syn retrans:2821
2022/04/21 14:23:27 +981 [notice] conns:29697,resp packs:99144,c-resp packs:39732
2022/04/21 14:23:27 +981 [notice] syn sent cnt:32821,clt packs sent:119893,clt cont sent:29806
2022/04/21 14:23:32 +982 [notice] active conns:29695
2022/04/21 14:23:32 +982 [notice] reject:0, reset recv:2,fin recv:0
2022/04/21 14:23:32 +982 [notice] reset sent:0, fin:0
2022/04/21 14:23:32 +982 [notice] retrans:93, syn retrans:2821
2022/04/21 14:23:32 +982 [notice] conns:29697,resp packs:100065,c-resp packs:40653
2022/04/21 14:23:32 +982 [notice] syn sent cnt:32821,clt packs sent:120564,clt cont sent:29806
2022/04/21 14:23:37 +993 [notice] active conns:29695
2022/04/21 14:23:37 +993 [notice] reject:0, reset recv:2,fin recv:0
2022/04/21 14:23:37 +993 [notice] reset sent:0, fin:0
2022/04/21 14:23:37 +993 [notice] retrans:93, syn retrans:2821
2022/04/21 14:23:37 +993 [notice] conns:29697,resp packs:101072,c-resp packs:41660
2022/04/21 14:23:37 +993 [notice] syn sent cnt:32821,clt packs sent:121298,clt cont sent:29806
2022/04/21 14:23:42 +996 [notice] active conns:29695
2022/04/21 14:23:42 +996 [notice] reject:0, reset recv:2,fin recv:0
2022/04/21 14:23:42 +996 [notice] reset sent:0, fin:0
2022/04/21 14:23:42 +996 [notice] retrans:93, syn retrans:2821
2022/04/21 14:23:42 +996 [notice] conns:29697,resp packs:102090,c-resp packs:42678
2022/04/21 14:23:42 +996 [notice] syn sent cnt:32821,clt packs sent:121988,clt cont sent:29806
2022/04/21 14:23:47 +999 [notice] active conns:29695
2022/04/21 14:23:47 +999 [notice] reject:0, reset recv:2,fin recv:0
2022/04/21 14:23:47 +999 [notice] reset sent:0, fin:0
2022/04/21 14:23:47 +999 [notice] retrans:93, syn retrans:2821
2022/04/21 14:23:47 +999 [notice] conns:29697,resp packs:103120,c-resp packs:43708
2022/04/21 14:23:47 +999 [notice] syn sent cnt:32821,clt packs sent:122705,clt cont sent:29806
2022/04/21 14:23:52 +964 [notice] user time used:0
2022/04/21 14:23:52 +964 [notice] sys time used:15
2022/04/21 14:23:52 +964 [notice] max memory size:7864
2022/04/21 14:23:53 +000 [notice] active conns:29695
2022/04/21 14:23:53 +000 [notice] reject:0, reset recv:2,fin recv:0
2022/04/21 14:23:53 +000 [notice] reset sent:0, fin:0
2022/04/21 14:23:53 +000 [notice] retrans:93, syn retrans:2821
2022/04/21 14:23:53 +000 [notice] conns:29697,resp packs:104056,c-resp packs:44644
2022/04/21 14:23:53 +000 [notice] syn sent cnt:32821,clt packs sent:123402,clt cont sent:29806
2022/04/21 14:23:58 +001 [notice] active conns:29695
2022/04/21 14:23:58 +001 [notice] reject:0, reset recv:2,fin recv:0
2022/04/21 14:23:58 +001 [notice] reset sent:0, fin:0
2022/04/21 14:23:58 +001 [notice] retrans:93, syn retrans:2821
2022/04/21 14:23:58 +001 [notice] conns:29697,resp packs:105010,c-resp packs:45598
2022/04/21 14:23:58 +001 [notice] syn sent cnt:32821,clt packs sent:124110,clt cont sent:29806
2022/04/21 14:24:03 +001 [notice] active conns:29695
2022/04/21 14:24:03 +001 [notice] reject:0, reset recv:2,fin recv:0
2022/04/21 14:24:03 +001 [notice] reset sent:0, fin:0
2022/04/21 14:24:03 +001 [notice] retrans:93, syn retrans:2821
2022/04/21 14:24:03 +001 [notice] conns:29697,resp packs:106054,c-resp packs:46642
2022/04/21 14:24:03 +001 [notice] syn sent cnt:32821,clt packs sent:124860,clt cont sent:29806
2022/04/21 14:24:08 +002 [notice] active conns:29695
2022/04/21 14:24:08 +002 [notice] reject:0, reset recv:2,fin recv:0
2022/04/21 14:24:08 +002 [notice] reset sent:0, fin:0
2022/04/21 14:24:08 +002 [notice] retrans:93, syn retrans:2821
2022/04/21 14:24:08 +002 [notice] conns:29697,resp packs:106918,c-resp packs:47506
2022/04/21 14:24:08 +002 [notice] syn sent cnt:32821,clt packs sent:125529,clt cont sent:29806
2022/04/21 14:24:13 +002 [notice] active conns:29695
2022/04/21 14:24:13 +002 [notice] reject:0, reset recv:2,fin recv:0
2022/04/21 14:24:13 +002 [notice] reset sent:0, fin:0
2022/04/21 14:24:13 +002 [notice] retrans:93, syn retrans:2821
2022/04/21 14:24:13 +002 [notice] conns:29697,resp packs:107945,c-resp packs:48533
2022/04/21 14:24:13 +002 [notice] syn sent cnt:32821,clt packs sent:126242,clt cont sent:29806
2022/04/21 14:24:18 +003 [notice] active conns:29695
2022/04/21 14:24:18 +003 [notice] reject:0, reset recv:2,fin recv:0
2022/04/21 14:24:18 +003 [notice] reset sent:0, fin:0
2022/04/21 14:24:18 +003 [notice] retrans:93, syn retrans:2821
2022/04/21 14:24:18 +003 [notice] conns:29697,resp packs:108862,c-resp packs:49450
2022/04/21 14:24:18 +003 [notice] syn sent cnt:32821,clt packs sent:126878,clt cont sent:29806
2022/04/21 14:24:23 +005 [notice] active conns:29695
2022/04/21 14:24:23 +005 [notice] reject:0, reset recv:2,fin recv:0
2022/04/21 14:24:23 +005 [notice] reset sent:0, fin:0
2022/04/21 14:24:23 +005 [notice] retrans:93, syn retrans:2821
2022/04/21 14:24:23 +005 [notice] conns:29697,resp packs:109860,c-resp packs:50448
2022/04/21 14:24:23 +005 [notice] syn sent cnt:32821,clt packs sent:127603,clt cont sent:29806
2022/04/21 14:24:28 +007 [notice] active conns:29695
2022/04/21 14:24:28 +007 [notice] reject:0, reset recv:2,fin recv:0
2022/04/21 14:24:28 +007 [notice] reset sent:0, fin:0
2022/04/21 14:24:28 +007 [notice] retrans:93, syn retrans:2821
2022/04/21 14:24:28 +007 [notice] conns:29697,resp packs:110852,c-resp packs:51440
2022/04/21 14:24:28 +007 [notice] syn sent cnt:32821,clt packs sent:128351,clt cont sent:29806
2022/04/21 14:24:33 +008 [notice] active conns:29695
2022/04/21 14:24:33 +008 [notice] reject:0, reset recv:2,fin recv:0
2022/04/21 14:24:33 +008 [notice] reset sent:0, fin:0
2022/04/21 14:24:33 +008 [notice] retrans:93, syn retrans:2821
2022/04/21 14:24:33 +008 [notice] conns:29697,resp packs:111868,c-resp packs:52456
2022/04/21 14:24:33 +008 [notice] syn sent cnt:32821,clt packs sent:129095,clt cont sent:29806
2022/04/21 14:24:38 +010 [notice] active conns:29695
2022/04/21 14:24:38 +010 [notice] reject:0, reset recv:2,fin recv:0
2022/04/21 14:24:38 +010 [notice] reset sent:0, fin:0
2022/04/21 14:24:38 +010 [notice] retrans:93, syn retrans:2821
2022/04/21 14:24:38 +010 [notice] conns:29697,resp packs:112850,c-resp packs:53438
2022/04/21 14:24:38 +010 [notice] syn sent cnt:32821,clt packs sent:129828,clt cont sent:29806
2022/04/21 14:24:43 +011 [notice] active conns:29695
2022/04/21 14:24:43 +011 [notice] reject:0, reset recv:2,fin recv:0
2022/04/21 14:24:43 +011 [notice] reset sent:0, fin:0
2022/04/21 14:24:43 +011 [notice] retrans:93, syn retrans:2821
2022/04/21 14:24:43 +011 [notice] conns:29697,resp packs:113825,c-resp packs:54413
2022/04/21 14:24:43 +011 [notice] syn sent cnt:32821,clt packs sent:130515,clt cont sent:29806
2022/04/21 14:24:48 +012 [notice] active conns:29695
2022/04/21 14:24:48 +012 [notice] reject:0, reset recv:2,fin recv:0
2022/04/21 14:24:48 +012 [notice] reset sent:0, fin:0
2022/04/21 14:24:48 +012 [notice] retrans:93, syn retrans:2821
2022/04/21 14:24:48 +012 [notice] conns:29697,resp packs:114803,c-resp packs:55391
2022/04/21 14:24:48 +012 [notice] syn sent cnt:32821,clt packs sent:131217,clt cont sent:29806
2022/04/21 14:24:52 +966 [notice] user time used:1
2022/04/21 14:24:52 +966 [notice] sys time used:19
2022/04/21 14:24:52 +966 [notice] max memory size:7864
2022/04/21 14:24:53 +012 [notice] active conns:29695
2022/04/21 14:24:53 +012 [notice] reject:0, reset recv:2,fin recv:0
2022/04/21 14:24:53 +012 [notice] reset sent:0, fin:0
2022/04/21 14:24:53 +012 [notice] retrans:93, syn retrans:2821
2022/04/21 14:24:53 +012 [notice] conns:29697,resp packs:115735,c-resp packs:56323
2022/04/21 14:24:53 +012 [notice] syn sent cnt:32821,clt packs sent:131875,clt cont sent:29806
2022/04/21 14:24:58 +013 [notice] active conns:29695
2022/04/21 14:24:58 +013 [notice] reject:0, reset recv:2,fin recv:0
2022/04/21 14:24:58 +013 [notice] reset sent:0, fin:0
2022/04/21 14:24:58 +013 [notice] retrans:93, syn retrans:2821
2022/04/21 14:24:58 +013 [notice] conns:29697,resp packs:116731,c-resp packs:57319
2022/04/21 14:24:58 +013 [notice] syn sent cnt:32821,clt packs sent:132595,clt cont sent:29806
2022/04/21 14:25:03 +013 [notice] active conns:29695
2022/04/21 14:25:03 +013 [notice] reject:0, reset recv:2,fin recv:0
2022/04/21 14:25:03 +013 [notice] reset sent:0, fin:0
2022/04/21 14:25:03 +013 [notice] retrans:93, syn retrans:2821
2022/04/21 14:25:03 +013 [notice] conns:29697,resp packs:117684,c-resp packs:58272
2022/04/21 14:25:03 +013 [notice] syn sent cnt:32821,clt packs sent:133280,clt cont sent:29806
2022/04/21 14:25:08 +013 [notice] active conns:26257
2022/04/21 14:25:08 +013 [notice] reject:0, reset recv:2,fin recv:3438
2022/04/21 14:25:08 +013 [notice] reset sent:3438, fin:0
2022/04/21 14:25:08 +013 [notice] retrans:93, syn retrans:2821
2022/04/21 14:25:08 +013 [notice] conns:29697,resp packs:121968,c-resp packs:59118
2022/04/21 14:25:08 +013 [notice] syn sent cnt:32821,clt packs sent:140744,clt cont sent:29806
2022/04/21 14:25:09 +934 [notice] recv rst from back:32799
2022/04/21 14:25:09 +934 [notice] recv rst from back:32880
2022/04/21 14:25:09 +936 [notice] recv rst from back:32822
...
2022/04/21 14:25:12 +117 [notice] recv rst from back:32800
2022/04/21 14:25:12 +117 [notice] recv rst from back:32823
2022/04/21 14:25:12 +117 [notice] recv rst from back:32844
2022/04/21 14:25:13 +014 [notice] active conns:5683
2022/04/21 14:25:13 +014 [notice] reject:0, reset recv:51669,fin recv:73149
2022/04/21 14:25:13 +014 [notice] reset sent:24012, fin:0
2022/04/21 14:25:13 +014 [notice] retrans:93, syn retrans:2821
2022/04/21 14:25:13 +014 [notice] conns:29697,resp packs:261608,c-resp packs:60291
2022/04/21 14:25:13 +014 [notice] syn sent cnt:32821,clt packs sent:231294,clt cont sent:29806
2022/04/21 14:25:18 +016 [notice] active conns:5241
2022/04/21 14:25:18 +016 [notice] reject:0, reset recv:51669,fin recv:73591
2022/04/21 14:25:18 +016 [notice] reset sent:24454, fin:0
2022/04/21 14:25:18 +016 [notice] retrans:93, syn retrans:2821
2022/04/21 14:25:18 +016 [notice] conns:29697,resp packs:262451,c-resp packs:60692
2022/04/21 14:25:18 +016 [notice] syn sent cnt:32821,clt packs sent:232442,clt cont sent:29806
2022/04/21 14:25:23 +017 [notice] active conns:4752
2022/04/21 14:25:23 +017 [notice] reject:0, reset recv:51669,fin recv:74080
2022/04/21 14:25:23 +017 [notice] reset sent:24943, fin:0
2022/04/21 14:25:23 +017 [notice] retrans:93, syn retrans:2821
2022/04/21 14:25:23 +017 [notice] conns:29697,resp packs:262940,c-resp packs:60692
2022/04/21 14:25:23 +017 [notice] syn sent cnt:32821,clt packs sent:233420,clt cont sent:29806
2022/04/21 14:25:28 +018 [notice] active conns:4262
2022/04/21 14:25:28 +018 [notice] reject:0, reset recv:51669,fin recv:74570
2022/04/21 14:25:28 +018 [notice] reset sent:25433, fin:0
2022/04/21 14:25:28 +018 [notice] retrans:93, syn retrans:2821
2022/04/21 14:25:28 +018 [notice] conns:29697,resp packs:263430,c-resp packs:60692
2022/04/21 14:25:28 +018 [notice] syn sent cnt:32821,clt packs sent:234400,clt cont sent:29806
2022/04/21 14:25:33 +023 [notice] active conns:3771
2022/04/21 14:25:33 +023 [notice] reject:0, reset recv:51669,fin recv:75061
2022/04/21 14:25:33 +023 [notice] reset sent:25924, fin:0
2022/04/21 14:25:33 +023 [notice] retrans:93, syn retrans:2821
2022/04/21 14:25:33 +023 [notice] conns:29697,resp packs:263921,c-resp packs:60692
2022/04/21 14:25:33 +023 [notice] syn sent cnt:32821,clt packs sent:235382,clt cont sent:29806
2022/04/21 14:25:38 +026 [notice] active conns:3270
2022/04/21 14:25:38 +026 [notice] reject:0, reset recv:51669,fin recv:75562
2022/04/21 14:25:38 +026 [notice] reset sent:26425, fin:0
2022/04/21 14:25:38 +026 [notice] retrans:93, syn retrans:2821
2022/04/21 14:25:38 +026 [notice] conns:29697,resp packs:264422,c-resp packs:60692
2022/04/21 14:25:38 +026 [notice] syn sent cnt:32821,clt packs sent:236384,clt cont sent:29806
2022/04/21 14:25:43 +028 [notice] active conns:2780
2022/04/21 14:25:43 +028 [notice] reject:0, reset recv:51669,fin recv:76052
2022/04/21 14:25:43 +028 [notice] reset sent:26915, fin:0
2022/04/21 14:25:43 +028 [notice] retrans:93, syn retrans:2821
2022/04/21 14:25:43 +028 [notice] conns:29697,resp packs:264912,c-resp packs:60692
2022/04/21 14:25:43 +028 [notice] syn sent cnt:32821,clt packs sent:237364,clt cont sent:29806
2022/04/21 14:25:48 +031 [notice] active conns:2280
2022/04/21 14:25:48 +031 [notice] reject:0, reset recv:51669,fin recv:76552
2022/04/21 14:25:48 +031 [notice] reset sent:27415, fin:0
2022/04/21 14:25:48 +031 [notice] retrans:93, syn retrans:2821
2022/04/21 14:25:48 +031 [notice] conns:29697,resp packs:265412,c-resp packs:60692
2022/04/21 14:25:48 +031 [notice] syn sent cnt:32821,clt packs sent:238364,clt cont sent:29806
2022/04/21 14:25:52 +977 [notice] user time used:1
2022/04/21 14:25:52 +977 [notice] sys time used:26
2022/04/21 14:25:52 +977 [notice] max memory size:7864
2022/04/21 14:25:53 +039 [notice] active conns:1812
2022/04/21 14:25:53 +039 [notice] reject:0, reset recv:51669,fin recv:77020
2022/04/21 14:25:53 +039 [notice] reset sent:27883, fin:0
2022/04/21 14:25:53 +039 [notice] retrans:93, syn retrans:2821
2022/04/21 14:25:53 +039 [notice] conns:29697,resp packs:265880,c-resp packs:60692
2022/04/21 14:25:53 +039 [notice] syn sent cnt:32821,clt packs sent:239300,clt cont sent:29806
2022/04/21 14:25:58 +044 [notice] active conns:1318
2022/04/21 14:25:58 +044 [notice] reject:0, reset recv:51669,fin recv:77514
2022/04/21 14:25:58 +044 [notice] reset sent:28377, fin:0
2022/04/21 14:25:58 +044 [notice] retrans:93, syn retrans:2821
2022/04/21 14:25:58 +044 [notice] conns:29697,resp packs:266374,c-resp packs:60692
2022/04/21 14:25:58 +044 [notice] syn sent cnt:32821,clt packs sent:240288,clt cont sent:29806
2022/04/21 14:26:03 +048 [notice] active conns:845
2022/04/21 14:26:03 +048 [notice] reject:0, reset recv:51669,fin recv:77987
2022/04/21 14:26:03 +048 [notice] reset sent:28850, fin:0
2022/04/21 14:26:03 +048 [notice] retrans:93, syn retrans:2821
2022/04/21 14:26:03 +048 [notice] conns:29697,resp packs:266847,c-resp packs:60692
2022/04/21 14:26:03 +048 [notice] syn sent cnt:32821,clt packs sent:241234,clt cont sent:29806
2022/04/21 14:26:08 +049 [notice] active conns:383
2022/04/21 14:26:08 +049 [notice] reject:0, reset recv:51669,fin recv:78449
2022/04/21 14:26:08 +049 [notice] reset sent:29312, fin:0
2022/04/21 14:26:08 +049 [notice] retrans:93, syn retrans:2821
2022/04/21 14:26:08 +049 [notice] conns:29697,resp packs:267309,c-resp packs:60692
2022/04/21 14:26:08 +049 [notice] syn sent cnt:32821,clt packs sent:242158,clt cont sent:29806
2022/04/21 14:26:13 +053 [notice] active conns:198
2022/04/21 14:26:13 +053 [notice] reject:0, reset recv:51669,fin recv:78634
2022/04/21 14:26:13 +053 [notice] reset sent:29497, fin:0
2022/04/21 14:26:13 +053 [notice] retrans:93, syn retrans:2821
2022/04/21 14:26:13 +053 [notice] conns:29697,resp packs:267494,c-resp packs:60692
2022/04/21 14:26:13 +053 [notice] syn sent cnt:32821,clt packs sent:242528,clt cont sent:29806
2022/04/21 14:26:18 +055 [notice] active conns:0
2022/04/21 14:26:18 +055 [notice] reject:0, reset recv:51669,fin recv:78832
2022/04/21 14:26:18 +055 [notice] reset sent:29695, fin:0
2022/04/21 14:26:18 +055 [notice] retrans:93, syn retrans:2821
2022/04/21 14:26:18 +055 [notice] conns:29697,resp packs:267692,c-resp packs:60692
2022/04/21 14:26:18 +055 [notice] syn sent cnt:32821,clt packs sent:242924,clt cont sent:29806
2022/04/21 14:26:23 +056 [notice] active conns:0
2022/04/21 14:26:23 +056 [notice] reject:0, reset recv:51669,fin recv:78832
2022/04/21 14:26:23 +056 [notice] reset sent:29695, fin:0
2022/04/21 14:26:23 +056 [notice] retrans:93, syn retrans:2821
2022/04/21 14:26:23 +056 [notice] conns:29697,resp packs:267692,c-resp packs:60692
2022/04/21 14:26:23 +056 [notice] syn sent cnt:32821,clt packs sent:242924,clt cont sent:29806
2022/04/21 14:26:28 +058 [notice] active conns:0
2022/04/21 14:26:28 +058 [notice] reject:0, reset recv:51669,fin recv:78832
2022/04/21 14:26:28 +058 [notice] reset sent:29695, fin:0
2022/04/21 14:26:28 +058 [notice] retrans:93, syn retrans:2821
2022/04/21 14:26:28 +058 [notice] conns:29697,resp packs:267692,c-resp packs:60692
2022/04/21 14:26:28 +058 [notice] syn sent cnt:32821,clt packs sent:242924,clt cont sent:29806
2022/04/21 14:26:33 +058 [notice] active conns:0
2022/04/21 14:26:33 +058 [notice] reject:0, reset recv:51669,fin recv:78832
2022/04/21 14:26:33 +058 [notice] reset sent:29695, fin:0
2022/04/21 14:26:33 +058 [notice] retrans:93, syn retrans:2821
2022/04/21 14:26:33 +058 [notice] conns:29697,resp packs:267692,c-resp packs:60692
2022/04/21 14:26:33 +058 [notice] syn sent cnt:32821,clt packs sent:242924,clt cont sent:29806
2022/04/21 14:26:38 +059 [notice] active conns:0
2022/04/21 14:26:38 +059 [notice] reject:0, reset recv:51669,fin recv:78832
2022/04/21 14:26:38 +059 [notice] reset sent:29695, fin:0
2022/04/21 14:26:38 +059 [notice] retrans:93, syn retrans:2821
2022/04/21 14:26:38 +059 [notice] conns:29697,resp packs:267692,c-resp packs:60692
2022/04/21 14:26:38 +059 [notice] syn sent cnt:32821,clt packs sent:242924,clt cont sent:29806
2022/04/21 14:26:43 +060 [notice] active conns:0
2022/04/21 14:26:43 +060 [notice] reject:0, reset recv:51669,fin recv:78832
2022/04/21 14:26:43 +060 [notice] reset sent:29695, fin:0
2022/04/21 14:26:43 +060 [notice] retrans:93, syn retrans:2821
2022/04/21 14:26:43 +060 [notice] conns:29697,resp packs:267692,c-resp packs:60692
2022/04/21 14:26:43 +060 [notice] syn sent cnt:32821,clt packs sent:242924,clt cont sent:29806
2022/04/21 14:26:48 +063 [notice] active conns:0
2022/04/21 14:26:48 +063 [notice] reject:0, reset recv:51669,fin recv:78832
2022/04/21 14:26:48 +063 [notice] reset sent:29695, fin:0
2022/04/21 14:26:48 +063 [notice] retrans:93, syn retrans:2821
2022/04/21 14:26:48 +063 [notice] conns:29697,resp packs:267692,c-resp packs:60692
2022/04/21 14:26:48 +063 [notice] syn sent cnt:32821,clt packs sent:242924,clt cont sent:29806
2022/04/21 14:26:52 +978 [notice] user time used:1
2022/04/21 14:26:52 +978 [notice] sys time used:26
2022/04/21 14:26:52 +978 [notice] max memory size:7864
2022/04/21 14:26:53 +065 [notice] active conns:0
2022/04/21 14:26:53 +065 [notice] reject:0, reset recv:51669,fin recv:78832
2022/04/21 14:26:53 +065 [notice] reset sent:29695, fin:0
2022/04/21 14:26:53 +065 [notice] retrans:93, syn retrans:2821
2022/04/21 14:26:53 +065 [notice] conns:29697,resp packs:267692,c-resp packs:60692
2022/04/21 14:26:53 +065 [notice] syn sent cnt:32821,clt packs sent:242924,clt cont sent:29806
2022/04/21 14:26:58 +088 [notice] active conns:0
2022/04/21 14:26:58 +088 [notice] reject:0, reset recv:51669,fin recv:78832
2022/04/21 14:26:58 +088 [notice] reset sent:29695, fin:0
2022/04/21 14:26:58 +088 [notice] retrans:93, syn retrans:2821
2022/04/21 14:26:58 +088 [notice] conns:29697,resp packs:267692,c-resp packs:60692
2022/04/21 14:26:58 +088 [notice] syn sent cnt:32821,clt packs sent:242924,clt cont sent:29806
2022/04/21 14:27:03 +090 [notice] active conns:0
2022/04/21 14:27:03 +090 [notice] reject:0, reset recv:51669,fin recv:78832
2022/04/21 14:27:03 +090 [notice] reset sent:29695, fin:0
2022/04/21 14:27:03 +090 [notice] retrans:93, syn retrans:2821
2022/04/21 14:27:03 +090 [notice] conns:29697,resp packs:267692,c-resp packs:60692
2022/04/21 14:27:03 +090 [notice] syn sent cnt:32821,clt packs sent:242924,clt cont sent:29806
2022/04/21 14:27:08 +092 [notice] active conns:0
2022/04/21 14:27:08 +092 [notice] reject:0, reset recv:51669,fin recv:78832
2022/04/21 14:27:08 +092 [notice] reset sent:29695, fin:0
2022/04/21 14:27:08 +092 [notice] retrans:93, syn retrans:2821
2022/04/21 14:27:08 +092 [notice] conns:29697,resp packs:267692,c-resp packs:60692
2022/04/21 14:27:08 +092 [notice] syn sent cnt:32821,clt packs sent:242924,clt cont sent:29806
2022/04/21 14:27:13 +093 [notice] active conns:0
2022/04/21 14:27:13 +093 [notice] reject:0, reset recv:51669,fin recv:78832
2022/04/21 14:27:13 +093 [notice] reset sent:29695, fin:0
2022/04/21 14:27:13 +093 [notice] retrans:93, syn retrans:2821
2022/04/21 14:27:13 +093 [notice] conns:29697,resp packs:267692,c-resp packs:60692
2022/04/21 14:27:13 +093 [notice] syn sent cnt:32821,clt packs sent:242924,clt cont sent:29806
2022/04/21 14:27:18 +094 [notice] active conns:0
2022/04/21 14:27:18 +094 [notice] reject:0, reset recv:51669,fin recv:78832
2022/04/21 14:27:18 +094 [notice] reset sent:29695, fin:0
2022/04/21 14:27:18 +094 [notice] retrans:93, syn retrans:2821
2022/04/21 14:27:18 +094 [notice] conns:29697,resp packs:267692,c-resp packs:60692
2022/04/21 14:27:18 +094 [notice] syn sent cnt:32821,clt packs sent:242924,clt cont sent:29806
2022/04/21 14:27:23 +095 [notice] active conns:0
2022/04/21 14:27:23 +095 [notice] reject:0, reset recv:51669,fin recv:78832
2022/04/21 14:27:23 +095 [notice] reset sent:29695, fin:0
2022/04/21 14:27:23 +095 [notice] retrans:93, syn retrans:2821
2022/04/21 14:27:23 +095 [notice] conns:29697,resp packs:267692,c-resp packs:60692
2022/04/21 14:27:23 +095 [notice] syn sent cnt:32821,clt packs sent:242924,clt cont sent:29806
2022/04/21 14:27:28 +096 [notice] active conns:0
2022/04/21 14:27:28 +096 [notice] reject:0, reset recv:51669,fin recv:78832
2022/04/21 14:27:28 +096 [notice] reset sent:29695, fin:0
2022/04/21 14:27:28 +096 [notice] retrans:93, syn retrans:2821
2022/04/21 14:27:28 +096 [notice] conns:29697,resp packs:267692,c-resp packs:60692
2022/04/21 14:27:28 +096 [notice] syn sent cnt:32821,clt packs sent:242924,clt cont sent:29806
2022/04/21 14:27:33 +097 [notice] active conns:0
2022/04/21 14:27:33 +097 [notice] reject:0, reset recv:51669,fin recv:78832
2022/04/21 14:27:33 +097 [notice] reset sent:29695, fin:0
2022/04/21 14:27:33 +097 [notice] retrans:93, syn retrans:2821
2022/04/21 14:27:33 +097 [notice] conns:29697,resp packs:267692,c-resp packs:60692
2022/04/21 14:27:33 +097 [notice] syn sent cnt:32821,clt packs sent:242924,clt cont sent:29806
2022/04/21 14:27:38 +098 [notice] active conns:0
2022/04/21 14:27:38 +098 [notice] reject:0, reset recv:51669,fin recv:78832
2022/04/21 14:27:38 +098 [notice] reset sent:29695, fin:0
2022/04/21 14:27:38 +098 [notice] retrans:93, syn retrans:2821
2022/04/21 14:27:38 +098 [notice] conns:29697,resp packs:267692,c-resp packs:60692
2022/04/21 14:27:38 +098 [notice] syn sent cnt:32821,clt packs sent:242924,clt cont sent:29806
2022/04/21 14:27:43 +099 [notice] active conns:0
2022/04/21 14:27:43 +099 [notice] reject:0, reset recv:51669,fin recv:78832
2022/04/21 14:27:43 +099 [notice] reset sent:29695, fin:0
2022/04/21 14:27:43 +099 [notice] retrans:93, syn retrans:2821
2022/04/21 14:27:43 +099 [notice] conns:29697,resp packs:267692,c-resp packs:60692
2022/04/21 14:27:43 +099 [notice] syn sent cnt:32821,clt packs sent:242924,clt cont sent:29806
2022/04/21 14:27:48 +101 [notice] active conns:0
2022/04/21 14:27:48 +101 [notice] reject:0, reset recv:51669,fin recv:78832
2022/04/21 14:27:48 +101 [notice] reset sent:29695, fin:0
2022/04/21 14:27:48 +101 [notice] retrans:93, syn retrans:2821
2022/04/21 14:27:48 +101 [notice] conns:29697,resp packs:267692,c-resp packs:60692
2022/04/21 14:27:48 +101 [notice] syn sent cnt:32821,clt packs sent:242924,clt cont sent:29806
2022/04/21 14:27:52 +979 [notice] user time used:1
2022/04/21 14:27:52 +979 [notice] sys time used:26
2022/04/21 14:27:52 +979 [notice] max memory size:7864
2022/04/21 14:27:53 +103 [notice] active conns:0
2022/04/21 14:27:53 +103 [notice] reject:0, reset recv:51669,fin recv:78832
2022/04/21 14:27:53 +103 [notice] reset sent:29695, fin:0
2022/04/21 14:27:53 +103 [notice] retrans:93, syn retrans:2821
2022/04/21 14:27:53 +103 [notice] conns:29697,resp packs:267692,c-resp packs:60692
2022/04/21 14:27:53 +103 [notice] syn sent cnt:32821,clt packs sent:242924,clt cont sent:29806
2022/04/21 14:27:58 +114 [notice] active conns:0
2022/04/21 14:27:58 +114 [notice] reject:0, reset recv:51669,fin recv:78832
2022/04/21 14:27:58 +114 [notice] reset sent:29695, fin:0
2022/04/21 14:27:58 +114 [notice] retrans:93, syn retrans:2821
2022/04/21 14:27:58 +114 [notice] conns:29697,resp packs:267692,c-resp packs:60692
2022/04/21 14:27:58 +114 [notice] syn sent cnt:32821,clt packs sent:242924,clt cont sent:29806
2022/04/21 14:28:03 +115 [notice] active conns:0
2022/04/21 14:28:03 +115 [notice] reject:0, reset recv:51669,fin recv:78832
2022/04/21 14:28:03 +115 [notice] reset sent:29695, fin:0
2022/04/21 14:28:03 +115 [notice] retrans:93, syn retrans:2821
2022/04/21 14:28:03 +115 [notice] conns:29697,resp packs:267692,c-resp packs:60692
2022/04/21 14:28:03 +115 [notice] syn sent cnt:32821,clt packs sent:242924,clt cont sent:29806
2022/04/21 14:28:08 +118 [notice] active conns:0
2022/04/21 14:28:08 +118 [notice] reject:0, reset recv:51669,fin recv:78832
2022/04/21 14:28:08 +118 [notice] reset sent:29695, fin:0
2022/04/21 14:28:08 +118 [notice] retrans:93, syn retrans:2821
2022/04/21 14:28:08 +118 [notice] conns:29697,resp packs:267692,c-resp packs:60692
2022/04/21 14:28:08 +118 [notice] syn sent cnt:32821,clt packs sent:242924,clt cont sent:29806
2022/04/21 14:28:13 +119 [notice] active conns:0
2022/04/21 14:28:13 +119 [notice] reject:0, reset recv:51669,fin recv:78832
2022/04/21 14:28:13 +119 [notice] reset sent:29695, fin:0
2022/04/21 14:28:13 +119 [notice] retrans:93, syn retrans:2821
2022/04/21 14:28:13 +119 [notice] conns:29697,resp packs:267692,c-resp packs:60692
2022/04/21 14:28:13 +119 [notice] syn sent cnt:32821,clt packs sent:242924,clt cont sent:29806
2022/04/21 14:28:18 +120 [notice] active conns:0
2022/04/21 14:28:18 +120 [notice] reject:0, reset recv:51669,fin recv:78832
2022/04/21 14:28:18 +120 [notice] reset sent:29695, fin:0
2022/04/21 14:28:18 +120 [notice] retrans:93, syn retrans:2821
2022/04/21 14:28:18 +120 [notice] conns:29697,resp packs:267692,c-resp packs:60692
2022/04/21 14:28:18 +120 [notice] syn sent cnt:32821,clt packs sent:242924,clt cont sent:29806

将虚拟机配置调整为2G内存,2核处理器,设置并发100000,连接数仅可达60000+
出现以上情况的原因是什么?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.