70082ab638
pmproxy and libpcp_web fixes. Adds pcp-ss tool. Resolves: rhbz#1981222 Resolves: rhbz#1981223
6993 lines
1.4 MiB
6993 lines
1.4 MiB
d2e9fd0dc pcp-ss: initial version of new client tool, with QA and docs
|
|
af2c47e77 pcp-ss.1: fix syntax, sort SEE ALSO
|
|
6e19b22d1 pmdasockets: add persistent filter, new metrics, parser fixes and QA
|
|
47f9df215 pcp-ss: fix EAGAIN exceptions, add filter header, QA
|
|
a2a4527d3 pmdasockets: fix resource leak coverity CID371684
|
|
1ff17fc32 docs: document pmdasockets filter config file
|
|
1174dcc3d qa/1634: fix for when sockets PMDA isn't enabled
|
|
488ec2848 src/pmdas/linux_sockets: fix #! for Install and Remove
|
|
c0ff11472 pmdasockets: add missing help text for reord_seen and delivered
|
|
4fdda037d qa/1633: pcp-ss output order is non-deterministic
|
|
9579b8cf3 pcp-ss: dont try to delete the pcp options context
|
|
3fc974dc0 pmdasockets: default to daemon and migrate from DSO to daemon
|
|
1ba267553 pmdasockets: fix regex in Upgrade script
|
|
|
|
commit d2e9fd0dce7f24b8f81109b2b664ca637abfd2fc
|
|
Author: Mark Goodwin <mgoodwin@redhat.com>
|
|
Date: Thu Jun 24 12:42:54 2021 +1000
|
|
|
|
pcp-ss: initial version of new client tool, with QA and docs
|
|
|
|
Initial commit for pcp-ss(1) front end client for pmdasockets(1),
|
|
implementing many (but not yet all) of the ss(8) options. This
|
|
is packaged in pcp-system-tools. New QA test 1633 is added along
|
|
with test archive and man page.
|
|
|
|
Still TODO are some PMDA changes for a persistent filter config
|
|
file and various additional metrics, e.g. supporting the --process
|
|
option, see https://github.com/performancecopilot/pcp/issues/1231
|
|
|
|
Resolves: RHBZ#1879350
|
|
|
|
diff --git a/build/rpm/pcp.spec.in b/build/rpm/pcp.spec.in
|
|
index 7d55cc582..09a5040d5 100755
|
|
--- a/build/rpm/pcp.spec.in
|
|
+++ b/build/rpm/pcp.spec.in
|
|
@@ -2234,7 +2234,7 @@ basic_manifest | grep -E -e 'pmiostat|pmrep|dstat|pcp2csv' \
|
|
-e 'pcp-atop|pcp-dmcache|pcp-dstat|pcp-free|pcp-htop' \
|
|
-e 'pcp-ipcs|pcp-iostat|pcp-lvmcache|pcp-mpstat' \
|
|
-e 'pcp-numastat|pcp-pidstat|pcp-shping|pcp-tapestat' \
|
|
- -e 'pcp-uptime|pcp-verify' | \
|
|
+ -e 'pcp-uptime|pcp-verify|pcp-ss' | \
|
|
cull 'selinux|pmlogconf|pmieconf|pmrepconf' >pcp-system-tools-files
|
|
basic_manifest | keep 'sar2pcp' >pcp-import-sar2pcp-files
|
|
basic_manifest | keep 'iostat2pcp' >pcp-import-iostat2pcp-files
|
|
diff --git a/build/rpm/redhat.spec b/build/rpm/redhat.spec
|
|
index a437b15c8..f85a6d53a 100644
|
|
--- a/build/rpm/redhat.spec
|
|
+++ b/build/rpm/redhat.spec
|
|
@@ -2375,7 +2375,7 @@ basic_manifest | grep -E -e 'pmiostat|pmrep|dstat|pcp2csv' \
|
|
-e 'pcp-atop|pcp-dmcache|pcp-dstat|pcp-free|pcp-htop' \
|
|
-e 'pcp-ipcs|pcp-iostat|pcp-lvmcache|pcp-mpstat' \
|
|
-e 'pcp-numastat|pcp-pidstat|pcp-shping|pcp-tapestat' \
|
|
- -e 'pcp-uptime|pcp-verify' | \
|
|
+ -e 'pcp-uptime|pcp-verify|pcp-ss' | \
|
|
cull 'selinux|pmlogconf|pmieconf|pmrepconf' >pcp-system-tools-files
|
|
|
|
basic_manifest | keep 'sar2pcp' >pcp-import-sar2pcp-files
|
|
diff --git a/qa/1633 b/qa/1633
|
|
new file mode 100755
|
|
index 000000000..8ce2fc3ba
|
|
--- /dev/null
|
|
+++ b/qa/1633
|
|
@@ -0,0 +1,40 @@
|
|
+#!/bin/sh
|
|
+# PCP QA Test No. 1633
|
|
+# Exercise the pcp-ss(1) command using an archive
|
|
+#
|
|
+# Copyright (c) 2021 Red Hat.
|
|
+#
|
|
+
|
|
+seq=`basename $0`
|
|
+echo "QA output created by $seq"
|
|
+
|
|
+. ./common.python
|
|
+
|
|
+status=1 # failure is the default!
|
|
+$sudo rm -rf $tmp.* $seq.full
|
|
+trap "cd $here; rm -rf $tmp.*; exit \$status" 0 1 2 3 15
|
|
+
|
|
+pcp_ss="$PCP_BINADM_DIR/pcp-ss"
|
|
+test -x $pcp_ss || _notrun "No pcp-ss(1) installed"
|
|
+
|
|
+# real QA test starts here
|
|
+archive=$here/archives/pcp-ss
|
|
+
|
|
+echo && echo pcp-ss output, at default offset
|
|
+pcp -z -a $archive ss -oemitauO
|
|
+
|
|
+echo && echo pcp-ss output, at 10s offset
|
|
+pcp -z -S10s -a $archive ss -oemitauO
|
|
+
|
|
+echo && echo pcp-ss output, at specific start time
|
|
+pcp -z -S'@Fri Jun 18 13:33:39 2021' -a $archive ss -oemitauO
|
|
+
|
|
+echo && echo pcp-ss output, at archive end
|
|
+pcp -z -O-0 -a $archive ss -oemitauO
|
|
+
|
|
+echo && echo check error handling when metrics not present. Note error is expected
|
|
+pcp -z -O-0 -a $here/archives/pcp-mpstat ss 2>&1 | sed -e "s;$here/;;"
|
|
+
|
|
+# success, all done
|
|
+status=0
|
|
+exit
|
|
diff --git a/qa/1633.out b/qa/1633.out
|
|
new file mode 100644
|
|
index 000000000..b82a71e6a
|
|
--- /dev/null
|
|
+++ b/qa/1633.out
|
|
@@ -0,0 +1,790 @@
|
|
+QA output created by 1633
|
|
+
|
|
+pcp-ss output, at default offset
|
|
+# Time: 2021-06-18 13:34:14.168998 Filter: state connected
|
|
+Netid State Recv-Q Send-Q Local Address:Port Peer Address:Port Process
|
|
+tcp ESTAB 0 0 [::ffff:127.0.0.1]:3000 [::ffff:127.0.0.1]:49798 timer(keepalive,5.265ms,0) uid:378 inode:164821548 sk:17e9 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb2358342,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.033/0.018 ato:40 mss:32768 cwnd:10 pmtu:65535 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:65664
|
|
+tcp ESTAB 0 0 127.0.0.1:6379 127.0.0.1:34526 timer(keepalive,299ms,0) uid:379 inode:164789635 sk:17e9 cgroup:/system.slice/redis.service <-> skmem(r0,rb6291456,t0,tb4194304,f0,w0,o0,bl0,d226) ts sack cubic wscale:7,7 rtt:5.268/10.344 ato:40 mss:65483 cwnd:51 pmtu:65535 ssthresh:27 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:1379162
|
|
+tcp ESTAB 0 0 10.40.192.134:47862 10.0.15.20:6667 timer(keepalive,2min48sec,0) uid:1024 inode:143267906 sk:39 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb181972,t0,tb46080,f0,w0,o0,bl0,d56) ts sack cubic wscale:8,7 rtt:456.275/44.255 ato:40 mss:1308 cwnd:2 pmtu:1360 ssthresh:2 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:19026
|
|
+tcp ESTAB 0 0 10.0.0.10:58310 52.88.142.33:443 timer(keepalive,1min53sec,0) uid:1024 inode:143231822 sk:39 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d4) ts sack cubic wscale:8,7 rtt:211.152/22.951 ato:40 mss:1448 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:44852 202.58.9.228:443 timer(keepalive,3.777ms,0) uid:1024 inode:143675936 sk:39 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d1770) sack cubic wscale:9,7 rtt:98.707/11.472 ato:40 mss:1460 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14600
|
|
+tcp ESTAB 0 0 10.0.0.10:37330 217.182.79.119:6667 timer(keepalive,3min20sec,0) uid:1024 inode:147037462 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2467768,t0,tb87040,f0,w0,o0,bl0,d15) ts sack cubic wscale:7,7 rtt:381.926/27.664 ato:40 mss:1448 cwnd:2 pmtu:1500 ssthresh:2 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:64371
|
|
+tcp ESTAB 0 0 192.168.122.1:53100 192.168.122.54:22 timer(keepalive,1min43sec,0) uid:1024 inode:152890200 sk:3a cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d11) ts sack cubic wscale:7,7 rtt:6.415/11.95 ato:40 mss:1448 cwnd:20 pmtu:1500 ssthresh:20 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:52874 199.127.207.181:443 timer(keepalive,28sec,0) uid:1024 inode:154981923 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d433) sack cubic wscale:9,7 rtt:231.99/42.333 ato:40 mss:1460 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14600
|
|
+tcp ESTAB 0 0 10.0.0.10:33256 10.0.0.6:8009 timer(keepalive,19sec,0) uid:1024 inode:161634072 sk:3a cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2554304,t0,tb87040,f0,w0,o0,bl0,d1) ts sack cubic wscale:6,7 rtt:7.326/1.581 ato:40 mss:1448 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:65491
|
|
+tcp ESTAB 0 0 10.0.0.10:45164 173.194.202.125:443 timer(keepalive,28sec,0) uid:1024 inode:161888302 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f4096,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:228.663/49.231 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:37256 157.240.8.18:443 timer(keepalive,2min13sec,0) uid:1024 inode:163353710 sk:262 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb1623296,t0,tb46080,f4096,w0,o0,bl0,d37) ts sack cubic wscale:8,7 rtt:21.667/1.031 ato:40 mss:1380 cwnd:22 pmtu:1500 ssthresh:22 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:87463
|
|
+tcp ESTAB 0 0 10.0.0.10:40226 13.54.123.156:443 timer(keepalive,28sec,0) uid:1024 inode:163971400 sk:3b cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2673664,t0,tb46080,f0,w0,o0,bl0,d0) ts sack cubic wscale:12,7 rtt:23.063/0.882 ato:46 mss:1288 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:67012
|
|
+tcp ESTAB 0 0 10.0.0.10:40232 13.54.123.156:443 timer(keepalive,15sec,0) uid:1024 inode:164254779 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2730360,t0,tb46080,f0,w0,o0,bl0,d0) ts sack cubic wscale:12,7 rtt:21.7/0.326 ato:42 mss:1288 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:67755
|
|
+tcp ESTAB 0 0 10.0.0.10:39906 172.217.194.188:5228 timer(keepalive,15sec,0) uid:1024 inode:164287111 sk:eacd cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:94.893/7.701 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp ESTAB 0 0 127.0.0.1:34526 127.0.0.1:6379 timer(keepalive,646ms,0) uid:386 inode:164791620 sk:ef22 cgroup:/system.slice/pmproxy.service <-> skmem(r0,rb4978722,t0,tb4194304,f0,w0,o0,bl0,d397) ts sack cubic wscale:7,7 rtt:0.217/0.167 ato:40 mss:65483 cwnd:36 pmtu:65535 ssthresh:16 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:245440
|
|
+tcp ESTAB 0 0 127.0.0.1:49798 127.0.0.1:3000 uid:0 inode:164815425 sk:17e9 cgroup:/system.slice/pmcd.service <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:6.023/4.348 ato:40 mss:65483 cwnd:10 pmtu:65535 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:65495
|
|
+udp ESTAB 0 0 10.0.0.10:36244 142.250.70.138:443 uid:1024 inode:165293889 sk:f231 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+udp ESTAB 0 0 10.0.0.10:35754 142.251.10.189:443 uid:1024 inode:165318004 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+udp ESTAB 0 0 10.0.0.10:49123 142.250.4.189:443 uid:1024 inode:165373416 sk:ef33 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:40218 142.250.70.142:443 uid:1024 inode:165413160 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d16) ts sack cubic wscale:8,7 rtt:10.194/0.696 ato:40 mss:1418 cwnd:3 pmtu:1500 ssthresh:2 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:43990 142.250.70.131:443 uid:1024 inode:165420073 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:9.826/0.515 ato:40 mss:1418 cwnd:4 pmtu:1500 ssthresh:4 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:44388 142.250.4.189:443 uid:1024 inode:165419510 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f4096,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:96.696/2.871 ato:40 mss:1418 cwnd:7 pmtu:1500 ssthresh:7 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:34914 142.250.70.234:443 uid:1024 inode:165418039 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f4096,w0,o0,bl0,d11) ts sack cubic wscale:8,7 rtt:10.278/0.678 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:34916 142.250.70.234:443 uid:1024 inode:165418040 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d9) ts sack cubic wscale:8,7 rtt:10.081/1.167 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:49594 142.250.70.165:443 timer(timewait,41sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:57232 157.240.8.35:443 uid:1024 inode:165408121 sk:1781 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb46080,f8192,w0,o0,bl0,d4) ts sack cubic wscale:8,7 rtt:23.193/1.8 ato:40 mss:1380 cwnd:2 pmtu:1500 ssthresh:2 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+udp ESTAB 0 0 10.0.0.10:44639 142.250.70.131:443 uid:1024 inode:165411837 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:46392 142.251.10.189:443 uid:1024 inode:165466671 sk:f23b cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f4096,w0,o0,bl0,d3) ts sack cubic wscale:8,7 rtt:111.69/24.888 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+udp ESTAB 0 0 10.0.0.10:35983 142.250.70.142:443 uid:1024 inode:165466809 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:55532 140.82.114.26:443 timer(keepalive,29sec,0) uid:1024 inode:165515920 sk:17eb cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:10,7 rtt:248.861/32.644 ato:40 mss:1424 cwnd:20 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:55534 140.82.114.26:443 timer(keepalive,2.767ms,0) uid:1024 inode:165521771 sk:ef38 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:10,7 rtt:283.095/41.806 ato:40 mss:1424 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55304 10.0.0.10:44322 timer(timewait,53sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55306 10.0.0.10:44322 timer(timewait,53sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55308 10.0.0.10:44322 timer(timewait,58sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:44322 10.0.0.10:55342 timer(keepalive,44sec,0) uid:386 inode:165594871 sk:5 cgroup:/system.slice/pmproxy.service <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.05/0.056 ato:40 mss:65483 cwnd:20 pmtu:65535 ssthresh:20 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:65483
|
|
+tcp ESTAB 0 0 10.0.0.10:55694 34.120.177.193:443 timer(keepalive,7.793ms,0) uid:1024 inode:165577700 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d1) ts sack cubic wscale:8,7 rtt:13.091/4.789 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp ESTAB 0 0 [::1]:3000 [::1]:51232 timer(keepalive,8.488ms,0) uid:378 inode:165581925 sk:5 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.014/0.011 ato:40 mss:65464 cwnd:10 pmtu:65536 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:65464
|
|
+tcp ESTAB 0 0 [::1]:51238 [::1]:3000 timer(keepalive,11sec,0) uid:1024 inode:165581951 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d1) ts sack cubic wscale:7,7 rtt:4.802/9.371 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:65476
|
|
+tcp ESTAB 0 0 [::1]:51240 [::1]:3000 timer(keepalive,15sec,0) uid:1024 inode:165583008 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.783/1.488 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:65476
|
|
+tcp ESTAB 0 0 [::1]:51236 [::1]:3000 timer(keepalive,514ms,0) uid:1024 inode:165575931 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb4585000,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:5.713/10.966 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:98304
|
|
+tcp ESTAB 0 0 [::1]:51228 [::1]:3000 timer(keepalive,3.596ms,0) uid:1024 inode:165582929 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb4978000,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.422/0.763 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:98304
|
|
+tcp ESTAB 0 0 [::1]:51232 [::1]:3000 timer(keepalive,3.596ms,0) uid:1024 inode:165552950 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb4978000,t0,tb2626560,f0,w0,o0,bl0,d3) ts sack cubic wscale:7,7 rtt:8.219/14.257 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:163840
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:57958 142.250.70.238:443 timer(timewait,54sec,0) uid:0 inode:0 sk:183a cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:46306 3.233.54.64:443 timer(keepalive,28sec,0) uid:1024 inode:165592357 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:12,7 rtt:246.45/50.358 ato:40 mss:1448 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:49614 142.250.70.165:443 uid:1024 inode:165581235 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:10.2/1.047 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55048 10.0.0.10:44322 timer(timewait,8.579ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55060 10.0.0.10:44322 timer(timewait,8.449ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55094 10.0.0.10:44322 timer(timewait,14sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55088 10.0.0.10:44322 timer(timewait,15sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55064 10.0.0.10:44322 timer(timewait,8.577ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55092 10.0.0.10:44322 timer(timewait,13sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55036 10.0.0.10:44322 timer(timewait,3.608ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55038 10.0.0.10:44322 timer(timewait,5.580ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55066 10.0.0.10:44322 timer(timewait,9.605ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55080 10.0.0.10:44322 timer(timewait,12sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55034 10.0.0.10:44322 timer(timewait,4.636ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55050 10.0.0.10:44322 timer(timewait,6.570ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55030 10.0.0.10:44322 timer(timewait,1.618ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55024 10.0.0.10:44322 timer(timewait,1.623ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55020 10.0.0.10:44322 timer(timewait,3.571ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55046 10.0.0.10:44322 timer(timewait,5.577ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55084 10.0.0.10:44322 timer(timewait,12sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55056 10.0.0.10:44322 timer(timewait,7.623ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55032 10.0.0.10:44322 timer(timewait,2.607ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55022 10.0.0.10:44322 timer(timewait,586ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55090 10.0.0.10:44322 timer(timewait,13sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55070 10.0.0.10:44322 timer(timewait,9.625ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55096 10.0.0.10:44322 timer(timewait,14sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55074 10.0.0.10:44322 timer(timewait,16sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55028 10.0.0.10:44322 timer(timewait,2.601ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55044 10.0.0.10:44322 timer(timewait,10sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55026 10.0.0.10:44322 timer(timewait,1.601ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55054 10.0.0.10:44322 timer(timewait,7.474ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55042 10.0.0.10:44322 timer(timewait,6.447ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55062 10.0.0.10:44322 timer(timewait,9.618ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55040 10.0.0.10:44322 timer(timewait,4.635ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55086 10.0.0.10:44322 timer(timewait,13sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55072 10.0.0.10:44322 timer(timewait,10sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55078 10.0.0.10:44322 timer(timewait,11sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55052 10.0.0.10:44322 timer(timewait,6.568ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55082 10.0.0.10:44322 timer(timewait,11sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55068 10.0.0.10:44322 timer(timewait,11sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55014 10.0.0.10:44322 timer(timewait,581ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55058 10.0.0.10:44322 timer(timewait,7.617ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55104 10.0.0.10:44322 timer(timewait,25sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55116 10.0.0.10:44322 timer(timewait,18sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55112 10.0.0.10:44322 timer(timewait,19sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55114 10.0.0.10:44322 timer(timewait,18sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55102 10.0.0.10:44322 timer(timewait,16sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55118 10.0.0.10:44322 timer(timewait,19sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55100 10.0.0.10:44322 timer(timewait,18sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55108 10.0.0.10:44322 timer(timewait,17sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55110 10.0.0.10:44322 timer(timewait,17sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55106 10.0.0.10:44322 timer(timewait,16sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55122 10.0.0.10:44322 timer(timewait,20sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55150 10.0.0.10:44322 timer(timewait,24sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55130 10.0.0.10:44322 timer(timewait,20sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55134 10.0.0.10:44322 timer(timewait,21sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55146 10.0.0.10:44322 timer(timewait,24sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55144 10.0.0.10:44322 timer(timewait,23sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55148 10.0.0.10:44322 timer(timewait,31sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55126 10.0.0.10:44322 timer(timewait,22sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55132 10.0.0.10:44322 timer(timewait,21sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55124 10.0.0.10:44322 timer(timewait,20sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55140 10.0.0.10:44322 timer(timewait,24sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55138 10.0.0.10:44322 timer(timewait,22sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55136 10.0.0.10:44322 timer(timewait,22sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55142 10.0.0.10:44322 timer(timewait,23sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55154 10.0.0.10:44322 timer(timewait,25sec,0) uid:0 inode:0 sk:ef49 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55162 10.0.0.10:44322 timer(timewait,29sec,0) uid:0 inode:0 sk:ef4a cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55156 10.0.0.10:44322 timer(timewait,26sec,0) uid:0 inode:0 sk:ef4b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55164 10.0.0.10:44322 timer(timewait,27sec,0) uid:0 inode:0 sk:17ed cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55174 10.0.0.10:44322 timer(timewait,32sec,0) uid:0 inode:0 sk:17ed cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55176 10.0.0.10:44322 timer(timewait,29sec,0) uid:0 inode:0 sk:17ed cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55172 10.0.0.10:44322 timer(timewait,29sec,0) uid:0 inode:0 sk:17ed cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55152 10.0.0.10:44322 timer(timewait,27sec,0) uid:0 inode:0 sk:17ed cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55168 10.0.0.10:44322 timer(timewait,28sec,0) uid:0 inode:0 sk:ef4c cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55160 10.0.0.10:44322 timer(timewait,26sec,0) uid:0 inode:0 sk:ef4d cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55158 10.0.0.10:44322 timer(timewait,26sec,0) uid:0 inode:0 sk:ef4e cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55166 10.0.0.10:44322 timer(timewait,28sec,0) uid:0 inode:0 sk:ef50 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55200 10.0.0.10:44322 timer(timewait,33sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55178 10.0.0.10:44322 timer(timewait,30sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55186 10.0.0.10:44322 timer(timewait,31sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55190 10.0.0.10:44322 timer(timewait,33sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55184 10.0.0.10:44322 timer(timewait,40sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55206 10.0.0.10:44322 timer(timewait,34sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55182 10.0.0.10:44322 timer(timewait,31sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55194 10.0.0.10:44322 timer(timewait,33sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55204 10.0.0.10:44322 timer(timewait,34sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55210 10.0.0.10:44322 timer(timewait,34sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55188 10.0.0.10:44322 timer(timewait,32sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55196 10.0.0.10:44322 timer(timewait,35sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55180 10.0.0.10:44322 timer(timewait,30sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55232 10.0.0.10:44322 timer(timewait,39sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55216 10.0.0.10:44322 timer(timewait,37sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55218 10.0.0.10:44322 timer(timewait,36sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55222 10.0.0.10:44322 timer(timewait,38sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55224 10.0.0.10:44322 timer(timewait,37sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55226 10.0.0.10:44322 timer(timewait,38sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55228 10.0.0.10:44322 timer(timewait,44sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55220 10.0.0.10:44322 timer(timewait,37sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55214 10.0.0.10:44322 timer(timewait,36sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55230 10.0.0.10:44322 timer(timewait,39sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55212 10.0.0.10:44322 timer(timewait,35sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55260 10.0.0.10:44322 timer(timewait,46sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55238 10.0.0.10:44322 timer(timewait,41sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55240 10.0.0.10:44322 timer(timewait,42sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55248 10.0.0.10:44322 timer(timewait,42sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55244 10.0.0.10:44322 timer(timewait,42sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55234 10.0.0.10:44322 timer(timewait,40sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55250 10.0.0.10:44322 timer(timewait,43sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55262 10.0.0.10:44322 timer(timewait,45sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55242 10.0.0.10:44322 timer(timewait,41sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55256 10.0.0.10:44322 timer(timewait,43sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55236 10.0.0.10:44322 timer(timewait,41sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55254 10.0.0.10:44322 timer(timewait,44sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55286 10.0.0.10:44322 timer(timewait,48sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55272 10.0.0.10:44322 timer(timewait,48sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55268 10.0.0.10:44322 timer(timewait,47sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55288 10.0.0.10:44322 timer(timewait,49sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55274 10.0.0.10:44322 timer(timewait,47sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55276 10.0.0.10:44322 timer(timewait,47sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55266 10.0.0.10:44322 timer(timewait,45sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55278 10.0.0.10:44322 timer(timewait,49sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55282 10.0.0.10:44322 timer(timewait,48sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55270 10.0.0.10:44322 timer(timewait,46sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55280 10.0.0.10:44322 timer(timewait,47sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55284 10.0.0.10:44322 timer(timewait,50sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55292 10.0.0.10:44322 timer(timewait,51sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55298 10.0.0.10:44322 timer(timewait,51sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55300 10.0.0.10:44322 timer(timewait,54sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55302 10.0.0.10:44322 timer(timewait,52sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55310 10.0.0.10:44322 timer(timewait,55sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55296 10.0.0.10:44322 timer(timewait,52sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55294 10.0.0.10:44322 timer(timewait,50sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55312 10.0.0.10:44322 timer(timewait,54sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55334 10.0.0.10:44322 timer(timewait,58sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55320 10.0.0.10:44322 timer(timewait,55sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55326 10.0.0.10:44322 timer(timewait,57sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55330 10.0.0.10:44322 timer(timewait,59sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55322 10.0.0.10:44322 timer(timewait,56sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55340 10.0.0.10:44322 timer(timewait,59sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55318 10.0.0.10:44322 timer(timewait,56sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55338 10.0.0.10:44322 timer(timewait,58sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55328 10.0.0.10:44322 timer(timewait,57sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:55342 10.0.0.10:44322 timer(keepalive,29sec,0) uid:378 inode:165616642 sk:5 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb2882418,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.041/0.024 ato:40 mss:32768 cwnd:10 pmtu:65535 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:73728
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55316 10.0.0.10:44322 timer(timewait,55sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:55332 10.0.0.10:44322 timer(keepalive,28sec,0) uid:378 inode:165581545 sk:5 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb4454646,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:3.728/6.7 ato:40 mss:32768 cwnd:10 pmtu:65535 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:105770
|
|
+
|
|
+pcp-ss output, at 10s offset
|
|
+# Time: 2021-06-18 13:33:39.076141 Filter: state connected
|
|
+Netid State Recv-Q Send-Q Local Address:Port Peer Address:Port Process
|
|
+tcp ESTAB 0 0 [::ffff:127.0.0.1]:3000 [::ffff:127.0.0.1]:49798 timer(keepalive,5.031ms,0) uid:378 inode:164821548 sk:17e9 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb2358342,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.029/0.019 ato:40 mss:32768 cwnd:10 pmtu:65535 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:1388 segs_in:1880 send 90394482759bps lastsnd:9969 lastrcv:9971 lastack:9969 pacing_rate 178481021272bps delivery_rate 65536000000bps rcv_space:65664
|
|
+tcp ESTAB 0 0 127.0.0.1:6379 127.0.0.1:34526 timer(keepalive,40sec,0) uid:379 inode:164789635 sk:17e9 cgroup:/system.slice/redis.service <-> skmem(r0,rb6291456,t0,tb4194304,f0,w0,o0,bl0,d191) ts sack cubic wscale:7,7 rtt:5.308/10.357 ato:40 mss:65483 cwnd:37 pmtu:65535 ssthresh:27 bytes_acked:0 bytes_received:0 segs_out:100169 segs_in:51994 send 3651651846bps lastsnd:609 lastrcv:609 lastack:568 pacing_rate 4381982208bps delivery_rate 69848533328bps rcv_space:1379162
|
|
+tcp ESTAB 23 0 10.40.192.134:47862 10.0.15.20:6667 timer(on,614ms,0) uid:1024 inode:143267906 sk:39 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb181972,t0,tb46080,f2793,w1303,o0,bl0,d56) ts sack cubic wscale:8,7 rtt:453.799/37.471 ato:40 mss:1308 cwnd:2 pmtu:1360 ssthresh:2 bytes_acked:0 bytes_received:0 segs_out:117097 segs_in:108401 send 46117bps lastsnd:40 lastrcv:6050 lastack:22432 pacing_rate 55336bps delivery_rate 24936bps rcv_space:19026
|
|
+tcp ESTAB 0 0 10.0.0.10:58310 52.88.142.33:443 timer(keepalive,2min33sec,0) uid:1024 inode:143231822 sk:39 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d4) ts sack cubic wscale:8,7 rtt:211.152/22.951 ato:40 mss:1448 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:2072 segs_in:2598 send 548610bps lastsnd:146234 lastrcv:146236 lastack:146029 pacing_rate 1097216bps delivery_rate 120648bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:44852 202.58.9.228:443 timer(keepalive,43sec,0) uid:1024 inode:143675936 sk:39 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d1769) sack cubic wscale:9,7 rtt:98.707/11.472 ato:40 mss:1460 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:8675 segs_in:8669 send 1183300bps lastsnd:8818069 lastrcv:8817969 lastack:1340 pacing_rate 2366592bps delivery_rate 480352bps rcv_space:14600
|
|
+tcp ESTAB 23 0 10.0.0.10:37330 217.182.79.119:6667 timer(on,543ms,0) uid:1024 inode:147037462 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2467768,t0,tb87040,f2793,w1303,o0,bl0,d15) ts sack cubic wscale:7,7 rtt:377.613/33.401 ato:40 mss:1448 cwnd:2 pmtu:1500 ssthresh:2 bytes_acked:0 bytes_received:0 segs_out:13042 segs_in:6567 send 61354bps lastsnd:39 lastrcv:29806 lastack:29806 pacing_rate 73624bps delivery_rate 36280bps rcv_space:64371
|
|
+tcp ESTAB 0 0 192.168.122.1:53100 192.168.122.54:22 timer(keepalive,2min22sec,0) uid:1024 inode:152890200 sk:3a cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d11) ts sack cubic wscale:7,7 rtt:6.415/11.95 ato:40 mss:1448 cwnd:20 pmtu:1500 ssthresh:20 bytes_acked:0 bytes_received:0 segs_out:2145 segs_in:1352 send 36115355bps lastsnd:6216424 lastrcv:6216231 lastack:157163 pacing_rate 43332512bps delivery_rate 1079864400bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:52874 199.127.207.181:443 timer(keepalive,23sec,0) uid:1024 inode:154981923 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d433) sack cubic wscale:9,7 rtt:231.99/42.333 ato:40 mss:1460 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:2107 segs_in:2102 send 503470bps lastsnd:78116165 lastrcv:78116159 lastack:21772 pacing_rate 1006936bps delivery_rate 206000bps rcv_space:14600
|
|
+tcp ESTAB 0 0 10.0.0.10:33256 10.0.0.6:8009 timer(keepalive,14sec,0) uid:1024 inode:161634072 sk:3a cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2554304,t0,tb87040,f0,w0,o0,bl0,d1) ts sack cubic wscale:6,7 rtt:7.135/1.044 ato:40 mss:1448 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:13349 segs_in:6686 send 16235459bps lastsnd:524 lastrcv:516 lastack:516 pacing_rate 32468640bps delivery_rate 7613536bps rcv_space:65491
|
|
+tcp ESTAB 0 0 10.0.0.10:45164 173.194.202.125:443 timer(keepalive,23sec,0) uid:1024 inode:161888302 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:228.663/49.231 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:890 segs_in:895 send 496101bps lastsnd:207468 lastrcv:207250 lastack:21813 pacing_rate 992200bps delivery_rate 103864bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:37256 157.240.8.18:443 timer(keepalive,2min53sec,0) uid:1024 inode:163353710 sk:262 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb1623296,t0,tb46080,f0,w0,o0,bl0,d37) ts sack cubic wscale:8,7 rtt:21.5/0.94 ato:40 mss:1380 cwnd:22 pmtu:1500 ssthresh:22 bytes_acked:0 bytes_received:0 segs_out:4414 segs_in:4458 send 11296744bps lastsnd:1471 lastrcv:1255 lastack:1449 pacing_rate 13556008bps delivery_rate 9819152bps rcv_space:87463
|
|
+tcp ESTAB 0 0 10.0.0.10:40226 13.54.123.156:443 timer(keepalive,8.158ms,0) uid:1024 inode:163971400 sk:3b cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2673664,t0,tb46080,f0,w0,o0,bl0,d0) ts sack cubic wscale:12,7 rtt:23.038/1.11 ato:46 mss:1288 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:671 segs_in:482 send 4472610bps lastsnd:22123 lastrcv:22098 lastack:22098 pacing_rate 8945216bps delivery_rate 1318208bps rcv_space:67012
|
|
+tcp ESTAB 0 0 10.0.0.10:40232 13.54.123.156:443 timer(keepalive,15sec,0) uid:1024 inode:164254779 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2730360,t0,tb46080,f0,w0,o0,bl0,d0) ts sack cubic wscale:12,7 rtt:21.965/0.395 ato:42 mss:1288 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:842 segs_in:526 send 4691099bps lastsnd:9624 lastrcv:9601 lastack:9601 pacing_rate 9381984bps delivery_rate 1362840bps rcv_space:67755
|
|
+tcp ESTAB 0 0 10.0.0.10:39906 172.217.194.188:5228 timer(keepalive,6.702ms,0) uid:1024 inode:164287111 sk:eacd cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:94.893/7.701 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:187 segs_in:187 send 1195452bps lastsnd:1336001 lastrcv:1335906 lastack:38204 pacing_rate 2390880bps delivery_rate 229032bps rcv_space:14480
|
|
+tcp ESTAB 0 0 127.0.0.1:34526 127.0.0.1:6379 timer(keepalive,10sec,0) uid:386 inode:164791620 sk:ef22 cgroup:/system.slice/pmproxy.service <-> skmem(r0,rb4978722,t0,tb4194304,f0,w0,o0,bl0,d352) ts sack cubic wscale:7,7 rtt:0.301/0.282 ato:40 mss:65483 cwnd:34 pmtu:65535 ssthresh:16 bytes_acked:0 bytes_received:0 segs_out:51994 segs_in:100170 send 59174006645bps lastsnd:609 lastrcv:609 lastack:609 pacing_rate 71008807968bps delivery_rate 104772800000bps rcv_space:245440
|
|
+tcp ESTAB 0 0 127.0.0.1:49798 127.0.0.1:3000 uid:0 inode:164815425 sk:17e9 cgroup:/system.slice/pmcd.service <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:5.821/8.743 ato:40 mss:65483 cwnd:10 pmtu:65535 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:1880 segs_in:1389 send 899955334bps lastsnd:9970 lastrcv:9968 lastack:9968 pacing_rate 1799678784bps delivery_rate 40297230768bps rcv_space:65495
|
|
+udp ESTAB 0 0 10.0.0.10:36244 142.250.70.138:443 uid:1024 inode:165293889 sk:f231 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+udp ESTAB 0 0 10.0.0.10:35754 142.251.10.189:443 uid:1024 inode:165318004 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+udp ESTAB 0 0 10.0.0.10:49123 142.250.4.189:443 uid:1024 inode:165373416 sk:ef33 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:40218 142.250.70.142:443 uid:1024 inode:165413160 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d16) ts sack cubic wscale:8,7 rtt:10.371/0.673 ato:40 mss:1418 cwnd:3 pmtu:1500 ssthresh:2 bytes_acked:0 bytes_received:0 segs_out:493 segs_in:558 send 3281458bps lastsnd:48748 lastrcv:48749 lastack:48739 pacing_rate 3937552bps delivery_rate 2269480bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:43990 142.250.70.131:443 uid:1024 inode:165420073 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:9.654/0.506 ato:40 mss:1418 cwnd:4 pmtu:1500 ssthresh:4 bytes_acked:0 bytes_received:0 segs_out:246 segs_in:410 send 4700228bps lastsnd:17768 lastrcv:17783 lastack:17759 pacing_rate 5640272bps delivery_rate 2983168bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:44388 142.250.4.189:443 uid:1024 inode:165419510 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:96.696/2.871 ato:40 mss:1418 cwnd:7 pmtu:1500 ssthresh:7 bytes_acked:0 bytes_received:0 segs_out:207 segs_in:207 send 821213bps lastsnd:17146 lastrcv:17036 lastack:17036 pacing_rate 985448bps delivery_rate 467400bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:34914 142.250.70.234:443 uid:1024 inode:165418039 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f4096,w0,o0,bl0,d11) ts sack cubic wscale:8,7 rtt:10.278/0.678 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:307 segs_in:321 send 11037167bps lastsnd:11065 lastrcv:10735 lastack:10735 pacing_rate 22073256bps delivery_rate 2827752bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:34916 142.250.70.234:443 uid:1024 inode:165418040 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d9) ts sack cubic wscale:8,7 rtt:10.081/1.167 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:277 segs_in:301 send 11252852bps lastsnd:11066 lastrcv:11066 lastack:11056 pacing_rate 22505424bps delivery_rate 3209656bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:49594 142.250.70.165:443 timer(keepalive,6.621ms,0) uid:1024 inode:165410113 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb1074240,t0,tb87040,f0,w0,o0,bl0,d6) ts sack cubic wscale:8,7 rtt:11.987/1.417 ato:40 mss:1418 cwnd:18 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:342 segs_in:404 send 17034454bps lastsnd:218733 lastrcv:218735 lastack:38371 pacing_rate 34068192bps delivery_rate 8192584bps rcv_space:75339
|
|
+tcp ESTAB 0 0 10.0.0.10:57232 157.240.8.35:443 uid:1024 inode:165408121 sk:1781 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb46080,f8192,w0,o0,bl0,d4) ts sack cubic wscale:8,7 rtt:23.193/1.8 ato:40 mss:1380 cwnd:2 pmtu:1500 ssthresh:2 bytes_acked:0 bytes_received:0 segs_out:252 segs_in:206 send 952011bps lastsnd:6934 lastrcv:6458 lastack:6458 pacing_rate 1142400bps delivery_rate 371224bps rcv_space:14480
|
|
+udp ESTAB 0 0 10.0.0.10:44639 142.250.70.131:443 uid:1024 inode:165411837 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:46392 142.251.10.189:443 uid:1024 inode:165466671 sk:f23b cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f4096,w0,o0,bl0,d2) ts sack cubic wscale:8,7 rtt:111.69/24.888 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:135 segs_in:139 send 1015668bps lastsnd:52309 lastrcv:25403 lastack:50572 pacing_rate 2031320bps delivery_rate 335272bps rcv_space:14480
|
|
+udp ESTAB 0 0 10.0.0.10:35983 142.250.70.142:443 uid:1024 inode:165466809 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:55532 140.82.114.26:443 timer(keepalive,9.693ms,0) uid:1024 inode:165515920 sk:17eb cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:10,7 rtt:251.743/35.839 ato:40 mss:1424 cwnd:20 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:49 segs_in:46 send 905050bps lastsnd:20795 lastrcv:20795 lastack:20571 pacing_rate 1810096bps delivery_rate 503048bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:55534 140.82.114.26:443 timer(keepalive,28sec,0) uid:1024 inode:165521771 sk:ef38 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:10,7 rtt:283.095/41.806 ato:40 mss:1424 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:36 segs_in:38 send 402409bps lastsnd:2669 lastrcv:2669 lastack:2444 pacing_rate 804816bps delivery_rate 73400bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:55308 142.250.70.228:443 uid:1024 inode:165561257 sk:eb1c cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d3) ts sack cubic wscale:8,7 rtt:11.532/2.782 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:38 segs_in:36 send 9836975bps lastsnd:46596 lastrcv:46586 lastack:46587 pacing_rate 19672664bps delivery_rate 1814168bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:44322 10.0.0.10:55122 timer(keepalive,44sec,0) uid:386 inode:165594717 sk:5 cgroup:/system.slice/pmproxy.service <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:5.315/10.43 ato:40 mss:65483 cwnd:17 pmtu:65535 ssthresh:17 bytes_acked:0 bytes_received:0 segs_out:65 segs_in:47 send 1675576294bps lastsnd:609 lastrcv:611 lastack:567 pacing_rate 2010691552bps delivery_rate 130966000000bps rcv_space:65483
|
|
+tcp ESTAB 0 0 10.0.0.10:55694 34.120.177.193:443 timer(keepalive,2.525ms,0) uid:1024 inode:165577700 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d1) ts sack cubic wscale:8,7 rtt:13.091/4.789 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:21 segs_in:20 send 8665495bps lastsnd:224263 lastrcv:224265 lastack:42465 pacing_rate 17330160bps delivery_rate 2267288bps rcv_space:14480
|
|
+tcp ESTAB 0 0 [::1]:3000 [::1]:51232 timer(keepalive,4.425ms,0) uid:378 inode:165581925 sk:5 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.392/0.759 ato:40 mss:65464 cwnd:10 pmtu:65536 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:992 segs_in:851 send 13360000000bps lastsnd:607 lastrcv:760 lastack:607 pacing_rate 26677465768bps delivery_rate 174570666664bps rcv_space:65464
|
|
+tcp ESTAB 0 0 [::1]:51238 [::1]:3000 timer(keepalive,6.381ms,0) uid:1024 inode:165581951 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d1) ts sack cubic wscale:7,7 rtt:4.48/8.875 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:626 segs_in:849 send 585142857bps lastsnd:758 lastrcv:616 lastack:616 pacing_rate 1170122464bps delivery_rate 87381333328bps rcv_space:65476
|
|
+tcp ESTAB 0 0 [::1]:51240 [::1]:3000 timer(keepalive,10sec,0) uid:1024 inode:165583008 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:4.388/8.395 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:642 segs_in:867 send 597411121bps lastsnd:764 lastrcv:635 lastack:635 pacing_rate 1194686104bps delivery_rate 87381333328bps rcv_space:65476
|
|
+tcp ESTAB 0 0 [::1]:51236 [::1]:3000 timer(keepalive,40sec,0) uid:1024 inode:165575931 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb4585000,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.942/1.793 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:925 segs_in:1058 send 2782845011bps lastsnd:4761 lastrcv:4697 lastack:4697 pacing_rate 5564213312bps delivery_rate 65536000000bps rcv_space:98304
|
|
+tcp ESTAB 0 0 [::1]:51228 [::1]:3000 timer(keepalive,43sec,0) uid:1024 inode:165582929 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb4978000,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:2.415/4.642 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:842 segs_in:867 send 1085482402bps lastsnd:759 lastrcv:623 lastack:623 pacing_rate 2170964800bps delivery_rate 87381333328bps rcv_space:98304
|
|
+tcp ESTAB 0 0 [::1]:51232 [::1]:3000 timer(keepalive,43sec,0) uid:1024 inode:165552950 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb4978000,t0,tb2626560,f0,w0,o0,bl0,d3) ts sack cubic wscale:7,7 rtt:3.701/7.013 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:851 segs_in:993 send 708305863bps lastsnd:760 lastrcv:607 lastack:607 pacing_rate 1416324704bps delivery_rate 87381333328bps rcv_space:163840
|
|
+tcp ESTAB 0 0 10.0.0.10:57958 142.250.70.238:443 uid:1024 inode:165594185 sk:183a cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d1) ts sack cubic wscale:8,7 rtt:10.608/1.213 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:27 segs_in:27 send 10693816bps lastsnd:18595 lastrcv:18584 lastack:18584 pacing_rate 21387376bps delivery_rate 5058864bps rcv_space:14480
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54774 10.0.0.10:44322 timer(timewait,,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54792 10.0.0.10:44322 timer(timewait,,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54794 10.0.0.10:44322 timer(timewait,2.383ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54796 10.0.0.10:44322 timer(timewait,350ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:46306 3.233.54.64:443 timer(keepalive,23sec,0) uid:1024 inode:165592357 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:12,7 rtt:246.45/50.358 ato:40 mss:1448 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:12 segs_in:12 send 470034bps lastsnd:22071 lastrcv:21847 lastack:21848 pacing_rate 940064bps delivery_rate 120016bps rcv_space:14480
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54784 10.0.0.10:44322 timer(timewait,,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:49614 142.250.70.165:443 uid:1024 inode:165581235 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:10.118/1.177 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:20 segs_in:19 send 11211702bps lastsnd:27596 lastrcv:27584 lastack:27584 pacing_rate 22423400bps delivery_rate 3963936bps rcv_space:14480
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54798 10.0.0.10:44322 timer(timewait,222ms,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54802 10.0.0.10:44322 timer(timewait,3.376ms,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54800 10.0.0.10:44322 timer(timewait,354ms,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+udp ESTAB 0 0 10.0.0.10:37128 142.250.70.138:443 uid:1024 inode:165585835 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+udp ESTAB 0 0 10.0.0.10:49113 142.250.70.131:443 uid:1024 inode:165606514 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54872 10.0.0.10:44322 timer(timewait,14sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55048 10.0.0.10:44322 timer(timewait,48sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55060 10.0.0.10:44322 timer(timewait,48sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55094 10.0.0.10:44322 timer(timewait,54sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54980 10.0.0.10:44322 timer(timewait,34sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54806 10.0.0.10:44322 timer(timewait,1.441ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55088 10.0.0.10:44322 timer(timewait,55sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55064 10.0.0.10:44322 timer(timewait,48sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54956 10.0.0.10:44322 timer(timewait,26sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54826 10.0.0.10:44322 timer(timewait,5.357ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54822 10.0.0.10:44322 timer(timewait,8.347ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54860 10.0.0.10:44322 timer(timewait,13sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55092 10.0.0.10:44322 timer(timewait,53sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55036 10.0.0.10:44322 timer(timewait,43sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55038 10.0.0.10:44322 timer(timewait,45sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55066 10.0.0.10:44322 timer(timewait,49sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55080 10.0.0.10:44322 timer(timewait,52sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54916 10.0.0.10:44322 timer(timewait,23sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55034 10.0.0.10:44322 timer(timewait,44sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54954 10.0.0.10:44322 timer(timewait,25sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54894 10.0.0.10:44322 timer(timewait,19sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54968 10.0.0.10:44322 timer(timewait,28sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54978 10.0.0.10:44322 timer(timewait,30sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54830 10.0.0.10:44322 timer(timewait,7.365ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55012 10.0.0.10:44322 timer(timewait,37sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55050 10.0.0.10:44322 timer(timewait,46sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54896 10.0.0.10:44322 timer(timewait,17sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54838 10.0.0.10:44322 timer(timewait,9.447ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55030 10.0.0.10:44322 timer(timewait,41sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55002 10.0.0.10:44322 timer(timewait,37sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55024 10.0.0.10:44322 timer(timewait,41sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55020 10.0.0.10:44322 timer(timewait,43sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55046 10.0.0.10:44322 timer(timewait,45sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54876 10.0.0.10:44322 timer(timewait,18sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55084 10.0.0.10:44322 timer(timewait,52sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54900 10.0.0.10:44322 timer(timewait,19sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55056 10.0.0.10:44322 timer(timewait,47sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54808 10.0.0.10:44322 timer(timewait,2.383ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54858 10.0.0.10:44322 timer(timewait,10sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55032 10.0.0.10:44322 timer(timewait,42sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55000 10.0.0.10:44322 timer(timewait,35sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54810 10.0.0.10:44322 timer(timewait,4.343ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54898 10.0.0.10:44322 timer(timewait,18sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54874 10.0.0.10:44322 timer(timewait,13sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55022 10.0.0.10:44322 timer(timewait,40sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54892 10.0.0.10:44322 timer(timewait,17sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54882 10.0.0.10:44322 timer(timewait,15sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54964 10.0.0.10:44322 timer(timewait,27sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54834 10.0.0.10:44322 timer(timewait,6.831ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54986 10.0.0.10:44322 timer(timewait,32sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54888 10.0.0.10:44322 timer(timewait,16sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55090 10.0.0.10:44322 timer(timewait,53sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54906 10.0.0.10:44322 timer(timewait,23sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54816 10.0.0.10:44322 timer(timewait,4.219ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54974 10.0.0.10:44322 timer(timewait,30sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55004 10.0.0.10:44322 timer(timewait,36sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54972 10.0.0.10:44322 timer(timewait,28sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54966 10.0.0.10:44322 timer(timewait,27sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55070 10.0.0.10:44322 timer(timewait,49sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55006 10.0.0.10:44322 timer(timewait,38sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54904 10.0.0.10:44322 timer(timewait,20sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54836 10.0.0.10:44322 timer(timewait,7.364ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54988 10.0.0.10:44322 timer(timewait,32sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54902 10.0.0.10:44322 timer(timewait,18sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54914 10.0.0.10:44322 timer(timewait,20sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54976 10.0.0.10:44322 timer(timewait,31sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55096 10.0.0.10:44322 timer(timewait,54sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54824 10.0.0.10:44322 timer(timewait,5.225ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54958 10.0.0.10:44322 timer(timewait,26sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54930 10.0.0.10:44322 timer(timewait,22sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54984 10.0.0.10:44322 timer(timewait,31sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54996 10.0.0.10:44322 timer(timewait,36sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54866 10.0.0.10:44322 timer(timewait,12sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54962 10.0.0.10:44322 timer(timewait,29sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54942 10.0.0.10:44322 timer(timewait,24sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54910 10.0.0.10:44322 timer(timewait,19sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55074 10.0.0.10:44322 timer(timewait,56sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54998 10.0.0.10:44322 timer(timewait,35sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54990 10.0.0.10:44322 timer(timewait,34sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55028 10.0.0.10:44322 timer(timewait,42sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55044 10.0.0.10:44322 timer(timewait,50sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55008 10.0.0.10:44322 timer(timewait,38sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54842 10.0.0.10:44322 timer(timewait,12sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54920 10.0.0.10:44322 timer(timewait,21sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54982 10.0.0.10:44322 timer(timewait,30sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54862 10.0.0.10:44322 timer(timewait,11sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54868 10.0.0.10:44322 timer(timewait,12sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54926 10.0.0.10:44322 timer(timewait,22sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55026 10.0.0.10:44322 timer(timewait,41sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54870 10.0.0.10:44322 timer(timewait,13sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54864 10.0.0.10:44322 timer(timewait,15sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54818 10.0.0.10:44322 timer(timewait,6.800ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54812 10.0.0.10:44322 timer(timewait,5.358ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54992 10.0.0.10:44322 timer(timewait,33sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55018 10.0.0.10:44322 timer(timewait,39sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54960 10.0.0.10:44322 timer(timewait,29sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55054 10.0.0.10:44322 timer(timewait,47sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54928 10.0.0.10:44322 timer(timewait,22sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55042 10.0.0.10:44322 timer(timewait,46sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54852 10.0.0.10:44322 timer(timewait,9.426ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54936 10.0.0.10:44322 timer(timewait,23sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54948 10.0.0.10:44322 timer(timewait,26sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55062 10.0.0.10:44322 timer(timewait,49sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54944 10.0.0.10:44322 timer(timewait,27sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54846 10.0.0.10:44322 timer(timewait,9.223ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55040 10.0.0.10:44322 timer(timewait,44sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54804 10.0.0.10:44322 timer(timewait,1.440ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54850 10.0.0.10:44322 timer(timewait,10sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54884 10.0.0.10:44322 timer(timewait,15sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54938 10.0.0.10:44322 timer(timewait,25sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55086 10.0.0.10:44322 timer(timewait,53sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54840 10.0.0.10:44322 timer(timewait,8.342ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55072 10.0.0.10:44322 timer(timewait,50sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54922 10.0.0.10:44322 timer(timewait,21sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54878 10.0.0.10:44322 timer(timewait,14sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55078 10.0.0.10:44322 timer(timewait,51sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55052 10.0.0.10:44322 timer(timewait,46sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54932 10.0.0.10:44322 timer(timewait,24sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54832 10.0.0.10:44322 timer(timewait,6.800ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54880 10.0.0.10:44322 timer(timewait,16sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54854 10.0.0.10:44322 timer(timewait,11sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55082 10.0.0.10:44322 timer(timewait,51sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54856 10.0.0.10:44322 timer(timewait,10sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54994 10.0.0.10:44322 timer(timewait,33sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55068 10.0.0.10:44322 timer(timewait,51sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55014 10.0.0.10:44322 timer(timewait,40sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55016 10.0.0.10:44322 timer(timewait,39sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54814 10.0.0.10:44322 timer(timewait,3.380ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54820 10.0.0.10:44322 timer(timewait,4.339ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54886 10.0.0.10:44322 timer(timewait,17sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54890 10.0.0.10:44322 timer(timewait,16sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55058 10.0.0.10:44322 timer(timewait,47sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54952 10.0.0.10:44322 timer(timewait,25sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:55104 10.0.0.10:44322 timer(keepalive,26sec,0) uid:378 inode:165606577 sk:5 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb6291456,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:8.43/11.76 ato:40 mss:32768 cwnd:10 pmtu:65535 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:178 segs_in:356 send 310965599bps lastsnd:756 lastrcv:637 lastack:639 pacing_rate 621875864bps delivery_rate 20164923072bps rcv_space:469929
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55116 10.0.0.10:44322 timer(timewait,58sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55112 10.0.0.10:44322 timer(timewait,59sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55114 10.0.0.10:44322 timer(timewait,58sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55102 10.0.0.10:44322 timer(timewait,56sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55118 10.0.0.10:44322 timer(timewait,59sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55100 10.0.0.10:44322 timer(timewait,58sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55108 10.0.0.10:44322 timer(timewait,57sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55110 10.0.0.10:44322 timer(timewait,57sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55106 10.0.0.10:44322 timer(timewait,56sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:55122 10.0.0.10:44322 timer(keepalive,29sec,0) uid:378 inode:165608516 sk:5 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb3013437,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.236/0.425 ato:40 mss:32768 cwnd:10 pmtu:65535 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:47 segs_in:66 send 11107796610bps lastsnd:611 lastrcv:609 lastack:609 pacing_rate 22145216472bps delivery_rate 32768000000bps rcv_space:81920
|
|
+
|
|
+pcp-ss output, at specific start time
|
|
+# Time: 2021-06-18 13:33:39 Filter: state connected
|
|
+Netid State Recv-Q Send-Q Local Address:Port Peer Address:Port Process
|
|
+tcp ESTAB 0 0 [::ffff:127.0.0.1]:3000 [::ffff:127.0.0.1]:49798 timer(keepalive,5.031ms,0) uid:378 inode:164821548 sk:17e9 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb2358342,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.029/0.019 ato:40 mss:32768 cwnd:10 pmtu:65535 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:1388 segs_in:1880 send 90394482759bps lastsnd:9969 lastrcv:9971 lastack:9969 pacing_rate 178481021272bps delivery_rate 65536000000bps rcv_space:65664
|
|
+tcp ESTAB 0 0 127.0.0.1:6379 127.0.0.1:34526 timer(keepalive,40sec,0) uid:379 inode:164789635 sk:17e9 cgroup:/system.slice/redis.service <-> skmem(r0,rb6291456,t0,tb4194304,f0,w0,o0,bl0,d191) ts sack cubic wscale:7,7 rtt:5.308/10.357 ato:40 mss:65483 cwnd:37 pmtu:65535 ssthresh:27 bytes_acked:0 bytes_received:0 segs_out:100169 segs_in:51994 send 3651651846bps lastsnd:609 lastrcv:609 lastack:568 pacing_rate 4381982208bps delivery_rate 69848533328bps rcv_space:1379162
|
|
+tcp ESTAB 23 0 10.40.192.134:47862 10.0.15.20:6667 timer(on,614ms,0) uid:1024 inode:143267906 sk:39 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb181972,t0,tb46080,f2793,w1303,o0,bl0,d56) ts sack cubic wscale:8,7 rtt:453.799/37.471 ato:40 mss:1308 cwnd:2 pmtu:1360 ssthresh:2 bytes_acked:0 bytes_received:0 segs_out:117097 segs_in:108401 send 46117bps lastsnd:40 lastrcv:6050 lastack:22432 pacing_rate 55336bps delivery_rate 24936bps rcv_space:19026
|
|
+tcp ESTAB 0 0 10.0.0.10:58310 52.88.142.33:443 timer(keepalive,2min33sec,0) uid:1024 inode:143231822 sk:39 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d4) ts sack cubic wscale:8,7 rtt:211.152/22.951 ato:40 mss:1448 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:2072 segs_in:2598 send 548610bps lastsnd:146234 lastrcv:146236 lastack:146029 pacing_rate 1097216bps delivery_rate 120648bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:44852 202.58.9.228:443 timer(keepalive,43sec,0) uid:1024 inode:143675936 sk:39 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d1769) sack cubic wscale:9,7 rtt:98.707/11.472 ato:40 mss:1460 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:8675 segs_in:8669 send 1183300bps lastsnd:8818069 lastrcv:8817969 lastack:1340 pacing_rate 2366592bps delivery_rate 480352bps rcv_space:14600
|
|
+tcp ESTAB 23 0 10.0.0.10:37330 217.182.79.119:6667 timer(on,543ms,0) uid:1024 inode:147037462 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2467768,t0,tb87040,f2793,w1303,o0,bl0,d15) ts sack cubic wscale:7,7 rtt:377.613/33.401 ato:40 mss:1448 cwnd:2 pmtu:1500 ssthresh:2 bytes_acked:0 bytes_received:0 segs_out:13042 segs_in:6567 send 61354bps lastsnd:39 lastrcv:29806 lastack:29806 pacing_rate 73624bps delivery_rate 36280bps rcv_space:64371
|
|
+tcp ESTAB 0 0 192.168.122.1:53100 192.168.122.54:22 timer(keepalive,2min22sec,0) uid:1024 inode:152890200 sk:3a cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d11) ts sack cubic wscale:7,7 rtt:6.415/11.95 ato:40 mss:1448 cwnd:20 pmtu:1500 ssthresh:20 bytes_acked:0 bytes_received:0 segs_out:2145 segs_in:1352 send 36115355bps lastsnd:6216424 lastrcv:6216231 lastack:157163 pacing_rate 43332512bps delivery_rate 1079864400bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:52874 199.127.207.181:443 timer(keepalive,23sec,0) uid:1024 inode:154981923 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d433) sack cubic wscale:9,7 rtt:231.99/42.333 ato:40 mss:1460 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:2107 segs_in:2102 send 503470bps lastsnd:78116165 lastrcv:78116159 lastack:21772 pacing_rate 1006936bps delivery_rate 206000bps rcv_space:14600
|
|
+tcp ESTAB 0 0 10.0.0.10:33256 10.0.0.6:8009 timer(keepalive,14sec,0) uid:1024 inode:161634072 sk:3a cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2554304,t0,tb87040,f0,w0,o0,bl0,d1) ts sack cubic wscale:6,7 rtt:7.135/1.044 ato:40 mss:1448 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:13349 segs_in:6686 send 16235459bps lastsnd:524 lastrcv:516 lastack:516 pacing_rate 32468640bps delivery_rate 7613536bps rcv_space:65491
|
|
+tcp ESTAB 0 0 10.0.0.10:45164 173.194.202.125:443 timer(keepalive,23sec,0) uid:1024 inode:161888302 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:228.663/49.231 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:890 segs_in:895 send 496101bps lastsnd:207468 lastrcv:207250 lastack:21813 pacing_rate 992200bps delivery_rate 103864bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:37256 157.240.8.18:443 timer(keepalive,2min53sec,0) uid:1024 inode:163353710 sk:262 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb1623296,t0,tb46080,f0,w0,o0,bl0,d37) ts sack cubic wscale:8,7 rtt:21.5/0.94 ato:40 mss:1380 cwnd:22 pmtu:1500 ssthresh:22 bytes_acked:0 bytes_received:0 segs_out:4414 segs_in:4458 send 11296744bps lastsnd:1471 lastrcv:1255 lastack:1449 pacing_rate 13556008bps delivery_rate 9819152bps rcv_space:87463
|
|
+tcp ESTAB 0 0 10.0.0.10:40226 13.54.123.156:443 timer(keepalive,8.158ms,0) uid:1024 inode:163971400 sk:3b cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2673664,t0,tb46080,f0,w0,o0,bl0,d0) ts sack cubic wscale:12,7 rtt:23.038/1.11 ato:46 mss:1288 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:671 segs_in:482 send 4472610bps lastsnd:22123 lastrcv:22098 lastack:22098 pacing_rate 8945216bps delivery_rate 1318208bps rcv_space:67012
|
|
+tcp ESTAB 0 0 10.0.0.10:40232 13.54.123.156:443 timer(keepalive,15sec,0) uid:1024 inode:164254779 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2730360,t0,tb46080,f0,w0,o0,bl0,d0) ts sack cubic wscale:12,7 rtt:21.965/0.395 ato:42 mss:1288 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:842 segs_in:526 send 4691099bps lastsnd:9624 lastrcv:9601 lastack:9601 pacing_rate 9381984bps delivery_rate 1362840bps rcv_space:67755
|
|
+tcp ESTAB 0 0 10.0.0.10:39906 172.217.194.188:5228 timer(keepalive,6.702ms,0) uid:1024 inode:164287111 sk:eacd cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:94.893/7.701 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:187 segs_in:187 send 1195452bps lastsnd:1336001 lastrcv:1335906 lastack:38204 pacing_rate 2390880bps delivery_rate 229032bps rcv_space:14480
|
|
+tcp ESTAB 0 0 127.0.0.1:34526 127.0.0.1:6379 timer(keepalive,10sec,0) uid:386 inode:164791620 sk:ef22 cgroup:/system.slice/pmproxy.service <-> skmem(r0,rb4978722,t0,tb4194304,f0,w0,o0,bl0,d352) ts sack cubic wscale:7,7 rtt:0.301/0.282 ato:40 mss:65483 cwnd:34 pmtu:65535 ssthresh:16 bytes_acked:0 bytes_received:0 segs_out:51994 segs_in:100170 send 59174006645bps lastsnd:609 lastrcv:609 lastack:609 pacing_rate 71008807968bps delivery_rate 104772800000bps rcv_space:245440
|
|
+tcp ESTAB 0 0 127.0.0.1:49798 127.0.0.1:3000 uid:0 inode:164815425 sk:17e9 cgroup:/system.slice/pmcd.service <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:5.821/8.743 ato:40 mss:65483 cwnd:10 pmtu:65535 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:1880 segs_in:1389 send 899955334bps lastsnd:9970 lastrcv:9968 lastack:9968 pacing_rate 1799678784bps delivery_rate 40297230768bps rcv_space:65495
|
|
+udp ESTAB 0 0 10.0.0.10:36244 142.250.70.138:443 uid:1024 inode:165293889 sk:f231 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+udp ESTAB 0 0 10.0.0.10:35754 142.251.10.189:443 uid:1024 inode:165318004 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+udp ESTAB 0 0 10.0.0.10:49123 142.250.4.189:443 uid:1024 inode:165373416 sk:ef33 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:40218 142.250.70.142:443 uid:1024 inode:165413160 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d16) ts sack cubic wscale:8,7 rtt:10.371/0.673 ato:40 mss:1418 cwnd:3 pmtu:1500 ssthresh:2 bytes_acked:0 bytes_received:0 segs_out:493 segs_in:558 send 3281458bps lastsnd:48748 lastrcv:48749 lastack:48739 pacing_rate 3937552bps delivery_rate 2269480bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:43990 142.250.70.131:443 uid:1024 inode:165420073 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:9.654/0.506 ato:40 mss:1418 cwnd:4 pmtu:1500 ssthresh:4 bytes_acked:0 bytes_received:0 segs_out:246 segs_in:410 send 4700228bps lastsnd:17768 lastrcv:17783 lastack:17759 pacing_rate 5640272bps delivery_rate 2983168bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:44388 142.250.4.189:443 uid:1024 inode:165419510 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:96.696/2.871 ato:40 mss:1418 cwnd:7 pmtu:1500 ssthresh:7 bytes_acked:0 bytes_received:0 segs_out:207 segs_in:207 send 821213bps lastsnd:17146 lastrcv:17036 lastack:17036 pacing_rate 985448bps delivery_rate 467400bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:34914 142.250.70.234:443 uid:1024 inode:165418039 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f4096,w0,o0,bl0,d11) ts sack cubic wscale:8,7 rtt:10.278/0.678 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:307 segs_in:321 send 11037167bps lastsnd:11065 lastrcv:10735 lastack:10735 pacing_rate 22073256bps delivery_rate 2827752bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:34916 142.250.70.234:443 uid:1024 inode:165418040 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d9) ts sack cubic wscale:8,7 rtt:10.081/1.167 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:277 segs_in:301 send 11252852bps lastsnd:11066 lastrcv:11066 lastack:11056 pacing_rate 22505424bps delivery_rate 3209656bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:49594 142.250.70.165:443 timer(keepalive,6.621ms,0) uid:1024 inode:165410113 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb1074240,t0,tb87040,f0,w0,o0,bl0,d6) ts sack cubic wscale:8,7 rtt:11.987/1.417 ato:40 mss:1418 cwnd:18 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:342 segs_in:404 send 17034454bps lastsnd:218733 lastrcv:218735 lastack:38371 pacing_rate 34068192bps delivery_rate 8192584bps rcv_space:75339
|
|
+tcp ESTAB 0 0 10.0.0.10:57232 157.240.8.35:443 uid:1024 inode:165408121 sk:1781 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb46080,f8192,w0,o0,bl0,d4) ts sack cubic wscale:8,7 rtt:23.193/1.8 ato:40 mss:1380 cwnd:2 pmtu:1500 ssthresh:2 bytes_acked:0 bytes_received:0 segs_out:252 segs_in:206 send 952011bps lastsnd:6934 lastrcv:6458 lastack:6458 pacing_rate 1142400bps delivery_rate 371224bps rcv_space:14480
|
|
+udp ESTAB 0 0 10.0.0.10:44639 142.250.70.131:443 uid:1024 inode:165411837 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:46392 142.251.10.189:443 uid:1024 inode:165466671 sk:f23b cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f4096,w0,o0,bl0,d2) ts sack cubic wscale:8,7 rtt:111.69/24.888 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:135 segs_in:139 send 1015668bps lastsnd:52309 lastrcv:25403 lastack:50572 pacing_rate 2031320bps delivery_rate 335272bps rcv_space:14480
|
|
+udp ESTAB 0 0 10.0.0.10:35983 142.250.70.142:443 uid:1024 inode:165466809 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:55532 140.82.114.26:443 timer(keepalive,9.693ms,0) uid:1024 inode:165515920 sk:17eb cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:10,7 rtt:251.743/35.839 ato:40 mss:1424 cwnd:20 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:49 segs_in:46 send 905050bps lastsnd:20795 lastrcv:20795 lastack:20571 pacing_rate 1810096bps delivery_rate 503048bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:55534 140.82.114.26:443 timer(keepalive,28sec,0) uid:1024 inode:165521771 sk:ef38 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:10,7 rtt:283.095/41.806 ato:40 mss:1424 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:36 segs_in:38 send 402409bps lastsnd:2669 lastrcv:2669 lastack:2444 pacing_rate 804816bps delivery_rate 73400bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:55308 142.250.70.228:443 uid:1024 inode:165561257 sk:eb1c cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d3) ts sack cubic wscale:8,7 rtt:11.532/2.782 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:38 segs_in:36 send 9836975bps lastsnd:46596 lastrcv:46586 lastack:46587 pacing_rate 19672664bps delivery_rate 1814168bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:44322 10.0.0.10:55122 timer(keepalive,44sec,0) uid:386 inode:165594717 sk:5 cgroup:/system.slice/pmproxy.service <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:5.315/10.43 ato:40 mss:65483 cwnd:17 pmtu:65535 ssthresh:17 bytes_acked:0 bytes_received:0 segs_out:65 segs_in:47 send 1675576294bps lastsnd:609 lastrcv:611 lastack:567 pacing_rate 2010691552bps delivery_rate 130966000000bps rcv_space:65483
|
|
+tcp ESTAB 0 0 10.0.0.10:55694 34.120.177.193:443 timer(keepalive,2.525ms,0) uid:1024 inode:165577700 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d1) ts sack cubic wscale:8,7 rtt:13.091/4.789 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:21 segs_in:20 send 8665495bps lastsnd:224263 lastrcv:224265 lastack:42465 pacing_rate 17330160bps delivery_rate 2267288bps rcv_space:14480
|
|
+tcp ESTAB 0 0 [::1]:3000 [::1]:51232 timer(keepalive,4.425ms,0) uid:378 inode:165581925 sk:5 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.392/0.759 ato:40 mss:65464 cwnd:10 pmtu:65536 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:992 segs_in:851 send 13360000000bps lastsnd:607 lastrcv:760 lastack:607 pacing_rate 26677465768bps delivery_rate 174570666664bps rcv_space:65464
|
|
+tcp ESTAB 0 0 [::1]:51238 [::1]:3000 timer(keepalive,6.381ms,0) uid:1024 inode:165581951 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d1) ts sack cubic wscale:7,7 rtt:4.48/8.875 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:626 segs_in:849 send 585142857bps lastsnd:758 lastrcv:616 lastack:616 pacing_rate 1170122464bps delivery_rate 87381333328bps rcv_space:65476
|
|
+tcp ESTAB 0 0 [::1]:51240 [::1]:3000 timer(keepalive,10sec,0) uid:1024 inode:165583008 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:4.388/8.395 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:642 segs_in:867 send 597411121bps lastsnd:764 lastrcv:635 lastack:635 pacing_rate 1194686104bps delivery_rate 87381333328bps rcv_space:65476
|
|
+tcp ESTAB 0 0 [::1]:51236 [::1]:3000 timer(keepalive,40sec,0) uid:1024 inode:165575931 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb4585000,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.942/1.793 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:925 segs_in:1058 send 2782845011bps lastsnd:4761 lastrcv:4697 lastack:4697 pacing_rate 5564213312bps delivery_rate 65536000000bps rcv_space:98304
|
|
+tcp ESTAB 0 0 [::1]:51228 [::1]:3000 timer(keepalive,43sec,0) uid:1024 inode:165582929 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb4978000,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:2.415/4.642 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:842 segs_in:867 send 1085482402bps lastsnd:759 lastrcv:623 lastack:623 pacing_rate 2170964800bps delivery_rate 87381333328bps rcv_space:98304
|
|
+tcp ESTAB 0 0 [::1]:51232 [::1]:3000 timer(keepalive,43sec,0) uid:1024 inode:165552950 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb4978000,t0,tb2626560,f0,w0,o0,bl0,d3) ts sack cubic wscale:7,7 rtt:3.701/7.013 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:851 segs_in:993 send 708305863bps lastsnd:760 lastrcv:607 lastack:607 pacing_rate 1416324704bps delivery_rate 87381333328bps rcv_space:163840
|
|
+tcp ESTAB 0 0 10.0.0.10:57958 142.250.70.238:443 uid:1024 inode:165594185 sk:183a cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d1) ts sack cubic wscale:8,7 rtt:10.608/1.213 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:27 segs_in:27 send 10693816bps lastsnd:18595 lastrcv:18584 lastack:18584 pacing_rate 21387376bps delivery_rate 5058864bps rcv_space:14480
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54774 10.0.0.10:44322 timer(timewait,,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54792 10.0.0.10:44322 timer(timewait,,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54794 10.0.0.10:44322 timer(timewait,2.383ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54796 10.0.0.10:44322 timer(timewait,350ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:46306 3.233.54.64:443 timer(keepalive,23sec,0) uid:1024 inode:165592357 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:12,7 rtt:246.45/50.358 ato:40 mss:1448 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:12 segs_in:12 send 470034bps lastsnd:22071 lastrcv:21847 lastack:21848 pacing_rate 940064bps delivery_rate 120016bps rcv_space:14480
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54784 10.0.0.10:44322 timer(timewait,,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:49614 142.250.70.165:443 uid:1024 inode:165581235 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:10.118/1.177 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:20 segs_in:19 send 11211702bps lastsnd:27596 lastrcv:27584 lastack:27584 pacing_rate 22423400bps delivery_rate 3963936bps rcv_space:14480
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54798 10.0.0.10:44322 timer(timewait,222ms,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54802 10.0.0.10:44322 timer(timewait,3.376ms,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54800 10.0.0.10:44322 timer(timewait,354ms,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+udp ESTAB 0 0 10.0.0.10:37128 142.250.70.138:443 uid:1024 inode:165585835 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+udp ESTAB 0 0 10.0.0.10:49113 142.250.70.131:443 uid:1024 inode:165606514 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54872 10.0.0.10:44322 timer(timewait,14sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55048 10.0.0.10:44322 timer(timewait,48sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55060 10.0.0.10:44322 timer(timewait,48sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55094 10.0.0.10:44322 timer(timewait,54sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54980 10.0.0.10:44322 timer(timewait,34sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54806 10.0.0.10:44322 timer(timewait,1.441ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55088 10.0.0.10:44322 timer(timewait,55sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55064 10.0.0.10:44322 timer(timewait,48sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54956 10.0.0.10:44322 timer(timewait,26sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54826 10.0.0.10:44322 timer(timewait,5.357ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54822 10.0.0.10:44322 timer(timewait,8.347ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54860 10.0.0.10:44322 timer(timewait,13sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55092 10.0.0.10:44322 timer(timewait,53sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55036 10.0.0.10:44322 timer(timewait,43sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55038 10.0.0.10:44322 timer(timewait,45sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55066 10.0.0.10:44322 timer(timewait,49sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55080 10.0.0.10:44322 timer(timewait,52sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54916 10.0.0.10:44322 timer(timewait,23sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55034 10.0.0.10:44322 timer(timewait,44sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54954 10.0.0.10:44322 timer(timewait,25sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54894 10.0.0.10:44322 timer(timewait,19sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54968 10.0.0.10:44322 timer(timewait,28sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54978 10.0.0.10:44322 timer(timewait,30sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54830 10.0.0.10:44322 timer(timewait,7.365ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55012 10.0.0.10:44322 timer(timewait,37sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55050 10.0.0.10:44322 timer(timewait,46sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54896 10.0.0.10:44322 timer(timewait,17sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54838 10.0.0.10:44322 timer(timewait,9.447ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55030 10.0.0.10:44322 timer(timewait,41sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55002 10.0.0.10:44322 timer(timewait,37sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55024 10.0.0.10:44322 timer(timewait,41sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55020 10.0.0.10:44322 timer(timewait,43sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55046 10.0.0.10:44322 timer(timewait,45sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54876 10.0.0.10:44322 timer(timewait,18sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55084 10.0.0.10:44322 timer(timewait,52sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54900 10.0.0.10:44322 timer(timewait,19sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55056 10.0.0.10:44322 timer(timewait,47sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54808 10.0.0.10:44322 timer(timewait,2.383ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54858 10.0.0.10:44322 timer(timewait,10sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55032 10.0.0.10:44322 timer(timewait,42sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55000 10.0.0.10:44322 timer(timewait,35sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54810 10.0.0.10:44322 timer(timewait,4.343ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54898 10.0.0.10:44322 timer(timewait,18sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54874 10.0.0.10:44322 timer(timewait,13sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55022 10.0.0.10:44322 timer(timewait,40sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54892 10.0.0.10:44322 timer(timewait,17sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54882 10.0.0.10:44322 timer(timewait,15sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54964 10.0.0.10:44322 timer(timewait,27sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54834 10.0.0.10:44322 timer(timewait,6.831ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54986 10.0.0.10:44322 timer(timewait,32sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54888 10.0.0.10:44322 timer(timewait,16sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55090 10.0.0.10:44322 timer(timewait,53sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54906 10.0.0.10:44322 timer(timewait,23sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54816 10.0.0.10:44322 timer(timewait,4.219ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54974 10.0.0.10:44322 timer(timewait,30sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55004 10.0.0.10:44322 timer(timewait,36sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54972 10.0.0.10:44322 timer(timewait,28sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54966 10.0.0.10:44322 timer(timewait,27sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55070 10.0.0.10:44322 timer(timewait,49sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55006 10.0.0.10:44322 timer(timewait,38sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54904 10.0.0.10:44322 timer(timewait,20sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54836 10.0.0.10:44322 timer(timewait,7.364ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54988 10.0.0.10:44322 timer(timewait,32sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54902 10.0.0.10:44322 timer(timewait,18sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54914 10.0.0.10:44322 timer(timewait,20sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54976 10.0.0.10:44322 timer(timewait,31sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55096 10.0.0.10:44322 timer(timewait,54sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54824 10.0.0.10:44322 timer(timewait,5.225ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54958 10.0.0.10:44322 timer(timewait,26sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54930 10.0.0.10:44322 timer(timewait,22sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54984 10.0.0.10:44322 timer(timewait,31sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54996 10.0.0.10:44322 timer(timewait,36sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54866 10.0.0.10:44322 timer(timewait,12sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54962 10.0.0.10:44322 timer(timewait,29sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54942 10.0.0.10:44322 timer(timewait,24sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54910 10.0.0.10:44322 timer(timewait,19sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55074 10.0.0.10:44322 timer(timewait,56sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54998 10.0.0.10:44322 timer(timewait,35sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54990 10.0.0.10:44322 timer(timewait,34sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55028 10.0.0.10:44322 timer(timewait,42sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55044 10.0.0.10:44322 timer(timewait,50sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55008 10.0.0.10:44322 timer(timewait,38sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54842 10.0.0.10:44322 timer(timewait,12sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54920 10.0.0.10:44322 timer(timewait,21sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54982 10.0.0.10:44322 timer(timewait,30sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54862 10.0.0.10:44322 timer(timewait,11sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54868 10.0.0.10:44322 timer(timewait,12sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54926 10.0.0.10:44322 timer(timewait,22sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55026 10.0.0.10:44322 timer(timewait,41sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54870 10.0.0.10:44322 timer(timewait,13sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54864 10.0.0.10:44322 timer(timewait,15sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54818 10.0.0.10:44322 timer(timewait,6.800ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54812 10.0.0.10:44322 timer(timewait,5.358ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54992 10.0.0.10:44322 timer(timewait,33sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55018 10.0.0.10:44322 timer(timewait,39sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54960 10.0.0.10:44322 timer(timewait,29sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55054 10.0.0.10:44322 timer(timewait,47sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54928 10.0.0.10:44322 timer(timewait,22sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55042 10.0.0.10:44322 timer(timewait,46sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54852 10.0.0.10:44322 timer(timewait,9.426ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54936 10.0.0.10:44322 timer(timewait,23sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54948 10.0.0.10:44322 timer(timewait,26sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55062 10.0.0.10:44322 timer(timewait,49sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54944 10.0.0.10:44322 timer(timewait,27sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54846 10.0.0.10:44322 timer(timewait,9.223ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55040 10.0.0.10:44322 timer(timewait,44sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54804 10.0.0.10:44322 timer(timewait,1.440ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54850 10.0.0.10:44322 timer(timewait,10sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54884 10.0.0.10:44322 timer(timewait,15sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54938 10.0.0.10:44322 timer(timewait,25sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55086 10.0.0.10:44322 timer(timewait,53sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54840 10.0.0.10:44322 timer(timewait,8.342ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55072 10.0.0.10:44322 timer(timewait,50sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54922 10.0.0.10:44322 timer(timewait,21sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54878 10.0.0.10:44322 timer(timewait,14sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55078 10.0.0.10:44322 timer(timewait,51sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55052 10.0.0.10:44322 timer(timewait,46sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54932 10.0.0.10:44322 timer(timewait,24sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54832 10.0.0.10:44322 timer(timewait,6.800ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54880 10.0.0.10:44322 timer(timewait,16sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54854 10.0.0.10:44322 timer(timewait,11sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55082 10.0.0.10:44322 timer(timewait,51sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54856 10.0.0.10:44322 timer(timewait,10sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54994 10.0.0.10:44322 timer(timewait,33sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55068 10.0.0.10:44322 timer(timewait,51sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55014 10.0.0.10:44322 timer(timewait,40sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55016 10.0.0.10:44322 timer(timewait,39sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54814 10.0.0.10:44322 timer(timewait,3.380ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54820 10.0.0.10:44322 timer(timewait,4.339ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54886 10.0.0.10:44322 timer(timewait,17sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54890 10.0.0.10:44322 timer(timewait,16sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55058 10.0.0.10:44322 timer(timewait,47sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54952 10.0.0.10:44322 timer(timewait,25sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:55104 10.0.0.10:44322 timer(keepalive,26sec,0) uid:378 inode:165606577 sk:5 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb6291456,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:8.43/11.76 ato:40 mss:32768 cwnd:10 pmtu:65535 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:178 segs_in:356 send 310965599bps lastsnd:756 lastrcv:637 lastack:639 pacing_rate 621875864bps delivery_rate 20164923072bps rcv_space:469929
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55116 10.0.0.10:44322 timer(timewait,58sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55112 10.0.0.10:44322 timer(timewait,59sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55114 10.0.0.10:44322 timer(timewait,58sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55102 10.0.0.10:44322 timer(timewait,56sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55118 10.0.0.10:44322 timer(timewait,59sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55100 10.0.0.10:44322 timer(timewait,58sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55108 10.0.0.10:44322 timer(timewait,57sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55110 10.0.0.10:44322 timer(timewait,57sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55106 10.0.0.10:44322 timer(timewait,56sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:55122 10.0.0.10:44322 timer(keepalive,29sec,0) uid:378 inode:165608516 sk:5 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb3013437,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.236/0.425 ato:40 mss:32768 cwnd:10 pmtu:65535 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:47 segs_in:66 send 11107796610bps lastsnd:611 lastrcv:609 lastack:609 pacing_rate 22145216472bps delivery_rate 32768000000bps rcv_space:81920
|
|
+
|
|
+pcp-ss output, at archive end
|
|
+# Time: 2021-06-18 13:34:14.168998 Filter: state connected
|
|
+Netid State Recv-Q Send-Q Local Address:Port Peer Address:Port Process
|
|
+tcp ESTAB 0 0 [::ffff:127.0.0.1]:3000 [::ffff:127.0.0.1]:49798 timer(keepalive,5.265ms,0) uid:378 inode:164821548 sk:17e9 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb2358342,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.033/0.018 ato:40 mss:32768 cwnd:10 pmtu:65535 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:65664
|
|
+tcp ESTAB 0 0 127.0.0.1:6379 127.0.0.1:34526 timer(keepalive,299ms,0) uid:379 inode:164789635 sk:17e9 cgroup:/system.slice/redis.service <-> skmem(r0,rb6291456,t0,tb4194304,f0,w0,o0,bl0,d226) ts sack cubic wscale:7,7 rtt:5.268/10.344 ato:40 mss:65483 cwnd:51 pmtu:65535 ssthresh:27 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:1379162
|
|
+tcp ESTAB 0 0 10.40.192.134:47862 10.0.15.20:6667 timer(keepalive,2min48sec,0) uid:1024 inode:143267906 sk:39 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb181972,t0,tb46080,f0,w0,o0,bl0,d56) ts sack cubic wscale:8,7 rtt:456.275/44.255 ato:40 mss:1308 cwnd:2 pmtu:1360 ssthresh:2 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:19026
|
|
+tcp ESTAB 0 0 10.0.0.10:58310 52.88.142.33:443 timer(keepalive,1min53sec,0) uid:1024 inode:143231822 sk:39 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d4) ts sack cubic wscale:8,7 rtt:211.152/22.951 ato:40 mss:1448 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:44852 202.58.9.228:443 timer(keepalive,3.777ms,0) uid:1024 inode:143675936 sk:39 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d1770) sack cubic wscale:9,7 rtt:98.707/11.472 ato:40 mss:1460 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14600
|
|
+tcp ESTAB 0 0 10.0.0.10:37330 217.182.79.119:6667 timer(keepalive,3min20sec,0) uid:1024 inode:147037462 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2467768,t0,tb87040,f0,w0,o0,bl0,d15) ts sack cubic wscale:7,7 rtt:381.926/27.664 ato:40 mss:1448 cwnd:2 pmtu:1500 ssthresh:2 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:64371
|
|
+tcp ESTAB 0 0 192.168.122.1:53100 192.168.122.54:22 timer(keepalive,1min43sec,0) uid:1024 inode:152890200 sk:3a cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d11) ts sack cubic wscale:7,7 rtt:6.415/11.95 ato:40 mss:1448 cwnd:20 pmtu:1500 ssthresh:20 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:52874 199.127.207.181:443 timer(keepalive,28sec,0) uid:1024 inode:154981923 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d433) sack cubic wscale:9,7 rtt:231.99/42.333 ato:40 mss:1460 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14600
|
|
+tcp ESTAB 0 0 10.0.0.10:33256 10.0.0.6:8009 timer(keepalive,19sec,0) uid:1024 inode:161634072 sk:3a cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2554304,t0,tb87040,f0,w0,o0,bl0,d1) ts sack cubic wscale:6,7 rtt:7.326/1.581 ato:40 mss:1448 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:65491
|
|
+tcp ESTAB 0 0 10.0.0.10:45164 173.194.202.125:443 timer(keepalive,28sec,0) uid:1024 inode:161888302 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f4096,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:228.663/49.231 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:37256 157.240.8.18:443 timer(keepalive,2min13sec,0) uid:1024 inode:163353710 sk:262 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb1623296,t0,tb46080,f4096,w0,o0,bl0,d37) ts sack cubic wscale:8,7 rtt:21.667/1.031 ato:40 mss:1380 cwnd:22 pmtu:1500 ssthresh:22 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:87463
|
|
+tcp ESTAB 0 0 10.0.0.10:40226 13.54.123.156:443 timer(keepalive,28sec,0) uid:1024 inode:163971400 sk:3b cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2673664,t0,tb46080,f0,w0,o0,bl0,d0) ts sack cubic wscale:12,7 rtt:23.063/0.882 ato:46 mss:1288 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:67012
|
|
+tcp ESTAB 0 0 10.0.0.10:40232 13.54.123.156:443 timer(keepalive,15sec,0) uid:1024 inode:164254779 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2730360,t0,tb46080,f0,w0,o0,bl0,d0) ts sack cubic wscale:12,7 rtt:21.7/0.326 ato:42 mss:1288 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:67755
|
|
+tcp ESTAB 0 0 10.0.0.10:39906 172.217.194.188:5228 timer(keepalive,15sec,0) uid:1024 inode:164287111 sk:eacd cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:94.893/7.701 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp ESTAB 0 0 127.0.0.1:34526 127.0.0.1:6379 timer(keepalive,646ms,0) uid:386 inode:164791620 sk:ef22 cgroup:/system.slice/pmproxy.service <-> skmem(r0,rb4978722,t0,tb4194304,f0,w0,o0,bl0,d397) ts sack cubic wscale:7,7 rtt:0.217/0.167 ato:40 mss:65483 cwnd:36 pmtu:65535 ssthresh:16 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:245440
|
|
+tcp ESTAB 0 0 127.0.0.1:49798 127.0.0.1:3000 uid:0 inode:164815425 sk:17e9 cgroup:/system.slice/pmcd.service <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:6.023/4.348 ato:40 mss:65483 cwnd:10 pmtu:65535 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:65495
|
|
+udp ESTAB 0 0 10.0.0.10:36244 142.250.70.138:443 uid:1024 inode:165293889 sk:f231 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+udp ESTAB 0 0 10.0.0.10:35754 142.251.10.189:443 uid:1024 inode:165318004 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+udp ESTAB 0 0 10.0.0.10:49123 142.250.4.189:443 uid:1024 inode:165373416 sk:ef33 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:40218 142.250.70.142:443 uid:1024 inode:165413160 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d16) ts sack cubic wscale:8,7 rtt:10.194/0.696 ato:40 mss:1418 cwnd:3 pmtu:1500 ssthresh:2 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:43990 142.250.70.131:443 uid:1024 inode:165420073 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:9.826/0.515 ato:40 mss:1418 cwnd:4 pmtu:1500 ssthresh:4 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:44388 142.250.4.189:443 uid:1024 inode:165419510 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f4096,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:96.696/2.871 ato:40 mss:1418 cwnd:7 pmtu:1500 ssthresh:7 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:34914 142.250.70.234:443 uid:1024 inode:165418039 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f4096,w0,o0,bl0,d11) ts sack cubic wscale:8,7 rtt:10.278/0.678 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:34916 142.250.70.234:443 uid:1024 inode:165418040 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d9) ts sack cubic wscale:8,7 rtt:10.081/1.167 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:49594 142.250.70.165:443 timer(timewait,41sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:57232 157.240.8.35:443 uid:1024 inode:165408121 sk:1781 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb46080,f8192,w0,o0,bl0,d4) ts sack cubic wscale:8,7 rtt:23.193/1.8 ato:40 mss:1380 cwnd:2 pmtu:1500 ssthresh:2 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+udp ESTAB 0 0 10.0.0.10:44639 142.250.70.131:443 uid:1024 inode:165411837 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:46392 142.251.10.189:443 uid:1024 inode:165466671 sk:f23b cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f4096,w0,o0,bl0,d3) ts sack cubic wscale:8,7 rtt:111.69/24.888 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+udp ESTAB 0 0 10.0.0.10:35983 142.250.70.142:443 uid:1024 inode:165466809 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:55532 140.82.114.26:443 timer(keepalive,29sec,0) uid:1024 inode:165515920 sk:17eb cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:10,7 rtt:248.861/32.644 ato:40 mss:1424 cwnd:20 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:55534 140.82.114.26:443 timer(keepalive,2.767ms,0) uid:1024 inode:165521771 sk:ef38 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:10,7 rtt:283.095/41.806 ato:40 mss:1424 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55304 10.0.0.10:44322 timer(timewait,53sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55306 10.0.0.10:44322 timer(timewait,53sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55308 10.0.0.10:44322 timer(timewait,58sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:44322 10.0.0.10:55342 timer(keepalive,44sec,0) uid:386 inode:165594871 sk:5 cgroup:/system.slice/pmproxy.service <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.05/0.056 ato:40 mss:65483 cwnd:20 pmtu:65535 ssthresh:20 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:65483
|
|
+tcp ESTAB 0 0 10.0.0.10:55694 34.120.177.193:443 timer(keepalive,7.793ms,0) uid:1024 inode:165577700 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d1) ts sack cubic wscale:8,7 rtt:13.091/4.789 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp ESTAB 0 0 [::1]:3000 [::1]:51232 timer(keepalive,8.488ms,0) uid:378 inode:165581925 sk:5 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.014/0.011 ato:40 mss:65464 cwnd:10 pmtu:65536 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:65464
|
|
+tcp ESTAB 0 0 [::1]:51238 [::1]:3000 timer(keepalive,11sec,0) uid:1024 inode:165581951 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d1) ts sack cubic wscale:7,7 rtt:4.802/9.371 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:65476
|
|
+tcp ESTAB 0 0 [::1]:51240 [::1]:3000 timer(keepalive,15sec,0) uid:1024 inode:165583008 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.783/1.488 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:65476
|
|
+tcp ESTAB 0 0 [::1]:51236 [::1]:3000 timer(keepalive,514ms,0) uid:1024 inode:165575931 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb4585000,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:5.713/10.966 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:98304
|
|
+tcp ESTAB 0 0 [::1]:51228 [::1]:3000 timer(keepalive,3.596ms,0) uid:1024 inode:165582929 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb4978000,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.422/0.763 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:98304
|
|
+tcp ESTAB 0 0 [::1]:51232 [::1]:3000 timer(keepalive,3.596ms,0) uid:1024 inode:165552950 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb4978000,t0,tb2626560,f0,w0,o0,bl0,d3) ts sack cubic wscale:7,7 rtt:8.219/14.257 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:163840
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:57958 142.250.70.238:443 timer(timewait,54sec,0) uid:0 inode:0 sk:183a cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:46306 3.233.54.64:443 timer(keepalive,28sec,0) uid:1024 inode:165592357 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:12,7 rtt:246.45/50.358 ato:40 mss:1448 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:49614 142.250.70.165:443 uid:1024 inode:165581235 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:10.2/1.047 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55048 10.0.0.10:44322 timer(timewait,8.579ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55060 10.0.0.10:44322 timer(timewait,8.449ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55094 10.0.0.10:44322 timer(timewait,14sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55088 10.0.0.10:44322 timer(timewait,15sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55064 10.0.0.10:44322 timer(timewait,8.577ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55092 10.0.0.10:44322 timer(timewait,13sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55036 10.0.0.10:44322 timer(timewait,3.608ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55038 10.0.0.10:44322 timer(timewait,5.580ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55066 10.0.0.10:44322 timer(timewait,9.605ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55080 10.0.0.10:44322 timer(timewait,12sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55034 10.0.0.10:44322 timer(timewait,4.636ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55050 10.0.0.10:44322 timer(timewait,6.570ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55030 10.0.0.10:44322 timer(timewait,1.618ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55024 10.0.0.10:44322 timer(timewait,1.623ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55020 10.0.0.10:44322 timer(timewait,3.571ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55046 10.0.0.10:44322 timer(timewait,5.577ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55084 10.0.0.10:44322 timer(timewait,12sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55056 10.0.0.10:44322 timer(timewait,7.623ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55032 10.0.0.10:44322 timer(timewait,2.607ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55022 10.0.0.10:44322 timer(timewait,586ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55090 10.0.0.10:44322 timer(timewait,13sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55070 10.0.0.10:44322 timer(timewait,9.625ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55096 10.0.0.10:44322 timer(timewait,14sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55074 10.0.0.10:44322 timer(timewait,16sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55028 10.0.0.10:44322 timer(timewait,2.601ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55044 10.0.0.10:44322 timer(timewait,10sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55026 10.0.0.10:44322 timer(timewait,1.601ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55054 10.0.0.10:44322 timer(timewait,7.474ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55042 10.0.0.10:44322 timer(timewait,6.447ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55062 10.0.0.10:44322 timer(timewait,9.618ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55040 10.0.0.10:44322 timer(timewait,4.635ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55086 10.0.0.10:44322 timer(timewait,13sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55072 10.0.0.10:44322 timer(timewait,10sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55078 10.0.0.10:44322 timer(timewait,11sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55052 10.0.0.10:44322 timer(timewait,6.568ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55082 10.0.0.10:44322 timer(timewait,11sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55068 10.0.0.10:44322 timer(timewait,11sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55014 10.0.0.10:44322 timer(timewait,581ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55058 10.0.0.10:44322 timer(timewait,7.617ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55104 10.0.0.10:44322 timer(timewait,25sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55116 10.0.0.10:44322 timer(timewait,18sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55112 10.0.0.10:44322 timer(timewait,19sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55114 10.0.0.10:44322 timer(timewait,18sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55102 10.0.0.10:44322 timer(timewait,16sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55118 10.0.0.10:44322 timer(timewait,19sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55100 10.0.0.10:44322 timer(timewait,18sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55108 10.0.0.10:44322 timer(timewait,17sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55110 10.0.0.10:44322 timer(timewait,17sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55106 10.0.0.10:44322 timer(timewait,16sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55122 10.0.0.10:44322 timer(timewait,20sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55150 10.0.0.10:44322 timer(timewait,24sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55130 10.0.0.10:44322 timer(timewait,20sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55134 10.0.0.10:44322 timer(timewait,21sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55146 10.0.0.10:44322 timer(timewait,24sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55144 10.0.0.10:44322 timer(timewait,23sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55148 10.0.0.10:44322 timer(timewait,31sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55126 10.0.0.10:44322 timer(timewait,22sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55132 10.0.0.10:44322 timer(timewait,21sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55124 10.0.0.10:44322 timer(timewait,20sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55140 10.0.0.10:44322 timer(timewait,24sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55138 10.0.0.10:44322 timer(timewait,22sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55136 10.0.0.10:44322 timer(timewait,22sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55142 10.0.0.10:44322 timer(timewait,23sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55154 10.0.0.10:44322 timer(timewait,25sec,0) uid:0 inode:0 sk:ef49 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55162 10.0.0.10:44322 timer(timewait,29sec,0) uid:0 inode:0 sk:ef4a cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55156 10.0.0.10:44322 timer(timewait,26sec,0) uid:0 inode:0 sk:ef4b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55164 10.0.0.10:44322 timer(timewait,27sec,0) uid:0 inode:0 sk:17ed cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55174 10.0.0.10:44322 timer(timewait,32sec,0) uid:0 inode:0 sk:17ed cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55176 10.0.0.10:44322 timer(timewait,29sec,0) uid:0 inode:0 sk:17ed cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55172 10.0.0.10:44322 timer(timewait,29sec,0) uid:0 inode:0 sk:17ed cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55152 10.0.0.10:44322 timer(timewait,27sec,0) uid:0 inode:0 sk:17ed cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55168 10.0.0.10:44322 timer(timewait,28sec,0) uid:0 inode:0 sk:ef4c cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55160 10.0.0.10:44322 timer(timewait,26sec,0) uid:0 inode:0 sk:ef4d cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55158 10.0.0.10:44322 timer(timewait,26sec,0) uid:0 inode:0 sk:ef4e cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55166 10.0.0.10:44322 timer(timewait,28sec,0) uid:0 inode:0 sk:ef50 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55200 10.0.0.10:44322 timer(timewait,33sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55178 10.0.0.10:44322 timer(timewait,30sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55186 10.0.0.10:44322 timer(timewait,31sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55190 10.0.0.10:44322 timer(timewait,33sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55184 10.0.0.10:44322 timer(timewait,40sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55206 10.0.0.10:44322 timer(timewait,34sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55182 10.0.0.10:44322 timer(timewait,31sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55194 10.0.0.10:44322 timer(timewait,33sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55204 10.0.0.10:44322 timer(timewait,34sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55210 10.0.0.10:44322 timer(timewait,34sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55188 10.0.0.10:44322 timer(timewait,32sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55196 10.0.0.10:44322 timer(timewait,35sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55180 10.0.0.10:44322 timer(timewait,30sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55232 10.0.0.10:44322 timer(timewait,39sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55216 10.0.0.10:44322 timer(timewait,37sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55218 10.0.0.10:44322 timer(timewait,36sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55222 10.0.0.10:44322 timer(timewait,38sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55224 10.0.0.10:44322 timer(timewait,37sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55226 10.0.0.10:44322 timer(timewait,38sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55228 10.0.0.10:44322 timer(timewait,44sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55220 10.0.0.10:44322 timer(timewait,37sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55214 10.0.0.10:44322 timer(timewait,36sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55230 10.0.0.10:44322 timer(timewait,39sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55212 10.0.0.10:44322 timer(timewait,35sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55260 10.0.0.10:44322 timer(timewait,46sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55238 10.0.0.10:44322 timer(timewait,41sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55240 10.0.0.10:44322 timer(timewait,42sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55248 10.0.0.10:44322 timer(timewait,42sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55244 10.0.0.10:44322 timer(timewait,42sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55234 10.0.0.10:44322 timer(timewait,40sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55250 10.0.0.10:44322 timer(timewait,43sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55262 10.0.0.10:44322 timer(timewait,45sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55242 10.0.0.10:44322 timer(timewait,41sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55256 10.0.0.10:44322 timer(timewait,43sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55236 10.0.0.10:44322 timer(timewait,41sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55254 10.0.0.10:44322 timer(timewait,44sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55286 10.0.0.10:44322 timer(timewait,48sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55272 10.0.0.10:44322 timer(timewait,48sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55268 10.0.0.10:44322 timer(timewait,47sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55288 10.0.0.10:44322 timer(timewait,49sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55274 10.0.0.10:44322 timer(timewait,47sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55276 10.0.0.10:44322 timer(timewait,47sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55266 10.0.0.10:44322 timer(timewait,45sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55278 10.0.0.10:44322 timer(timewait,49sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55282 10.0.0.10:44322 timer(timewait,48sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55270 10.0.0.10:44322 timer(timewait,46sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55280 10.0.0.10:44322 timer(timewait,47sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55284 10.0.0.10:44322 timer(timewait,50sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55292 10.0.0.10:44322 timer(timewait,51sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55298 10.0.0.10:44322 timer(timewait,51sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55300 10.0.0.10:44322 timer(timewait,54sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55302 10.0.0.10:44322 timer(timewait,52sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55310 10.0.0.10:44322 timer(timewait,55sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55296 10.0.0.10:44322 timer(timewait,52sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55294 10.0.0.10:44322 timer(timewait,50sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55312 10.0.0.10:44322 timer(timewait,54sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55334 10.0.0.10:44322 timer(timewait,58sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55320 10.0.0.10:44322 timer(timewait,55sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55326 10.0.0.10:44322 timer(timewait,57sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55330 10.0.0.10:44322 timer(timewait,59sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55322 10.0.0.10:44322 timer(timewait,56sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55340 10.0.0.10:44322 timer(timewait,59sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55318 10.0.0.10:44322 timer(timewait,56sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55338 10.0.0.10:44322 timer(timewait,58sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55328 10.0.0.10:44322 timer(timewait,57sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:55342 10.0.0.10:44322 timer(keepalive,29sec,0) uid:378 inode:165616642 sk:5 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb2882418,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.041/0.024 ato:40 mss:32768 cwnd:10 pmtu:65535 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:73728
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55316 10.0.0.10:44322 timer(timewait,55sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:55332 10.0.0.10:44322 timer(keepalive,28sec,0) uid:378 inode:165581545 sk:5 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb4454646,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:3.728/6.7 ato:40 mss:32768 cwnd:10 pmtu:65535 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:105770
|
|
+
|
|
+check error handling when metrics not present. Note error is expected
|
|
+Error: metrics for 'network.persocket' not found in archive archives/pcp-mpstat
|
|
diff --git a/qa/archives/GNUmakefile b/qa/archives/GNUmakefile
|
|
index d678e8277..4118d369c 100644
|
|
--- a/qa/archives/GNUmakefile
|
|
+++ b/qa/archives/GNUmakefile
|
|
@@ -54,7 +54,8 @@ DEFLATE = small.0.xz small.meta small.index \
|
|
20180416.10.00.1.xz 20180416.10.00.2.xz 20180416.10.00.3.xz \
|
|
20190628.04.03.0.xz 20190628.04.03.1.xz 20190628.04.03.meta.xz \
|
|
20190628.04.03.index 20201109.0.xz 20201109.index 20201109.meta.xz \
|
|
- 20190628.06.31.0.xz 20190628.06.31.meta.xz 20190628.06.31.index
|
|
+ 20190628.06.31.0.xz 20190628.06.31.meta.xz 20190628.06.31.index \
|
|
+ pcp-ss.0.xz pcp-ss.meta.xz pcp-ss.index
|
|
|
|
SCRIPTS = mk.diff mk.gap mk.mysql mk.schizo mk.foo+ \
|
|
mk.dynmetric mk.instant mk.dyninsts \
|
|
diff --git a/qa/archives/pcp-ss.0.xz b/qa/archives/pcp-ss.0.xz
|
|
new file mode 100644
|
|
index 000000000..27de18b90
|
|
Binary files /dev/null and b/qa/archives/pcp-ss.0.xz differ
|
|
diff --git a/qa/archives/pcp-ss.index b/qa/archives/pcp-ss.index
|
|
new file mode 100644
|
|
index 000000000..99fc45f0b
|
|
Binary files /dev/null and b/qa/archives/pcp-ss.index differ
|
|
diff --git a/qa/archives/pcp-ss.meta.xz b/qa/archives/pcp-ss.meta.xz
|
|
new file mode 100644
|
|
index 000000000..86a6aee7c
|
|
Binary files /dev/null and b/qa/archives/pcp-ss.meta.xz differ
|
|
diff --git a/src/pcp/GNUmakefile b/src/pcp/GNUmakefile
|
|
index 01b8a6f55..381b9c2df 100644
|
|
--- a/src/pcp/GNUmakefile
|
|
+++ b/src/pcp/GNUmakefile
|
|
@@ -33,7 +33,8 @@ SUBDIRS = \
|
|
tapestat \
|
|
uptime \
|
|
verify \
|
|
- vmstat
|
|
+ vmstat \
|
|
+ ss
|
|
|
|
default :: default_pcp
|
|
|
|
diff --git a/src/pcp/ss/.gitignore b/src/pcp/ss/.gitignore
|
|
new file mode 100644
|
|
index 000000000..1a8611204
|
|
--- /dev/null
|
|
+++ b/src/pcp/ss/.gitignore
|
|
@@ -0,0 +1 @@
|
|
+pcp-ss.1.gz
|
|
diff --git a/src/pcp/ss/GNUmakefile b/src/pcp/ss/GNUmakefile
|
|
new file mode 100644
|
|
index 000000000..37b07339a
|
|
--- /dev/null
|
|
+++ b/src/pcp/ss/GNUmakefile
|
|
@@ -0,0 +1,40 @@
|
|
+#
|
|
+# Copyright (c) 2021 Red Hat, Inc. All Rights Reserved.
|
|
+#
|
|
+# This program is free software; you can redistribute it and/or modify it
|
|
+# under the terms of the GNU General Public License as published by the
|
|
+# Free Software Foundation; either version 2 of the License, or (at your
|
|
+# option) any later version.
|
|
+#
|
|
+# This program is distributed in the hope that it will be useful, but
|
|
+# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
+# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
+# for more details.
|
|
+#
|
|
+
|
|
+TOPDIR = ../../..
|
|
+include $(TOPDIR)/src/include/builddefs
|
|
+
|
|
+TARGET = pcp-ss
|
|
+SCRIPT = $(TARGET).py
|
|
+MAN_PAGES = $(TARGET).1
|
|
+
|
|
+default: $(SCRIPT)
|
|
+
|
|
+include $(BUILDRULES)
|
|
+
|
|
+install: default
|
|
+ifeq "$(HAVE_PYTHON)" "true"
|
|
+ $(INSTALL) -m 755 $(SCRIPT) $(PCP_BINADM_DIR)/$(TARGET)
|
|
+ @$(INSTALL_MAN)
|
|
+endif
|
|
+
|
|
+default_pcp: default
|
|
+
|
|
+install_pcp: install
|
|
+
|
|
+check :: $(SCRIPT)
|
|
+ $(PYLINT) $^
|
|
+
|
|
+check :: $(MAN_PAGES)
|
|
+ $(MANLINT) $^
|
|
diff --git a/src/pcp/ss/pcp-ss.1 b/src/pcp/ss/pcp-ss.1
|
|
new file mode 100644
|
|
index 000000000..5f982380a
|
|
--- /dev/null
|
|
+++ b/src/pcp/ss/pcp-ss.1
|
|
@@ -0,0 +1,287 @@
|
|
+'\"macro stdmacro
|
|
+.\"
|
|
+.\" Copyright (c) 2021 Red Hat.
|
|
+.\"
|
|
+.\" This program is free software; you can redistribute it and/or modify it
|
|
+.\" under the terms of the GNU General Public License as published by the
|
|
+.\" Free Software Foundation; either version 2 of the License, or (at your
|
|
+.\" option) any later version.
|
|
+.\"
|
|
+.\" This program is distributed in the hope that it will be useful, but
|
|
+.\" WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
+.\" or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
+.\" for more details.
|
|
+.\"
|
|
+.\"
|
|
+.TH PCP-SS 1 "PCP" "Performance Co-Pilot"
|
|
+.SH NAME
|
|
+\f3pcp-ss\f1 \- report socket statistics
|
|
+.SH SYNOPSIS
|
|
+\f3pcp\f1 [\f2pcp\ options\f1] \f3ss\f1 [\f2ss\ options\f1]
|
|
+.SH DESCRIPTION
|
|
+.B pcp-ss
|
|
+reports socket statistics collected by the
|
|
+.BR pmdasockets (1)
|
|
+PMDA agent.
|
|
+The command is intended to be closely compatible with many of the
|
|
+.BR ss (8)
|
|
+command line options and reporting formats, but also offer
|
|
+the advantages of local or remote monitoring (in live mode) and
|
|
+also historical replay from a previously recorded PCP archive.
|
|
+.PP
|
|
+Live mode uses the
|
|
+.B pcp
|
|
+\fB-h\fP \fIhost\fP option and requires the
|
|
+.BR pmdasockets (1)
|
|
+PMDA to be installed and enabled on the target \fIhost\fP (local or remote), see
|
|
+.BR pmdasockets (1)
|
|
+for details on how to enable the \fBsockets\fP PMDA on a particular host.
|
|
+The default source is live metrics collected on
|
|
+.BR localhost ,
|
|
+if neither of the
|
|
+.B \-h
|
|
+or
|
|
+.B \-a
|
|
+options are given.
|
|
+.PP
|
|
+Historical/archive replay uses the
|
|
+.B pcp
|
|
+\fB-a\fP \fIarchive\fP option, where \fIarchive\fP is the
|
|
+basename of a previously recorded PCP archive.
|
|
+The archive replay feature is particularly useful because
|
|
+socket statistics can be reported for a designated time using the
|
|
+.B pcp
|
|
+.B \-\-origin
|
|
+option (which defaults to the start time of the archive).
|
|
+.SH EXAMPLES
|
|
+.TP 5
|
|
+\fBpcp ss\fP
|
|
+Display default basic socket information for the local host.
|
|
+This includes \fBNetid\fP (\fBtcp\fP, \fBudp\fP, etc), \fBState\fP (\fBESTAB\fP,
|
|
+\fBTIME_WAIT\fP, etc), \fBRecv-Q\fP and \fBSend-Q\fP queue lengths
|
|
+and the local and peer address and port for each socket.
|
|
+.TP 5
|
|
+\fBpcp \-h \fIsomehost\fP ss \-noemitauO\fP
|
|
+Display the same basic socket information as above for the host \fIsomehost\fP,
|
|
+which may be the default \fBlocalhost\fP.
|
|
+The additional command line arguments (\fB\-noemitauO\fP) display
|
|
+one line per socket (\fB\-O\fP), numeric (\fB\-n\fP) service names (default),
|
|
+timer information (\fB\-o\fP), extended socket details (\fB\-e\fP),
|
|
+socket memory usage (\fB\-m\fP), internal TCP information (\fB\-i\fP),
|
|
+both udp (\fB\-u\fP) and tcp sockets (\fB\-t\fP) and both listening and
|
|
+non-listening sockets (\fB\-a\fP).
|
|
+.TP 5
|
|
+\fBpcp \-a \fIsomearchive\fP \fB-S'@Wed 16 Jun 2021 12:57:21'\fP ss \-noemitauO\fP
|
|
+Display the same information as the above example, but for the archive
|
|
+\fIsomearchive\fP starting at the given time \fBWed 16 Jun 2021 12:57:21\fP.
|
|
+Note the literal \fB@\fP prefix is required for an absolute time, see
|
|
+.BR PCPIntro (1)
|
|
+for details.
|
|
+The archive must of course contain data for the requested time. You can use
|
|
+\fBpmdumplog \-l\fP \fIsomearchive\fP to examine the time bounds of \fIsomearchive\fP.
|
|
+.TP 5
|
|
+\fBpcp \-a \fIsomearchive\fP \fB\-O\-0\fP ss \-noemitauO\fP
|
|
+As above, but with an offset of zero seconds (\fB\-O\-0\fP) before the current end of
|
|
+\fIsomearchive\fP, i.e. the most recently logged data. Note that \fIsomearchive\fP
|
|
+may be curently growing (i.e. being logged with
|
|
+.BR pmlogger (1)).
|
|
+.SH OPTIONS
|
|
+Due to the large number of options supported by
|
|
+.BR pcp-ss ,
|
|
+the
|
|
+.BR pcp (1)
|
|
+command should always be used to invoke
|
|
+.B pcp-ss
|
|
+in order to specify options such as the metrics source (host or archive)
|
|
+and also (in archive mode), the requested start time or offset, and timezone
|
|
+using the following options:
|
|
+.TP 5
|
|
+\fB\-h\fP, \fB\-\-host\fP
|
|
+The remote hostname to connect to in live mode
|
|
+.TP 5
|
|
+\fB\-a\fP, \fB\-\-archive\fP
|
|
+The archive file to use for historical sampling
|
|
+.TP 5
|
|
+\fB\-O\fP, \fB\-\-origin\fP
|
|
+The time offset to use within an archive (implies
|
|
+.BR \-a )
|
|
+.TP 5
|
|
+\fB\-S\fP, \fB\-\-start\fP
|
|
+The start time (e.g. in
|
|
+.BR ctime (3)
|
|
+format) to use when replaying an archive.
|
|
+.TP 5
|
|
+\fB\-Z\fP, \fB\-\-timezone\fP
|
|
+Use a specific timezone.
|
|
+Since
|
|
+.B pcp-ss
|
|
+doesn't report timestamps, this only affects the interpretation
|
|
+of an absolute starting time (\fB\-S\fP) or offset (\fB\-O\fP).
|
|
+.TP 5
|
|
+\fB\-z\fP, \fB\-\-hostzone\fP
|
|
+In archive mode, use the timezone of the archive rather than the
|
|
+timezone on the local machine running
|
|
+.BR pcp-ss .
|
|
+The timezone, start and finish times of the archive may be examined using
|
|
+.BR pmdumplog (1)
|
|
+with the \fB\-L\fP option.
|
|
+.PP
|
|
+The above
|
|
+.B pcp
|
|
+options become indirectly available to the
|
|
+.B pcp-ss
|
|
+command via environment variables - refer to
|
|
+.BR PCPIntro (1)
|
|
+for a complete description of these options.
|
|
+.PP
|
|
+The additional command line options available for
|
|
+.B pcp-ss
|
|
+itself are:
|
|
+.TP 5
|
|
+\fB\-h\fP, \fB\-\-help\fP
|
|
+show help message and exit
|
|
+.TP 5
|
|
+\fB\-V\fP, \fB\-\-version\fP
|
|
+output version information
|
|
+.TP 5
|
|
+\fB\-n\fP, \fB\-\-numeric\fP
|
|
+don't resolve service names
|
|
+.TP 5
|
|
+\fB\-r\fP, \fB\-\-resolve\fP
|
|
+resolve host names
|
|
+.TP 5
|
|
+\fB\-a\fP, \fB\-\-all\fP
|
|
+display all sockets
|
|
+.TP 5
|
|
+\fB\-l\fP, \fB\-\-listening\fP
|
|
+display listening sockets
|
|
+.TP 5
|
|
+\fB\-o\fP, \fB\-\-options\fP
|
|
+show timer information
|
|
+.TP 5
|
|
+\fB\-e\fP, \fB\-\-extended\fP
|
|
+show detailed socket information
|
|
+.TP 5
|
|
+\fB\-m\fP, \fB\-\-memory\fP
|
|
+show socket memory usage
|
|
+.TP 5
|
|
+\fB\-p\fP, \fB\-\-processes\fP
|
|
+show process using socket
|
|
+.TP 5
|
|
+\fB\-i\fP, \fB\-\-info\fP
|
|
+show internal TCP information
|
|
+.TP 5
|
|
+\fB\-s\fP, \fB\-\-summary\fP
|
|
+show socket usage summary
|
|
+.TP 5
|
|
+\fB\-b\fP, \fB\-\-bpf\fP
|
|
+show bpf filter socket information
|
|
+.TP 5
|
|
+\fB\-E\fP, \fB\-\-events\fP
|
|
+continually display sockets as they are destroyed
|
|
+.TP 5
|
|
+\fB\-Z\fP, \fB\-\-context\fP
|
|
+display process SELinux security contexts
|
|
+.TP 5
|
|
+\fB\-z\fP, \fB\-\-contexts\fP
|
|
+display process and socket SELinux security contexts
|
|
+.TP 5
|
|
+\fB\-N\fP, \fB\-\-net\fP
|
|
+switch to the specified network namespace name
|
|
+.TP 5
|
|
+\fB\-4\fP, \fB\-\-ipv4\fP
|
|
+display only IP version 4 sockets
|
|
+.TP 5
|
|
+\fB\-6\fP, \fB\-\-ipv6\fP
|
|
+display only IP version 6 sockets
|
|
+.TP 5
|
|
+\fB\-0\fP, \fB\-\-packet\fP
|
|
+display PACKET sockets
|
|
+.TP 5
|
|
+\fB\-t\fP, \fB\-\-tcp\fP
|
|
+display only TCP sockets
|
|
+.TP 5
|
|
+\fB\-M\fP, \fB\-\-mptcp\fP
|
|
+display only MPTCP sockets
|
|
+.TP 5
|
|
+\fB\-S\fP, \fB\-\-sctp\fP
|
|
+display only SCTP sockets
|
|
+.TP 5
|
|
+\fB\-u\fP, \fB\-\-udp\fP
|
|
+display only UDP sockets
|
|
+.TP 5
|
|
+\fB\-d\fP, \fB\-\-dccp\fP
|
|
+display only DCCP sockets
|
|
+.TP 5
|
|
+\fB\-w\fP, \fB\-\-raw\fP
|
|
+display only RAW sockets
|
|
+.TP 5
|
|
+\fB\-x\fP, \fB\-\-unix\fP
|
|
+display only Unix domain sockets
|
|
+.TP 5
|
|
+\fB\-H\fP, \fB\-\-noheader\fP
|
|
+Suppress header line
|
|
+.TP 5
|
|
+\fB\-O\fP, \fB\-\-oneline\fP
|
|
+socket's data printed on a single line
|
|
+.SH REPORT
|
|
+The columns in the
|
|
+.B pcp-ss
|
|
+report vary according to the command line options and have the
|
|
+same interpretation as described in
|
|
+.BR ss (8).
|
|
+.PP
|
|
+One difference with
|
|
+.B pcp-ss
|
|
+is that the first line in the report begins with '\fB# Timestamp\fP'
|
|
+followed by the timestamp (in the requested timezone, see \fB\-z\fP and \fB\-Z\fP above)
|
|
+of the sample data from the host or archive source.
|
|
+Following the timestamp is the currently active filter string for the metrics source.
|
|
+In archive mode, the active filter can be changed dynamically, even whilst the archive is
|
|
+being recorded.
|
|
+This is different to
|
|
+.BR ss (8)
|
|
+where the filter is optionally specified on the command line of the tool and is
|
|
+always 'live', i.e.
|
|
+.BR ss (8) does not support retrospective replay.
|
|
+With
|
|
+.BR pcp-ss ,
|
|
+the filter is stored in the back-end PMDA, see
|
|
+.BR pmdasockets (1),
|
|
+in the metric
|
|
+.BR network.persocket.filter.
|
|
+The default filter is \fBstate connected\fP, which can be changed by
|
|
+storing a new string value in the
|
|
+.B network.persocket.filter
|
|
+metric using
|
|
+.BR pmstore (1),
|
|
+e.g.
|
|
+\fBpmstore network.persocket.filter "state established"\fP.
|
|
+This will over-ride the persistent default filter, which is stored
|
|
+in a PMDA configuration file and loaded each time the sockets PMDA is started.
|
|
+See
|
|
+.BR pmdasockets (1) for further details and see
|
|
+.BR ss (8)
|
|
+for details of the filter syntax and examples.
|
|
+.SH DIAGNOSTICS
|
|
+All are generated on standard error and are intended to be self-explanatory.
|
|
+.SH PCP ENVIRONMENT
|
|
+Environment variables with the prefix \fBPCP_\fP are used to parameterize
|
|
+the file and directory names used by PCP.
|
|
+On each installation, the
|
|
+file \fI/etc/pcp.conf\fP contains the local values for these variables.
|
|
+The \fB$PCP_CONF\fP variable may be used to specify an alternative
|
|
+configuration file, as described in \fBpcp.conf\fP(5).
|
|
+.PP
|
|
+For environment variables affecting PCP tools, see \fBpmGetOptions\fP(3).
|
|
+.SH SEE ALSO
|
|
+.BR PCPIntro (1),
|
|
+.BR pmdasockets (1),
|
|
+.BR pcp (1),
|
|
+.BR pmcd (1),
|
|
+.BR pmchart (1),
|
|
+.BR pmlogger (1),
|
|
+.BR ss (8),
|
|
+.BR pcp.conf (5)
|
|
+and
|
|
+.BR pcp.env (5).
|
|
diff --git a/src/pcp/ss/pcp-ss.py b/src/pcp/ss/pcp-ss.py
|
|
new file mode 100755
|
|
index 000000000..8b29d2b21
|
|
--- /dev/null
|
|
+++ b/src/pcp/ss/pcp-ss.py
|
|
@@ -0,0 +1,370 @@
|
|
+#!/usr/bin/env pmpython
|
|
+#
|
|
+# Copyright (C) 2021 Red Hat.
|
|
+#
|
|
+# This program is free software; you can redistribute it and/or modify it
|
|
+# under the terms of the GNU General Public License as published by the
|
|
+# Free Software Foundation; either version 2 of the License, or (at your
|
|
+# option) any later version.
|
|
+#
|
|
+# This program is distributed in the hope that it will be useful, but
|
|
+# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
+# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
+# for more details.
|
|
+#
|
|
+# pylint: disable=line-too-long,bad-continuation,broad-except,bare-except
|
|
+# pylint: disable=missing-docstring,multiple-imports,unused-import
|
|
+# pylint: disable=too-many-boolean-expressions
|
|
+
|
|
+""" Display socket statistics """
|
|
+
|
|
+import os, sys, argparse, errno
|
|
+
|
|
+# PCP Python PMAPI
|
|
+from pcp import pmapi
|
|
+from cpmapi import PM_CONTEXT_ARCHIVE, PM_CONTEXT_HOST, PM_CONTEXT_LOCAL
|
|
+from cpmapi import PM_ERR_EOL, PM_MODE_FORW, PM_MODE_INTERP
|
|
+
|
|
+if sys.version >= '3':
|
|
+ long = int
|
|
+
|
|
+# pmns prefix for pmdasockets(1) metrics
|
|
+pmns = "network.persocket"
|
|
+
|
|
+def remove_prefix(text, prefix):
|
|
+ """ remove prefix from text (for python < 3.9) """
|
|
+ return text[text.startswith(prefix) and len(prefix):]
|
|
+
|
|
+class SS(object):
|
|
+ """ PCP client implementation of the ss(1) tool, using pmdasockets(1) """
|
|
+
|
|
+ def __init__(self):
|
|
+ """ Construct object - prepare for command line handling """
|
|
+ self.args = self.options()
|
|
+ self.source = "local:"
|
|
+ self.speclocal = None
|
|
+ self.metrics = []
|
|
+ self.instD = {} # { instid: instname }
|
|
+ self.metricsD = {} # { name: [fetchgroup, {instid: value}] }
|
|
+ self.context = None
|
|
+ self.pmfg = None
|
|
+
|
|
+ def options(self):
|
|
+ """ define command line arguments """
|
|
+ p = argparse.ArgumentParser()
|
|
+ p.add_argument('-V', '--version', action='store_true', help='output version information')
|
|
+ p.add_argument('-n', '--numeric', action='store_true', help='don\'t resolve service names (currently always set)')
|
|
+ p.add_argument('-r', '--resolve', action='store_true', help='resolve host names (currently always set)')
|
|
+ p.add_argument('-a', '--all', action='store_true', help='display all sockets')
|
|
+ p.add_argument('-l', '--listening', action='store_true', help='display listening sockets')
|
|
+ p.add_argument('-o', '--options', action='store_true', help='show timer information')
|
|
+ p.add_argument('-e', '--extended', action='store_true', help='show detailed socket information')
|
|
+ p.add_argument('-m', '--memory', action='store_true', help='show socket memory usage')
|
|
+ p.add_argument('-p', '--processes', action='store_true', help='show process using socket (not yet implemented)')
|
|
+ p.add_argument('-i', '--info', action='store_true', help='show internal TCP information')
|
|
+ p.add_argument('-s', '--summary', action='store_true', help='show socket usage summary (not yet implemented)')
|
|
+ p.add_argument('-b', '--bpf', action='store_true', help='show bpf filter socket information (not yet implemented)')
|
|
+ p.add_argument('-E', '--events', action='store_true', help='continually display sockets as they are destroyed (not implemented)')
|
|
+ p.add_argument('-Z', '--context', action='store_true', help='display process SELinux security contexts (not implemented)')
|
|
+ p.add_argument('-z', '--contexts', action='store_true', help='display process and socket SELinux security contexts (not implemented)')
|
|
+ p.add_argument('-N', '--net', action='store_true', help='switch to the specified network namespace name (not implemented)')
|
|
+ p.add_argument('-4', '--ipv4', action='store_true', help='display only IP version 4 sockets')
|
|
+ p.add_argument('-6', '--ipv6', action='store_true', help='display only IP version 6 sockets')
|
|
+ p.add_argument('-0', '--packet', action='store_true', help='display PACKET sockets (not implemented)')
|
|
+ p.add_argument('-t', '--tcp', action='store_true', help='display only TCP sockets')
|
|
+ p.add_argument('-M', '--mptcp', action='store_true', help='display only MPTCP sockets (not implemented)')
|
|
+ p.add_argument('-S', '--sctp', action='store_true', help='display only SCTP sockets (not implemented)')
|
|
+ p.add_argument('-u', '--udp', action='store_true', help='display only UDP sockets')
|
|
+ p.add_argument('-d', '--dccp', action='store_true', help='display only DCCP sockets (not implemented)')
|
|
+ p.add_argument('-w', '--raw', action='store_true', help='display only RAW sockets (not implemented)')
|
|
+ p.add_argument('-x', '--unix', action='store_true', help='display only Unix domain sockets (not implemented)')
|
|
+ p.add_argument('-H', '--noheader', action='store_true', help='Suppress header line')
|
|
+ p.add_argument('-O', '--oneline', action='store_true', help='print each socket\'s data on a single line')
|
|
+ args = p.parse_args()
|
|
+
|
|
+ # special cases
|
|
+ if not (args.tcp or args.udp or args.mptcp or args.sctp or args.packet or args.dccp or args.raw or args.unix):
|
|
+ args.tcp = args.udp = args.mptcp = args.sctp = args.packet = args.dccp = args.raw = args.unix = True
|
|
+
|
|
+ if not (args.ipv4 or args.ipv6):
|
|
+ args.ipv4 = args.ipv6 = True
|
|
+
|
|
+ if args.all:
|
|
+ args.listening = True
|
|
+
|
|
+ if args.events or args.context or args.contexts or args.net or args.summary or args.processes:
|
|
+ print("Warning: --events, --context --net, --summary and --processes options are not implemented")
|
|
+
|
|
+ return args
|
|
+
|
|
+ def connect(self):
|
|
+ """ Establish a fetchgroup PMAPI context to archive, host or local,
|
|
+ via environment passed in by pcp(1). The ss(1) command has many
|
|
+ clashes with standard PCP arguments so this is the only supported
|
|
+ invocation. Debug options (if any) are set for us by pcp(1).
|
|
+ Return True or False if we fail to connect.
|
|
+ """
|
|
+ # source
|
|
+ pcp_host = os.getenv("PCP_HOST")
|
|
+ pcp_archive = os.getenv("PCP_ARCHIVE")
|
|
+
|
|
+ # time window
|
|
+ pcp_origin = os.getenv("PCP_ORIGIN_TIME")
|
|
+ pcp_start_time = os.getenv("PCP_START_TIME")
|
|
+ pcp_align_time = os.getenv("PCP_ALIGN_TIME")
|
|
+ pcp_timezone = os.getenv("PCP_TIMEZONE")
|
|
+ pcp_hostzone = os.getenv("PCP_HOSTZONE")
|
|
+ pcp_debug = os.getenv("PCP_DEBUG")
|
|
+
|
|
+ if pcp_archive is not None:
|
|
+ self.context_type = PM_CONTEXT_ARCHIVE
|
|
+ if pcp_origin is None and pcp_start_time is None:
|
|
+ pcp_origin = "-0" # end of archive
|
|
+ self.source = pcp_archive
|
|
+ else:
|
|
+ self.context_type = PM_CONTEXT_HOST
|
|
+ if pcp_host is not None:
|
|
+ self.source = pcp_host
|
|
+ else:
|
|
+ self.source = "localhost"
|
|
+
|
|
+ try:
|
|
+ self.pmfg = pmapi.fetchgroup(self.context_type, self.source)
|
|
+ self.context = self.pmfg.get_context()
|
|
+ if pcp_archive:
|
|
+ options = pmapi.pmOptions("a:A:O:S:D:zZ:")
|
|
+ optargv = ["pcp-ss", pcp_archive]
|
|
+ if pcp_debug:
|
|
+ optargv.append("-D%s" % pcp_debug)
|
|
+ if pcp_align_time:
|
|
+ optargv.append("-A%s" % pcp_align_time)
|
|
+ if pcp_timezone:
|
|
+ optargv.append("-Z%s" % pcp_timezone)
|
|
+ if pcp_hostzone:
|
|
+ optargv.append("-z")
|
|
+ if pcp_origin:
|
|
+ optargv.append("-O%s" % pcp_origin)
|
|
+ ctx = pmapi.pmContext.fromOptions(options, optargv)
|
|
+ origin = options.pmGetOptionOrigin()
|
|
+ self.context.pmSetMode(PM_MODE_INTERP, origin, 0)
|
|
+ del ctx
|
|
+ elif pcp_start_time:
|
|
+ optargv.append("-S%s" % pcp_start_time)
|
|
+ ctx = pmapi.pmContext.fromOptions(options, optargv)
|
|
+ start = options.pmGetOptionStart()
|
|
+ self.context.pmSetMode(PM_MODE_INTERP, start, 0)
|
|
+ del ctx
|
|
+
|
|
+ except pmapi.pmErr as error:
|
|
+ sys.stderr.write("%s: %s '%s'\n" % (error.progname(), error.message(), self.source))
|
|
+ return False
|
|
+
|
|
+ # check network.persocket metrics are available
|
|
+ try:
|
|
+ self.context.pmLookupName((pmns + ".filter"))
|
|
+ except Exception:
|
|
+ if self.context_type == PM_CONTEXT_HOST:
|
|
+ msg = "on host %s.\nIs the 'sockets' PMDA installed and enabled? See pmdasockets(1)." % self.source
|
|
+ else:
|
|
+ msg = "in archive %s" % self.source
|
|
+ print("Error: metrics for '%s' not found %s" % (pmns, msg))
|
|
+ return False
|
|
+
|
|
+ return True
|
|
+
|
|
+ def traverseCB(self, name):
|
|
+ if not name.endswith(".filter"):
|
|
+ self.metrics.append(name)
|
|
+
|
|
+ def fetch(self):
|
|
+ """ fetch metrics and report as per given options """
|
|
+
|
|
+ # filter and timestamp
|
|
+ self.filter = self.pmfg.extend_item(pmns + ".filter")
|
|
+ self.timestamp = self.pmfg.extend_timestamp()
|
|
+
|
|
+ self.context.pmTraversePMNS(pmns, self.traverseCB)
|
|
+ self.pmids = self.context.pmLookupName(self.metrics)
|
|
+
|
|
+ # Create metrics dict keyed by metric name (without pmns prefix).
|
|
+ # Each metricsD item is a list of [fetchgroup, dict of inst vals]
|
|
+ for pmnsname in self.metrics:
|
|
+ name = remove_prefix(pmnsname, pmns + ".")
|
|
+ try:
|
|
+ self.metricsD[name] = [self.pmfg.extend_indom(pmnsname, maxnum=1000)]
|
|
+ except Exception as e:
|
|
+ print("Warning: Failed to add %s to fetch group: %s" % (name, e))
|
|
+
|
|
+ # fetch the lot
|
|
+ try:
|
|
+ self.pmfg.fetch()
|
|
+ except Exception as e:
|
|
+ print("Error: fetch failed: %s" % e)
|
|
+ sys.exit(1)
|
|
+
|
|
+ # extract instances
|
|
+ for name, metricL in self.metricsD.items():
|
|
+ try:
|
|
+ instvalsD = {}
|
|
+ # walk the instances in the fetch group for this metric
|
|
+ fg = metricL[0]
|
|
+ for inst, iname, value in fg():
|
|
+ self.instD[inst] = iname
|
|
+ try:
|
|
+ instvalsD[inst] = value()
|
|
+ except Exception as e:
|
|
+ # print("Error: value() failed for metric %s, inst ID %d: %s" % (name, inst, e.message()))
|
|
+ pass
|
|
+ self.metricsD[name].append(instvalsD) # [1] is dict of instid:value
|
|
+ except Exception as e:
|
|
+ print("Warning: failed to extract instances for metric %s, inst %d, iname %s, value %s: %s" %
|
|
+ (name, inst, iname, value(), e))
|
|
+
|
|
+ def strfield(self, fmt, metric, inst, default=""):
|
|
+ """ return formatted field, if metric and inst are available else default string """
|
|
+ try:
|
|
+ s = self.metricsD[metric][1][inst]
|
|
+ if s is not None:
|
|
+ return fmt % s
|
|
+ except:
|
|
+ pass
|
|
+ return fmt % default
|
|
+
|
|
+ def intfield(self, fmt, metric, inst, default=0):
|
|
+ """ return formatted field, if metric and inst are available else default """
|
|
+ try:
|
|
+ s = self.metricsD[metric][1][inst]
|
|
+ if s is not None:
|
|
+ return fmt % s
|
|
+ except:
|
|
+ pass
|
|
+ return fmt % default
|
|
+
|
|
+ def boolfield(self, field, metric, inst, default=""):
|
|
+ """ return field if metric and inst are available and non-zero """
|
|
+ try:
|
|
+ s = self.metricsD[metric][1][inst]
|
|
+ if s is not None and s != 0:
|
|
+ return field
|
|
+ except:
|
|
+ pass
|
|
+ return default
|
|
+
|
|
+ def filter_netid(self, inst):
|
|
+ """ filter on netid and -t, -u and -x cmdline options """
|
|
+ ret = False
|
|
+ netid = self.metricsD["netid"][1][inst]
|
|
+ if self.args.tcp and netid == "tcp":
|
|
+ ret = True
|
|
+ elif self.args.udp and netid == "udp":
|
|
+ ret = True
|
|
+ elif self.args.unix and netid == "unix":
|
|
+ ret = True
|
|
+ elif self.args.raw and netid == "raw":
|
|
+ ret = True
|
|
+ return ret
|
|
+
|
|
+ def filter_listening(self, inst):
|
|
+ """ filter on tcp state """
|
|
+ if self.args.all:
|
|
+ return True
|
|
+ netid = self.metricsD["netid"][1][inst]
|
|
+ state = self.metricsD["state"][1][inst]
|
|
+ if self.args.listening:
|
|
+ if state != "LISTEN" and netid in ("tcp", "tcp6"):
|
|
+ return False
|
|
+ return True
|
|
+
|
|
+ def report(self):
|
|
+ """ output report based on cmdline options """
|
|
+ if not self.args.noheader: # -H flag
|
|
+ print("# Time: %s Filter: %s" % (self.timestamp(), self.filter()))
|
|
+ print("Netid State Recv-Q Send-Q %25s %-25s Process" % ("Local Address:Port", "Peer Address:Port"))
|
|
+ for inst in self.instD:
|
|
+ if not self.filter_netid(inst) or not self.filter_listening(inst):
|
|
+ continue
|
|
+ out = ""
|
|
+ out += self.strfield("%-6s", "netid", inst)
|
|
+ out += self.strfield("%-9s", "state", inst, "-")
|
|
+ out += self.strfield("%6u", "recvq", inst, 0)
|
|
+ out += self.strfield("%6u", "sendq", inst, 0)
|
|
+ out += self.strfield("%26s ", "src", inst)
|
|
+ out += self.strfield("%-26s", "dst", inst)
|
|
+
|
|
+ if self.args.options: # -o --options flag
|
|
+ m = self.metricsD["timer.str"][1][inst]
|
|
+ if m is not None and len(m) > 0:
|
|
+ out += " timer(%s)" % m
|
|
+
|
|
+ if self.args.extended: # -e --extended flag
|
|
+ out += self.strfield(" uid:%d", "uid", inst, 0)
|
|
+ out += self.strfield(" inode:%lu", "inode", inst, 0)
|
|
+ out += self.strfield(" sk:%x", "sk", inst, 0)
|
|
+ out += self.strfield(" cgroup:%s", "cgroup", inst)
|
|
+ if self.metricsD["v6only"][1][inst] != 0:
|
|
+ out += " v6only:%d" % self.metricsD["v6only"][1][inst]
|
|
+ out += " <->"
|
|
+
|
|
+ if not self.args.oneline and (self.args.memory or self.args.info):
|
|
+ out += "\n"
|
|
+
|
|
+ if self.args.memory: # -m --memory flag
|
|
+ m = self.metricsD["skmem.str"][1][inst]
|
|
+ if m is not None and len(m) > 0:
|
|
+ out += " skmem(%s)" % m
|
|
+
|
|
+ if self.args.info: # -i --info flag
|
|
+ out += self.boolfield(" ts", "ts", inst)
|
|
+ out += self.boolfield(" sack", "sack", inst)
|
|
+ # TODO ecn, ecnseen, fastopen
|
|
+ out += self.boolfield(" cubic", "cubic", inst)
|
|
+ out += self.strfield(" wscale:%s", "wscale.str", inst)
|
|
+ # TODO rto, backoff
|
|
+ out += self.strfield(" rtt:%s", "round_trip.str", inst)
|
|
+ out += self.strfield(" ato:%.0lf", "ato", inst, 0.0)
|
|
+ out += self.strfield(" mss:%d", "mss", inst, 0)
|
|
+ out += self.strfield(" cwnd:%d", "cwnd", inst, 0)
|
|
+ out += self.strfield(" pmtu:%d", "pmtu", inst, 0)
|
|
+ out += self.strfield(" ssthresh:%d", "ssthresh", inst, 0)
|
|
+ out += self.strfield(" bytes_acked:%lu", "bytes_acked", inst, 0)
|
|
+ out += self.strfield(" bytes_received:%lu", "bytes_received", inst, 0)
|
|
+ out += self.strfield(" segs_out:%lu", "segs_out", inst, 0)
|
|
+ out += self.strfield(" segs_in:%lu", "segs_in", inst, 0)
|
|
+ out += self.strfield(" send %.0lfbps", "send", inst, 0)
|
|
+ out += self.strfield(" lastsnd:%.0lf", "lastsnd", inst, 0.0)
|
|
+ out += self.strfield(" lastrcv:%.0lf", "lastrcv", inst, 0.0)
|
|
+ out += self.strfield(" lastack:%.0lf", "lastack", inst, 0.0)
|
|
+ out += self.strfield(" pacing_rate %.0lfbps", "pacing_rate", inst, 0.0)
|
|
+ out += self.strfield(" delivery_rate %.0lfbps", "delivery_rate", inst, 0.0)
|
|
+ # TODO max_pacing_rate
|
|
+ out += self.strfield(" rcv_space:%lu", "rcv_space", inst, 0)
|
|
+ # TODO tcp-ulp-mptcp
|
|
+ # TODO token:<rem_token(rem_id)/loc_token(loc_id)>
|
|
+ # TODO seq:<sn>
|
|
+ # TODO sfseq:<ssn>
|
|
+ # TODO ssnoff
|
|
+
|
|
+ print(out)
|
|
+
|
|
+if __name__ == '__main__':
|
|
+ try:
|
|
+ ss = SS()
|
|
+ if not ss.connect():
|
|
+ # failed to connect or metrics not found - error already reported.
|
|
+ sys.exit(1)
|
|
+ ss.fetch()
|
|
+ ss.report()
|
|
+ except pmapi.pmErr as error:
|
|
+ if error.args[0] == PM_ERR_EOL:
|
|
+ sys.exit(0)
|
|
+ sys.stderr.write('%s: %s\n' % (error.progname(), error.message()))
|
|
+ sys.exit(1)
|
|
+ except pmapi.pmUsageErr as usage:
|
|
+ usage.message()
|
|
+ sys.exit(1)
|
|
+ except IOError as error:
|
|
+ if error.errno != errno.EPIPE:
|
|
+ sys.stderr.write("Error: %s\n" % str(error))
|
|
+ sys.exit(1)
|
|
+ except KeyboardInterrupt:
|
|
+ sys.stdout.write("\n")
|
|
|
|
commit af2c47e7755dc27db145f3568ead61458181ccdf
|
|
Author: Marko Myllynen <myllynen@redhat.com>
|
|
Date: Thu Jun 24 13:06:29 2021 +0300
|
|
|
|
pcp-ss.1: fix syntax, sort SEE ALSO
|
|
|
|
Also drop some unrelated references like pmchart(1).
|
|
|
|
diff --git a/src/pcp/ss/pcp-ss.1 b/src/pcp/ss/pcp-ss.1
|
|
index 5f982380a..de87d62c9 100644
|
|
--- a/src/pcp/ss/pcp-ss.1
|
|
+++ b/src/pcp/ss/pcp-ss.1
|
|
@@ -243,7 +243,8 @@ This is different to
|
|
.BR ss (8)
|
|
where the filter is optionally specified on the command line of the tool and is
|
|
always 'live', i.e.
|
|
-.BR ss (8) does not support retrospective replay.
|
|
+.BR ss (8)
|
|
+does not support retrospective replay.
|
|
With
|
|
.BR pcp-ss ,
|
|
the filter is stored in the back-end PMDA, see
|
|
@@ -257,14 +258,13 @@ metric using
|
|
.BR pmstore (1),
|
|
e.g.
|
|
\fBpmstore network.persocket.filter "state established"\fP.
|
|
-This will over-ride the persistent default filter, which is stored
|
|
+This will override the persistent default filter, which is stored
|
|
in a PMDA configuration file and loaded each time the sockets PMDA is started.
|
|
See
|
|
-.BR pmdasockets (1) for further details and see
|
|
+.BR pmdasockets (1)
|
|
+for further details and see
|
|
.BR ss (8)
|
|
for details of the filter syntax and examples.
|
|
-.SH DIAGNOSTICS
|
|
-All are generated on standard error and are intended to be self-explanatory.
|
|
.SH PCP ENVIRONMENT
|
|
Environment variables with the prefix \fBPCP_\fP are used to parameterize
|
|
the file and directory names used by PCP.
|
|
@@ -276,12 +276,9 @@ configuration file, as described in \fBpcp.conf\fP(5).
|
|
For environment variables affecting PCP tools, see \fBpmGetOptions\fP(3).
|
|
.SH SEE ALSO
|
|
.BR PCPIntro (1),
|
|
-.BR pmdasockets (1),
|
|
.BR pcp (1),
|
|
-.BR pmcd (1),
|
|
-.BR pmchart (1),
|
|
+.BR pmdasockets (1),
|
|
.BR pmlogger (1),
|
|
-.BR ss (8),
|
|
.BR pcp.conf (5)
|
|
and
|
|
-.BR pcp.env (5).
|
|
+.BR ss (8).
|
|
|
|
commit 6e19b22d183b3a5118ab9f5e0d1b4e7bc8a73838
|
|
Author: Mark Goodwin <mgoodwin@redhat.com>
|
|
Date: Mon Jun 28 16:20:31 2021 +1000
|
|
|
|
pmdasockets: add persistent filter, new metrics, parser fixes and QA
|
|
|
|
Add persistent filter (loaded on start only) as a config file
|
|
in PCP_SYSCONF_DIR/sockets/filter.conf This can be overridden
|
|
at runtime with a store to network.persocket.filter.
|
|
|
|
Tweak the parser to handle the case where some filters (e.g.
|
|
"state established") cause the second column in the ss report
|
|
to be omitted. Also add some appl0 and app1 debug diags.
|
|
|
|
qa/1634 updated to use the QA domain (FORQA=251) and a private
|
|
pmns, avoiding cached indom updates by pmlogger or other clients
|
|
whilst the test is running (was occuring when the sockets PMDA
|
|
is enabled, causing intermittent mysterious timing related
|
|
failures)
|
|
|
|
Related: RHBZ#1879350 - pcp-ss
|
|
|
|
diff --git a/qa/1634 b/qa/1634
|
|
index 184d77ac6..742fac0b9 100755
|
|
--- a/qa/1634
|
|
+++ b/qa/1634
|
|
@@ -20,33 +20,21 @@ fi
|
|
. ./common.filter
|
|
. ./common.check
|
|
|
|
-do_valgrind=false
|
|
-if [ "$1" = "--valgrind" ]
|
|
-then
|
|
- _check_valgrind
|
|
- do_valgrind=true
|
|
-fi
|
|
-
|
|
[ $PCP_PLATFORM = linux ] || _notrun "pmdasockets is Linux-specific"
|
|
[ -f $PCP_PMDAS_DIR/sockets/pmdasockets ] || _notrun "sockets pmda not installed"
|
|
|
|
-pmns=$PCP_PMDAS_DIR/sockets/root
|
|
-pmda=$PCP_PMDAS_DIR/sockets/pmda_sockets.$DSO_SUFFIX,sockets_init
|
|
-_make_helptext sockets
|
|
|
|
-# override the default contents of PMDA cache files
|
|
-# (do not want localhost versions to be used here).
|
|
-#
|
|
-domain=154
|
|
-[ -f $PCP_VAR_DIR/config/pmda/$domain.0 ] && \
|
|
-_save_config $PCP_VAR_DIR/config/pmda/$domain.0
|
|
-$sudo rm -f $PCP_VAR_DIR/config/pmda/$domain.0
|
|
+# Override the pmda's filter.conf
|
|
+[ -f $PCP_PMDAS_DIR/sockets/filter.conf ] && \
|
|
+_save_config $PCP_PMDAS_DIR/sockets/filter.conf
|
|
+echo "state connected" >$tmp.filter
|
|
+$sudo cp $tmp.filter $PCP_PMDAS_DIR/sockets/filter.conf
|
|
|
|
_cleanup()
|
|
{
|
|
cd $here
|
|
[ -f $PCP_VAR_DIR/config/pmda/$domain.0.$seq ] && \
|
|
- _restore_config $PCP_VAR_DIR/config/pmda/$domain.0
|
|
+ _restore_config $PCP_PMDAS_DIR/sockets/filter.conf
|
|
|
|
$sudo rm -rf $tmp $tmp.*
|
|
}
|
|
@@ -57,17 +45,22 @@ trap "_cleanup; exit \$status" 0 1 2 3 15
|
|
|
|
_filter()
|
|
{
|
|
- sed \
|
|
- -e 's/<something>/<else>/' \
|
|
- # end
|
|
+ sed -e "s;$tmp;TMP;g"
|
|
}
|
|
|
|
# real QA test starts here
|
|
-for f in sockets/ss_noemitauOH.txt sockets/ss_noemitauOH_ubuntu.txt; do
|
|
+[ ! -d "$tmp" ] && mkdir -p $tmp
|
|
+qadomain=251 # FORQA
|
|
+sed -e "/^root/i#undef SOCKETS\n#define SOCKETS $qadomain" <$PCP_PMDAS_DIR/sockets/root >$tmp/root
|
|
+cp $PCP_PMDAS_DIR/sockets/pmns $tmp/pmns
|
|
+pmns=$tmp/root
|
|
+pmda=$PCP_PMDAS_DIR/sockets/pmda_sockets.$DSO_SUFFIX,sockets_init
|
|
+
|
|
+for f in `ls -1 sockets/*.txt | LC_COLLATE=POSIX sort`; do
|
|
echo === testing $f ===
|
|
+ $sudo rm -f $PCP_VAR_DIR/config/pmda/$qadomain.0 # reset indom
|
|
export PCPQA_PMDA_SOCKETS="$f"
|
|
- $sudo rm -f $PCP_VAR_DIR/config/pmda/$domain.0
|
|
- _run_valgrind pminfo -L -K clear -K add,154,$pmda -dfmt -n $pmns network.persocket
|
|
+ _run_valgrind pminfo -L -K clear -K add,$qadomain,$pmda -dfm -n $pmns network.persocket | _filter
|
|
done
|
|
|
|
# success, all done
|
|
diff --git a/qa/1634.out b/qa/1634.out
|
|
index e85a105ee..ebbdecf3c 100644
|
|
--- a/qa/1634.out
|
|
+++ b/qa/1634.out
|
|
@@ -2,13 +2,13 @@ QA output created by 1634
|
|
=== testing sockets/ss_noemitauOH.txt ===
|
|
=== std out ===
|
|
|
|
-network.persocket.filter PMID: 154.0.0 [filter for sockets of interest]
|
|
+network.persocket.filter PMID: 251.0.0
|
|
Data Type: string InDom: PM_INDOM_NULL 0xffffffff
|
|
Semantics: discrete Units: none
|
|
value "state connected"
|
|
|
|
-network.persocket.netid PMID: 154.1.0 [socket protocol identifier]
|
|
- Data Type: string InDom: 154.0 0x26800000
|
|
+network.persocket.netid PMID: 251.1.0
|
|
+ Data Type: string InDom: 251.0 0x3ec00000
|
|
Semantics: discrete Units: none
|
|
inst [0 or "udp/10.0.0.10:49693"] value "udp"
|
|
inst [1 or "udp/192.168.1.169:58624"] value "udp"
|
|
@@ -102,8 +102,8 @@ network.persocket.netid PMID: 154.1.0 [socket protocol identifier]
|
|
inst [89 or "tcp6/[::]:44323"] value "tcp"
|
|
inst [90 or "tcp/[::ffff:127.0.0.1]:3000"] value "tcp"
|
|
|
|
-network.persocket.state PMID: 154.1.1 [socket state as a string, commonly UNCONN, ESTAB, TIME-WAIT]
|
|
- Data Type: string InDom: 154.0 0x26800000
|
|
+network.persocket.state PMID: 251.1.1
|
|
+ Data Type: string InDom: 251.0 0x3ec00000
|
|
Semantics: discrete Units: none
|
|
inst [0 or "udp/10.0.0.10:49693"] value "ESTAB"
|
|
inst [1 or "udp/192.168.1.169:58624"] value "UNCONN"
|
|
@@ -197,8 +197,8 @@ network.persocket.state PMID: 154.1.1 [socket state as a string, commonly UNCONN
|
|
inst [89 or "tcp6/[::]:44323"] value "LISTEN"
|
|
inst [90 or "tcp/[::ffff:127.0.0.1]:3000"] value "ESTAB"
|
|
|
|
-network.persocket.recvq PMID: 154.1.2 [length of the receive queue]
|
|
- Data Type: 32-bit int InDom: 154.0 0x26800000
|
|
+network.persocket.recvq PMID: 251.1.2
|
|
+ Data Type: 32-bit int InDom: 251.0 0x3ec00000
|
|
Semantics: instant Units: count
|
|
inst [0 or "udp/10.0.0.10:49693"] value 0
|
|
inst [1 or "udp/192.168.1.169:58624"] value 0
|
|
@@ -292,8 +292,8 @@ network.persocket.recvq PMID: 154.1.2 [length of the receive queue]
|
|
inst [89 or "tcp6/[::]:44323"] value 128
|
|
inst [90 or "tcp/[::ffff:127.0.0.1]:3000"] value 0
|
|
|
|
-network.persocket.sendq PMID: 154.1.3 [length of the send queue]
|
|
- Data Type: 32-bit int InDom: 154.0 0x26800000
|
|
+network.persocket.sendq PMID: 251.1.3
|
|
+ Data Type: 32-bit int InDom: 251.0 0x3ec00000
|
|
Semantics: instant Units: count
|
|
inst [0 or "udp/10.0.0.10:49693"] value 0
|
|
inst [1 or "udp/192.168.1.169:58624"] value 0
|
|
@@ -387,8 +387,8 @@ network.persocket.sendq PMID: 154.1.3 [length of the send queue]
|
|
inst [89 or "tcp6/[::]:44323"] value 0
|
|
inst [90 or "tcp/[::ffff:127.0.0.1]:3000"] value 0
|
|
|
|
-network.persocket.src PMID: 154.1.4 [local (source) IP address (IPv4 or IPv6) and port]
|
|
- Data Type: string InDom: 154.0 0x26800000
|
|
+network.persocket.src PMID: 251.1.4
|
|
+ Data Type: string InDom: 251.0 0x3ec00000
|
|
Semantics: discrete Units: none
|
|
inst [0 or "udp/10.0.0.10:49693"] value "10.0.0.10:49693"
|
|
inst [1 or "udp/192.168.1.169:58624"] value "192.168.1.169:58624"
|
|
@@ -482,8 +482,8 @@ network.persocket.src PMID: 154.1.4 [local (source) IP address (IPv4 or IPv6) an
|
|
inst [89 or "tcp6/[::]:44323"] value "[::]:44323"
|
|
inst [90 or "tcp/[::ffff:127.0.0.1]:3000"] value "[::ffff:127.0.0.1]:3000"
|
|
|
|
-network.persocket.dst PMID: 154.1.5 [destination IP address (IPv4 or IPv6) and port]
|
|
- Data Type: string InDom: 154.0 0x26800000
|
|
+network.persocket.dst PMID: 251.1.5
|
|
+ Data Type: string InDom: 251.0 0x3ec00000
|
|
Semantics: discrete Units: none
|
|
inst [0 or "udp/10.0.0.10:49693"] value "74.125.68.189:443"
|
|
inst [1 or "udp/192.168.1.169:58624"] value "0.0.0.0:*"
|
|
@@ -577,8 +577,8 @@ network.persocket.dst PMID: 154.1.5 [destination IP address (IPv4 or IPv6) and p
|
|
inst [89 or "tcp6/[::]:44323"] value "[::]:*"
|
|
inst [90 or "tcp/[::ffff:127.0.0.1]:3000"] value "[::ffff:127.0.0.1]:38136"
|
|
|
|
-network.persocket.inode PMID: 154.1.6 [the socket's inode number in VFS]
|
|
- Data Type: 64-bit int InDom: 154.0 0x26800000
|
|
+network.persocket.inode PMID: 251.1.6
|
|
+ Data Type: 64-bit int InDom: 251.0 0x3ec00000
|
|
Semantics: discrete Units: none
|
|
inst [0 or "udp/10.0.0.10:49693"] value 28605309
|
|
inst [1 or "udp/192.168.1.169:58624"] value 19693830
|
|
@@ -672,8 +672,8 @@ network.persocket.inode PMID: 154.1.6 [the socket's inode number in VFS]
|
|
inst [89 or "tcp6/[::]:44323"] value 28529158
|
|
inst [90 or "tcp/[::ffff:127.0.0.1]:3000"] value 28540274
|
|
|
|
-network.persocket.uid PMID: 154.1.8 [the user id the socket belongs to]
|
|
- Data Type: 32-bit unsigned int InDom: 154.0 0x26800000
|
|
+network.persocket.uid PMID: 251.1.8
|
|
+ Data Type: 32-bit unsigned int InDom: 251.0 0x3ec00000
|
|
Semantics: discrete Units: none
|
|
inst [0 or "udp/10.0.0.10:49693"] value 1024
|
|
inst [1 or "udp/192.168.1.169:58624"] value 1024
|
|
@@ -767,8 +767,8 @@ network.persocket.uid PMID: 154.1.8 [the user id the socket belongs to]
|
|
inst [89 or "tcp6/[::]:44323"] value 0
|
|
inst [90 or "tcp/[::ffff:127.0.0.1]:3000"] value 378
|
|
|
|
-network.persocket.sk PMID: 154.1.9 [uuid cookie of the socket]
|
|
- Data Type: 64-bit unsigned int InDom: 154.0 0x26800000
|
|
+network.persocket.sk PMID: 251.1.9
|
|
+ Data Type: 64-bit unsigned int InDom: 251.0 0x3ec00000
|
|
Semantics: discrete Units: none
|
|
inst [0 or "udp/10.0.0.10:49693"] value 976
|
|
inst [1 or "udp/192.168.1.169:58624"] value 3154
|
|
@@ -862,8 +862,8 @@ network.persocket.sk PMID: 154.1.9 [uuid cookie of the socket]
|
|
inst [89 or "tcp6/[::]:44323"] value 973
|
|
inst [90 or "tcp/[::ffff:127.0.0.1]:3000"] value 9745
|
|
|
|
-network.persocket.cgroup PMID: 154.1.10 [cgroup v2 pathname]
|
|
- Data Type: string InDom: 154.0 0x26800000
|
|
+network.persocket.cgroup PMID: 251.1.10
|
|
+ Data Type: string InDom: 251.0 0x3ec00000
|
|
Semantics: discrete Units: none
|
|
inst [0 or "udp/10.0.0.10:49693"] value "/user.slice/user-1024.slice/session-2.scope"
|
|
inst [1 or "udp/192.168.1.169:58624"] value "/user.slice/user-1024.slice/session-2.scope"
|
|
@@ -957,8 +957,8 @@ network.persocket.cgroup PMID: 154.1.10 [cgroup v2 pathname]
|
|
inst [89 or "tcp6/[::]:44323"] value "/system.slice/pmproxy.service"
|
|
inst [90 or "tcp/[::ffff:127.0.0.1]:3000"] value "/system.slice/grafana-server.service"
|
|
|
|
-network.persocket.v6only PMID: 154.1.11 [boolean value set to one if the socket is IPv6, 0 otherwise]
|
|
- Data Type: 32-bit int InDom: 154.0 0x26800000
|
|
+network.persocket.v6only PMID: 251.1.11
|
|
+ Data Type: 32-bit int InDom: 251.0 0x3ec00000
|
|
Semantics: discrete Units: none
|
|
inst [0 or "udp/10.0.0.10:49693"] value 0
|
|
inst [1 or "udp/192.168.1.169:58624"] value 0
|
|
@@ -1052,8 +1052,8 @@ network.persocket.v6only PMID: 154.1.11 [boolean value set to one if the socket
|
|
inst [89 or "tcp6/[::]:44323"] value 1
|
|
inst [90 or "tcp/[::ffff:127.0.0.1]:3000"] value 0
|
|
|
|
-network.persocket.ts PMID: 154.1.13 [boolean value set to one if the timestamp option is set]
|
|
- Data Type: 32-bit int InDom: 154.0 0x26800000
|
|
+network.persocket.ts PMID: 251.1.13
|
|
+ Data Type: 32-bit int InDom: 251.0 0x3ec00000
|
|
Semantics: discrete Units: none
|
|
inst [0 or "udp/10.0.0.10:49693"] value 0
|
|
inst [1 or "udp/192.168.1.169:58624"] value 0
|
|
@@ -1147,8 +1147,8 @@ network.persocket.ts PMID: 154.1.13 [boolean value set to one if the timestamp o
|
|
inst [89 or "tcp6/[::]:44323"] value 0
|
|
inst [90 or "tcp/[::ffff:127.0.0.1]:3000"] value 1
|
|
|
|
-network.persocket.sack PMID: 154.1.14 [boolean value set to one if the sack option is set]
|
|
- Data Type: 32-bit int InDom: 154.0 0x26800000
|
|
+network.persocket.sack PMID: 251.1.14
|
|
+ Data Type: 32-bit int InDom: 251.0 0x3ec00000
|
|
Semantics: discrete Units: none
|
|
inst [0 or "udp/10.0.0.10:49693"] value 0
|
|
inst [1 or "udp/192.168.1.169:58624"] value 0
|
|
@@ -1242,8 +1242,8 @@ network.persocket.sack PMID: 154.1.14 [boolean value set to one if the sack opti
|
|
inst [89 or "tcp6/[::]:44323"] value 0
|
|
inst [90 or "tcp/[::ffff:127.0.0.1]:3000"] value 1
|
|
|
|
-network.persocket.cubic PMID: 154.1.15 [boolean value set to one if cubic congestion control is enabled]
|
|
- Data Type: 32-bit int InDom: 154.0 0x26800000
|
|
+network.persocket.cubic PMID: 251.1.15
|
|
+ Data Type: 32-bit int InDom: 251.0 0x3ec00000
|
|
Semantics: discrete Units: none
|
|
inst [0 or "udp/10.0.0.10:49693"] value 0
|
|
inst [1 or "udp/192.168.1.169:58624"] value 0
|
|
@@ -1337,8 +1337,8 @@ network.persocket.cubic PMID: 154.1.15 [boolean value set to one if cubic conges
|
|
inst [89 or "tcp6/[::]:44323"] value 1
|
|
inst [90 or "tcp/[::ffff:127.0.0.1]:3000"] value 1
|
|
|
|
-network.persocket.ato PMID: 154.1.16 [ack timeout when using delayed ack mode]
|
|
- Data Type: double InDom: 154.0 0x26800000
|
|
+network.persocket.ato PMID: 251.1.16
|
|
+ Data Type: double InDom: 251.0 0x3ec00000
|
|
Semantics: discrete Units: millisec
|
|
inst [0 or "udp/10.0.0.10:49693"] value 0
|
|
inst [1 or "udp/192.168.1.169:58624"] value 0
|
|
@@ -1432,8 +1432,8 @@ network.persocket.ato PMID: 154.1.16 [ack timeout when using delayed ack mode]
|
|
inst [89 or "tcp6/[::]:44323"] value 0
|
|
inst [90 or "tcp/[::ffff:127.0.0.1]:3000"] value 40
|
|
|
|
-network.persocket.mss PMID: 154.1.17 [maximum segment size]
|
|
- Data Type: 32-bit unsigned int InDom: 154.0 0x26800000
|
|
+network.persocket.mss PMID: 251.1.17
|
|
+ Data Type: 32-bit unsigned int InDom: 251.0 0x3ec00000
|
|
Semantics: discrete Units: byte
|
|
inst [0 or "udp/10.0.0.10:49693"] value 0
|
|
inst [1 or "udp/192.168.1.169:58624"] value 0
|
|
@@ -1527,8 +1527,8 @@ network.persocket.mss PMID: 154.1.17 [maximum segment size]
|
|
inst [89 or "tcp6/[::]:44323"] value 0
|
|
inst [90 or "tcp/[::ffff:127.0.0.1]:3000"] value 32768
|
|
|
|
-network.persocket.pmtu PMID: 154.1.18 [path maximum transmission unit]
|
|
- Data Type: 32-bit unsigned int InDom: 154.0 0x26800000
|
|
+network.persocket.pmtu PMID: 251.1.18
|
|
+ Data Type: 32-bit unsigned int InDom: 251.0 0x3ec00000
|
|
Semantics: discrete Units: byte
|
|
inst [0 or "udp/10.0.0.10:49693"] value 0
|
|
inst [1 or "udp/192.168.1.169:58624"] value 0
|
|
@@ -1622,8 +1622,8 @@ network.persocket.pmtu PMID: 154.1.18 [path maximum transmission unit]
|
|
inst [89 or "tcp6/[::]:44323"] value 0
|
|
inst [90 or "tcp/[::ffff:127.0.0.1]:3000"] value 65535
|
|
|
|
-network.persocket.rcvmss PMID: 154.1.19 [receive maximum transmission units]
|
|
- Data Type: 32-bit unsigned int InDom: 154.0 0x26800000
|
|
+network.persocket.rcvmss PMID: 251.1.19
|
|
+ Data Type: 32-bit unsigned int InDom: 251.0 0x3ec00000
|
|
Semantics: discrete Units: byte
|
|
inst [0 or "udp/10.0.0.10:49693"] value 0
|
|
inst [1 or "udp/192.168.1.169:58624"] value 0
|
|
@@ -1717,8 +1717,8 @@ network.persocket.rcvmss PMID: 154.1.19 [receive maximum transmission units]
|
|
inst [89 or "tcp6/[::]:44323"] value 0
|
|
inst [90 or "tcp/[::ffff:127.0.0.1]:3000"] value 536
|
|
|
|
-network.persocket.advmss PMID: 154.1.20 [advertised maximum segment size]
|
|
- Data Type: 32-bit unsigned int InDom: 154.0 0x26800000
|
|
+network.persocket.advmss PMID: 251.1.20
|
|
+ Data Type: 32-bit unsigned int InDom: 251.0 0x3ec00000
|
|
Semantics: discrete Units: byte
|
|
inst [0 or "udp/10.0.0.10:49693"] value 0
|
|
inst [1 or "udp/192.168.1.169:58624"] value 0
|
|
@@ -1812,8 +1812,8 @@ network.persocket.advmss PMID: 154.1.20 [advertised maximum segment size]
|
|
inst [89 or "tcp6/[::]:44323"] value 0
|
|
inst [90 or "tcp/[::ffff:127.0.0.1]:3000"] value 65483
|
|
|
|
-network.persocket.cwnd PMID: 154.1.21 [congestion window size]
|
|
- Data Type: 32-bit unsigned int InDom: 154.0 0x26800000
|
|
+network.persocket.cwnd PMID: 251.1.21
|
|
+ Data Type: 32-bit unsigned int InDom: 251.0 0x3ec00000
|
|
Semantics: discrete Units: count
|
|
inst [0 or "udp/10.0.0.10:49693"] value 0
|
|
inst [1 or "udp/192.168.1.169:58624"] value 0
|
|
@@ -1907,8 +1907,8 @@ network.persocket.cwnd PMID: 154.1.21 [congestion window size]
|
|
inst [89 or "tcp6/[::]:44323"] value 10
|
|
inst [90 or "tcp/[::ffff:127.0.0.1]:3000"] value 10
|
|
|
|
-network.persocket.ssthresh PMID: 154.1.22 [tcp congestion window slow start threshold]
|
|
- Data Type: 32-bit unsigned int InDom: 154.0 0x26800000
|
|
+network.persocket.ssthresh PMID: 251.1.22
|
|
+ Data Type: 32-bit unsigned int InDom: 251.0 0x3ec00000
|
|
Semantics: discrete Units: count
|
|
inst [0 or "udp/10.0.0.10:49693"] value 0
|
|
inst [1 or "udp/192.168.1.169:58624"] value 0
|
|
@@ -2002,8 +2002,8 @@ network.persocket.ssthresh PMID: 154.1.22 [tcp congestion window slow start thre
|
|
inst [89 or "tcp6/[::]:44323"] value 0
|
|
inst [90 or "tcp/[::ffff:127.0.0.1]:3000"] value 0
|
|
|
|
-network.persocket.bytes_sent PMID: 154.1.23 [count of bytes sent using the socket]
|
|
- Data Type: 64-bit unsigned int InDom: 154.0 0x26800000
|
|
+network.persocket.bytes_sent PMID: 251.1.23
|
|
+ Data Type: 64-bit unsigned int InDom: 251.0 0x3ec00000
|
|
Semantics: counter Units: byte
|
|
inst [0 or "udp/10.0.0.10:49693"] value 0
|
|
inst [1 or "udp/192.168.1.169:58624"] value 0
|
|
@@ -2097,8 +2097,8 @@ network.persocket.bytes_sent PMID: 154.1.23 [count of bytes sent using the socke
|
|
inst [89 or "tcp6/[::]:44323"] value 0
|
|
inst [90 or "tcp/[::ffff:127.0.0.1]:3000"] value 1955159
|
|
|
|
-network.persocket.bytes_retrans PMID: 154.1.24 [count of bytes retransmitted using the socket]
|
|
- Data Type: 64-bit unsigned int InDom: 154.0 0x26800000
|
|
+network.persocket.bytes_retrans PMID: 251.1.24
|
|
+ Data Type: 64-bit unsigned int InDom: 251.0 0x3ec00000
|
|
Semantics: counter Units: byte
|
|
inst [0 or "udp/10.0.0.10:49693"] value 0
|
|
inst [1 or "udp/192.168.1.169:58624"] value 0
|
|
@@ -2192,8 +2192,8 @@ network.persocket.bytes_retrans PMID: 154.1.24 [count of bytes retransmitted usi
|
|
inst [89 or "tcp6/[::]:44323"] value 0
|
|
inst [90 or "tcp/[::ffff:127.0.0.1]:3000"] value 0
|
|
|
|
-network.persocket.bytes_acked PMID: 154.1.25 [count of bytes acked using the socket]
|
|
- Data Type: 64-bit unsigned int InDom: 154.0 0x26800000
|
|
+network.persocket.bytes_acked PMID: 251.1.25
|
|
+ Data Type: 64-bit unsigned int InDom: 251.0 0x3ec00000
|
|
Semantics: counter Units: byte
|
|
inst [0 or "udp/10.0.0.10:49693"] value 0
|
|
inst [1 or "udp/192.168.1.169:58624"] value 0
|
|
@@ -2287,8 +2287,8 @@ network.persocket.bytes_acked PMID: 154.1.25 [count of bytes acked using the soc
|
|
inst [89 or "tcp6/[::]:44323"] value 0
|
|
inst [90 or "tcp/[::ffff:127.0.0.1]:3000"] value 1955159
|
|
|
|
-network.persocket.bytes_received PMID: 154.1.36 [count of bytes received using the socket]
|
|
- Data Type: 64-bit unsigned int InDom: 154.0 0x26800000
|
|
+network.persocket.bytes_received PMID: 251.1.36
|
|
+ Data Type: 64-bit unsigned int InDom: 251.0 0x3ec00000
|
|
Semantics: counter Units: byte
|
|
inst [0 or "udp/10.0.0.10:49693"] value 0
|
|
inst [1 or "udp/192.168.1.169:58624"] value 0
|
|
@@ -2382,8 +2382,8 @@ network.persocket.bytes_received PMID: 154.1.36 [count of bytes received using t
|
|
inst [89 or "tcp6/[::]:44323"] value 0
|
|
inst [90 or "tcp/[::ffff:127.0.0.1]:3000"] value 69464
|
|
|
|
-network.persocket.segs_out PMID: 154.1.37 [count of segments sent out using the socket]
|
|
- Data Type: 32-bit unsigned int InDom: 154.0 0x26800000
|
|
+network.persocket.segs_out PMID: 251.1.37
|
|
+ Data Type: 32-bit unsigned int InDom: 251.0 0x3ec00000
|
|
Semantics: instant Units: count
|
|
inst [0 or "udp/10.0.0.10:49693"] value 0
|
|
inst [1 or "udp/192.168.1.169:58624"] value 0
|
|
@@ -2477,8 +2477,8 @@ network.persocket.segs_out PMID: 154.1.37 [count of segments sent out using the
|
|
inst [89 or "tcp6/[::]:44323"] value 0
|
|
inst [90 or "tcp/[::ffff:127.0.0.1]:3000"] value 918
|
|
|
|
-network.persocket.segs_in PMID: 154.1.38 [count of segments received using the socket]
|
|
- Data Type: 32-bit unsigned int InDom: 154.0 0x26800000
|
|
+network.persocket.segs_in PMID: 251.1.38
|
|
+ Data Type: 32-bit unsigned int InDom: 251.0 0x3ec00000
|
|
Semantics: instant Units: count
|
|
inst [0 or "udp/10.0.0.10:49693"] value 0
|
|
inst [1 or "udp/192.168.1.169:58624"] value 0
|
|
@@ -2572,8 +2572,8 @@ network.persocket.segs_in PMID: 154.1.38 [count of segments received using the s
|
|
inst [89 or "tcp6/[::]:44323"] value 0
|
|
inst [90 or "tcp/[::ffff:127.0.0.1]:3000"] value 1373
|
|
|
|
-network.persocket.data_segs_out PMID: 154.1.39 [count of data segments sent out using the socket]
|
|
- Data Type: 32-bit unsigned int InDom: 154.0 0x26800000
|
|
+network.persocket.data_segs_out PMID: 251.1.39
|
|
+ Data Type: 32-bit unsigned int InDom: 251.0 0x3ec00000
|
|
Semantics: instant Units: count
|
|
inst [0 or "udp/10.0.0.10:49693"] value 0
|
|
inst [1 or "udp/192.168.1.169:58624"] value 0
|
|
@@ -2667,8 +2667,8 @@ network.persocket.data_segs_out PMID: 154.1.39 [count of data segments sent out
|
|
inst [89 or "tcp6/[::]:44323"] value 0
|
|
inst [90 or "tcp/[::ffff:127.0.0.1]:3000"] value 914
|
|
|
|
-network.persocket.data_segs_in PMID: 154.1.40 [count of data segments received using the socket]
|
|
- Data Type: 32-bit unsigned int InDom: 154.0 0x26800000
|
|
+network.persocket.data_segs_in PMID: 251.1.40
|
|
+ Data Type: 32-bit unsigned int InDom: 251.0 0x3ec00000
|
|
Semantics: instant Units: count
|
|
inst [0 or "udp/10.0.0.10:49693"] value 0
|
|
inst [1 or "udp/192.168.1.169:58624"] value 0
|
|
@@ -2762,8 +2762,8 @@ network.persocket.data_segs_in PMID: 154.1.40 [count of data segments received u
|
|
inst [89 or "tcp6/[::]:44323"] value 0
|
|
inst [90 or "tcp/[::ffff:127.0.0.1]:3000"] value 457
|
|
|
|
-network.persocket.send PMID: 154.1.41 [egress bps]
|
|
- Data Type: double InDom: 154.0 0x26800000
|
|
+network.persocket.send PMID: 251.1.41
|
|
+ Data Type: double InDom: 251.0 0x3ec00000
|
|
Semantics: instant Units: count
|
|
inst [0 or "udp/10.0.0.10:49693"] value 0
|
|
inst [1 or "udp/192.168.1.169:58624"] value 0
|
|
@@ -2857,8 +2857,8 @@ network.persocket.send PMID: 154.1.41 [egress bps]
|
|
inst [89 or "tcp6/[::]:44323"] value 0
|
|
inst [90 or "tcp/[::ffff:127.0.0.1]:3000"] value 58254222222
|
|
|
|
-network.persocket.lastsnd PMID: 154.1.42 [how long time since the last packet sent in milliseconds]
|
|
- Data Type: 32-bit unsigned int InDom: 154.0 0x26800000
|
|
+network.persocket.lastsnd PMID: 251.1.42
|
|
+ Data Type: 32-bit unsigned int InDom: 251.0 0x3ec00000
|
|
Semantics: instant Units: millisec
|
|
inst [0 or "udp/10.0.0.10:49693"] value 0
|
|
inst [1 or "udp/192.168.1.169:58624"] value 0
|
|
@@ -2952,8 +2952,8 @@ network.persocket.lastsnd PMID: 154.1.42 [how long time since the last packet se
|
|
inst [89 or "tcp6/[::]:44323"] value 0
|
|
inst [90 or "tcp/[::ffff:127.0.0.1]:3000"] value 3495
|
|
|
|
-network.persocket.lastrcv PMID: 154.1.43 [how long time since the last packet received in milliseconds]
|
|
- Data Type: 32-bit unsigned int InDom: 154.0 0x26800000
|
|
+network.persocket.lastrcv PMID: 251.1.43
|
|
+ Data Type: 32-bit unsigned int InDom: 251.0 0x3ec00000
|
|
Semantics: instant Units: millisec
|
|
inst [0 or "udp/10.0.0.10:49693"] value 0
|
|
inst [1 or "udp/192.168.1.169:58624"] value 0
|
|
@@ -3047,8 +3047,8 @@ network.persocket.lastrcv PMID: 154.1.43 [how long time since the last packet re
|
|
inst [89 or "tcp6/[::]:44323"] value 0
|
|
inst [90 or "tcp/[::ffff:127.0.0.1]:3000"] value 3499
|
|
|
|
-network.persocket.lastack PMID: 154.1.44 [how long time since the last ack received in milliseconds]
|
|
- Data Type: 32-bit unsigned int InDom: 154.0 0x26800000
|
|
+network.persocket.lastack PMID: 251.1.44
|
|
+ Data Type: 32-bit unsigned int InDom: 251.0 0x3ec00000
|
|
Semantics: instant Units: millisec
|
|
inst [0 or "udp/10.0.0.10:49693"] value 0
|
|
inst [1 or "udp/192.168.1.169:58624"] value 0
|
|
@@ -3142,8 +3142,8 @@ network.persocket.lastack PMID: 154.1.44 [how long time since the last ack recei
|
|
inst [89 or "tcp6/[::]:44323"] value 0
|
|
inst [90 or "tcp/[::ffff:127.0.0.1]:3000"] value 3495
|
|
|
|
-network.persocket.pacing_rate PMID: 154.1.45 [the current pacing rate of the socket]
|
|
- Data Type: double InDom: 154.0 0x26800000
|
|
+network.persocket.pacing_rate PMID: 251.1.45
|
|
+ Data Type: double InDom: 251.0 0x3ec00000
|
|
Semantics: instant Units: byte / sec
|
|
inst [0 or "udp/10.0.0.10:49693"] value 0
|
|
inst [1 or "udp/192.168.1.169:58624"] value 0
|
|
@@ -3237,8 +3237,8 @@ network.persocket.pacing_rate PMID: 154.1.45 [the current pacing rate of the soc
|
|
inst [89 or "tcp6/[::]:44323"] value 0
|
|
inst [90 or "tcp/[::ffff:127.0.0.1]:3000"] value 116185706368
|
|
|
|
-network.persocket.delivery_rate PMID: 154.1.46 [delivery bandwidth estimate excluding idle periods]
|
|
- Data Type: double InDom: 154.0 0x26800000
|
|
+network.persocket.delivery_rate PMID: 251.1.46
|
|
+ Data Type: double InDom: 251.0 0x3ec00000
|
|
Semantics: instant Units: byte / sec
|
|
inst [0 or "udp/10.0.0.10:49693"] value 0
|
|
inst [1 or "udp/192.168.1.169:58624"] value 0
|
|
@@ -3332,8 +3332,8 @@ network.persocket.delivery_rate PMID: 154.1.46 [delivery bandwidth estimate excl
|
|
inst [89 or "tcp6/[::]:44323"] value 0
|
|
inst [90 or "tcp/[::ffff:127.0.0.1]:3000"] value 65536000000
|
|
|
|
-network.persocket.delivered PMID: 154.1.47 []
|
|
- Data Type: 32-bit unsigned int InDom: 154.0 0x26800000
|
|
+network.persocket.delivered PMID: 251.1.47
|
|
+ Data Type: 32-bit unsigned int InDom: 251.0 0x3ec00000
|
|
Semantics: counter Units: count
|
|
inst [0 or "udp/10.0.0.10:49693"] value 0
|
|
inst [1 or "udp/192.168.1.169:58624"] value 0
|
|
@@ -3427,8 +3427,8 @@ network.persocket.delivered PMID: 154.1.47 []
|
|
inst [89 or "tcp6/[::]:44323"] value 0
|
|
inst [90 or "tcp/[::ffff:127.0.0.1]:3000"] value 915
|
|
|
|
-network.persocket.app_limited PMID: 154.1.48 [TCP flows are limited with application-limiting]
|
|
- Data Type: 32-bit int InDom: 154.0 0x26800000
|
|
+network.persocket.app_limited PMID: 251.1.48
|
|
+ Data Type: 32-bit int InDom: 251.0 0x3ec00000
|
|
Semantics: discrete Units: none
|
|
inst [0 or "udp/10.0.0.10:49693"] value 0
|
|
inst [1 or "udp/192.168.1.169:58624"] value 0
|
|
@@ -3522,8 +3522,8 @@ network.persocket.app_limited PMID: 154.1.48 [TCP flows are limited with applica
|
|
inst [89 or "tcp6/[::]:44323"] value 0
|
|
inst [90 or "tcp/[::ffff:127.0.0.1]:3000"] value 1
|
|
|
|
-network.persocket.reord_seen PMID: 154.1.49 []
|
|
- Data Type: 32-bit int InDom: 154.0 0x26800000
|
|
+network.persocket.reord_seen PMID: 251.1.49
|
|
+ Data Type: 32-bit int InDom: 251.0 0x3ec00000
|
|
Semantics: discrete Units: count
|
|
inst [0 or "udp/10.0.0.10:49693"] value 0
|
|
inst [1 or "udp/192.168.1.169:58624"] value 0
|
|
@@ -3617,8 +3617,8 @@ network.persocket.reord_seen PMID: 154.1.49 []
|
|
inst [89 or "tcp6/[::]:44323"] value 0
|
|
inst [90 or "tcp/[::ffff:127.0.0.1]:3000"] value 34
|
|
|
|
-network.persocket.busy PMID: 154.1.50 [TCP connection is busy??]
|
|
- Data Type: 64-bit unsigned int InDom: 154.0 0x26800000
|
|
+network.persocket.busy PMID: 251.1.50
|
|
+ Data Type: 64-bit unsigned int InDom: 251.0 0x3ec00000
|
|
Semantics: instant Units: none
|
|
inst [0 or "udp/10.0.0.10:49693"] value 0
|
|
inst [1 or "udp/192.168.1.169:58624"] value 0
|
|
@@ -3712,8 +3712,8 @@ network.persocket.busy PMID: 154.1.50 [TCP connection is busy??]
|
|
inst [89 or "tcp6/[::]:44323"] value 0
|
|
inst [90 or "tcp/[::ffff:127.0.0.1]:3000"] value 34
|
|
|
|
-network.persocket.dsack_dups PMID: 154.1.51 [duplicate selective acknowledgements]
|
|
- Data Type: 32-bit unsigned int InDom: 154.0 0x26800000
|
|
+network.persocket.dsack_dups PMID: 251.1.51
|
|
+ Data Type: 32-bit unsigned int InDom: 251.0 0x3ec00000
|
|
Semantics: instant Units: count
|
|
inst [0 or "udp/10.0.0.10:49693"] value 0
|
|
inst [1 or "udp/192.168.1.169:58624"] value 0
|
|
@@ -3807,8 +3807,8 @@ network.persocket.dsack_dups PMID: 154.1.51 [duplicate selective acknowledgement
|
|
inst [89 or "tcp6/[::]:44323"] value 0
|
|
inst [90 or "tcp/[::ffff:127.0.0.1]:3000"] value 0
|
|
|
|
-network.persocket.rcv_rtt PMID: 154.1.52 [receive round trip time]
|
|
- Data Type: double InDom: 154.0 0x26800000
|
|
+network.persocket.rcv_rtt PMID: 251.1.52
|
|
+ Data Type: double InDom: 251.0 0x3ec00000
|
|
Semantics: instant Units: millisec
|
|
inst [0 or "udp/10.0.0.10:49693"] value 0
|
|
inst [1 or "udp/192.168.1.169:58624"] value 0
|
|
@@ -3902,8 +3902,8 @@ network.persocket.rcv_rtt PMID: 154.1.52 [receive round trip time]
|
|
inst [89 or "tcp6/[::]:44323"] value 0
|
|
inst [90 or "tcp/[::ffff:127.0.0.1]:3000"] value 6115.7
|
|
|
|
-network.persocket.rcv_space PMID: 154.1.53 [TCP internal auto tuning socket receive buffer size]
|
|
- Data Type: 32-bit int InDom: 154.0 0x26800000
|
|
+network.persocket.rcv_space PMID: 251.1.53
|
|
+ Data Type: 32-bit int InDom: 251.0 0x3ec00000
|
|
Semantics: discrete Units: byte
|
|
inst [0 or "udp/10.0.0.10:49693"] value 0
|
|
inst [1 or "udp/192.168.1.169:58624"] value 0
|
|
@@ -3997,8 +3997,8 @@ network.persocket.rcv_space PMID: 154.1.53 [TCP internal auto tuning socket rece
|
|
inst [89 or "tcp6/[::]:44323"] value 0
|
|
inst [90 or "tcp/[::ffff:127.0.0.1]:3000"] value 65664
|
|
|
|
-network.persocket.rcv_ssthresh PMID: 154.1.54 [TCP congestion window slow start threshold]
|
|
- Data Type: 32-bit int InDom: 154.0 0x26800000
|
|
+network.persocket.rcv_ssthresh PMID: 251.1.54
|
|
+ Data Type: 32-bit int InDom: 251.0 0x3ec00000
|
|
Semantics: discrete Units: count
|
|
inst [0 or "udp/10.0.0.10:49693"] value 0
|
|
inst [1 or "udp/192.168.1.169:58624"] value 0
|
|
@@ -4092,8 +4092,8 @@ network.persocket.rcv_ssthresh PMID: 154.1.54 [TCP congestion window slow start
|
|
inst [89 or "tcp6/[::]:44323"] value 0
|
|
inst [90 or "tcp/[::ffff:127.0.0.1]:3000"] value 92283
|
|
|
|
-network.persocket.minrtt PMID: 154.1.55 [minimum round trip time achieved in the socket]
|
|
- Data Type: double InDom: 154.0 0x26800000
|
|
+network.persocket.minrtt PMID: 251.1.55
|
|
+ Data Type: double InDom: 251.0 0x3ec00000
|
|
Semantics: discrete Units: millisec
|
|
inst [0 or "udp/10.0.0.10:49693"] value 0
|
|
inst [1 or "udp/192.168.1.169:58624"] value 0
|
|
@@ -4187,8 +4187,8 @@ network.persocket.minrtt PMID: 154.1.55 [minimum round trip time achieved in the
|
|
inst [89 or "tcp6/[::]:44323"] value 0
|
|
inst [90 or "tcp/[::ffff:127.0.0.1]:3000"] value 0.004
|
|
|
|
-network.persocket.notsent PMID: 154.1.56 [unsent data bytes that are still buffered]
|
|
- Data Type: 32-bit unsigned int InDom: 154.0 0x26800000
|
|
+network.persocket.notsent PMID: 251.1.56
|
|
+ Data Type: 32-bit unsigned int InDom: 251.0 0x3ec00000
|
|
Semantics: instant Units: byte
|
|
inst [0 or "udp/10.0.0.10:49693"] value 0
|
|
inst [1 or "udp/192.168.1.169:58624"] value 0
|
|
@@ -4282,8 +4282,8 @@ network.persocket.notsent PMID: 154.1.56 [unsent data bytes that are still buffe
|
|
inst [89 or "tcp6/[::]:44323"] value 0
|
|
inst [90 or "tcp/[::ffff:127.0.0.1]:3000"] value 0
|
|
|
|
-network.persocket.timer.str PMID: 154.1.70 [the 'timer:' string, as reported by ss]
|
|
- Data Type: string InDom: 154.0 0x26800000
|
|
+network.persocket.timer.str PMID: 251.1.70
|
|
+ Data Type: string InDom: 251.0 0x3ec00000
|
|
Semantics: discrete Units: none
|
|
inst [0 or "udp/10.0.0.10:49693"] value ""
|
|
inst [1 or "udp/192.168.1.169:58624"] value ""
|
|
@@ -4377,8 +4377,8 @@ network.persocket.timer.str PMID: 154.1.70 [the 'timer:' string, as reported by
|
|
inst [89 or "tcp6/[::]:44323"] value ""
|
|
inst [90 or "tcp/[::ffff:127.0.0.1]:3000"] value "keepalive,1.504ms,0"
|
|
|
|
-network.persocket.timer.name PMID: 154.1.71 [name of the socket timer.]
|
|
- Data Type: string InDom: 154.0 0x26800000
|
|
+network.persocket.timer.name PMID: 251.1.71
|
|
+ Data Type: string InDom: 251.0 0x3ec00000
|
|
Semantics: discrete Units: none
|
|
inst [0 or "udp/10.0.0.10:49693"] value ""
|
|
inst [1 or "udp/192.168.1.169:58624"] value ""
|
|
@@ -4472,8 +4472,8 @@ network.persocket.timer.name PMID: 154.1.71 [name of the socket timer.]
|
|
inst [89 or "tcp6/[::]:44323"] value ""
|
|
inst [90 or "tcp/[::ffff:127.0.0.1]:3000"] value "keepalive"
|
|
|
|
-network.persocket.timer.expire_str PMID: 154.1.72 [how long until the timer will expire]
|
|
- Data Type: string InDom: 154.0 0x26800000
|
|
+network.persocket.timer.expire_str PMID: 251.1.72
|
|
+ Data Type: string InDom: 251.0 0x3ec00000
|
|
Semantics: discrete Units: none
|
|
inst [0 or "udp/10.0.0.10:49693"] value ""
|
|
inst [1 or "udp/192.168.1.169:58624"] value ""
|
|
@@ -4567,8 +4567,8 @@ network.persocket.timer.expire_str PMID: 154.1.72 [how long until the timer will
|
|
inst [89 or "tcp6/[::]:44323"] value ""
|
|
inst [90 or "tcp/[::ffff:127.0.0.1]:3000"] value "1.504ms"
|
|
|
|
-network.persocket.timer.retrans PMID: 154.1.73 [how many times the retransmission occured in timer]
|
|
- Data Type: 32-bit unsigned int InDom: 154.0 0x26800000
|
|
+network.persocket.timer.retrans PMID: 251.1.73
|
|
+ Data Type: 32-bit unsigned int InDom: 251.0 0x3ec00000
|
|
Semantics: discrete Units: none
|
|
inst [0 or "udp/10.0.0.10:49693"] value 0
|
|
inst [1 or "udp/192.168.1.169:58624"] value 0
|
|
@@ -4662,8 +4662,8 @@ network.persocket.timer.retrans PMID: 154.1.73 [how many times the retransmissio
|
|
inst [89 or "tcp6/[::]:44323"] value 0
|
|
inst [90 or "tcp/[::ffff:127.0.0.1]:3000"] value 0
|
|
|
|
-network.persocket.skmem.str PMID: 154.1.80 [socket memory details, as a string]
|
|
- Data Type: string InDom: 154.0 0x26800000
|
|
+network.persocket.skmem.str PMID: 251.1.80
|
|
+ Data Type: string InDom: 251.0 0x3ec00000
|
|
Semantics: discrete Units: none
|
|
inst [0 or "udp/10.0.0.10:49693"] value "r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0"
|
|
inst [1 or "udp/192.168.1.169:58624"] value "r0,rb212992,t0,tb212992,f4096,w0,o0,bl0,d0"
|
|
@@ -4757,8 +4757,8 @@ network.persocket.skmem.str PMID: 154.1.80 [socket memory details, as a string]
|
|
inst [89 or "tcp6/[::]:44323"] value "r0,rb131072,t0,tb16384,f0,w0,o0,bl0,d0"
|
|
inst [90 or "tcp/[::ffff:127.0.0.1]:3000"] value "r0,rb2358342,t0,tb2626560,f0,w0,o0,bl0,d0"
|
|
|
|
-network.persocket.skmem.rmem_alloc PMID: 154.1.81 [memory allocated for receiving packet]
|
|
- Data Type: 32-bit unsigned int InDom: 154.0 0x26800000
|
|
+network.persocket.skmem.rmem_alloc PMID: 251.1.81
|
|
+ Data Type: 32-bit unsigned int InDom: 251.0 0x3ec00000
|
|
Semantics: instant Units: byte
|
|
inst [0 or "udp/10.0.0.10:49693"] value 0
|
|
inst [1 or "udp/192.168.1.169:58624"] value 0
|
|
@@ -4852,8 +4852,8 @@ network.persocket.skmem.rmem_alloc PMID: 154.1.81 [memory allocated for receivin
|
|
inst [89 or "tcp6/[::]:44323"] value 0
|
|
inst [90 or "tcp/[::ffff:127.0.0.1]:3000"] value 0
|
|
|
|
-network.persocket.skmem.wmem_alloc PMID: 154.1.82 [memory used for sending packet (which has been sent]
|
|
- Data Type: 32-bit unsigned int InDom: 154.0 0x26800000
|
|
+network.persocket.skmem.wmem_alloc PMID: 251.1.82
|
|
+ Data Type: 32-bit unsigned int InDom: 251.0 0x3ec00000
|
|
Semantics: instant Units: byte
|
|
inst [0 or "udp/10.0.0.10:49693"] value 0
|
|
inst [1 or "udp/192.168.1.169:58624"] value 0
|
|
@@ -4947,8 +4947,8 @@ network.persocket.skmem.wmem_alloc PMID: 154.1.82 [memory used for sending packe
|
|
inst [89 or "tcp6/[::]:44323"] value 0
|
|
inst [90 or "tcp/[::ffff:127.0.0.1]:3000"] value 0
|
|
|
|
-network.persocket.skmem.rcv_buf PMID: 154.1.83 [total memory that can be allocated to recv packets]
|
|
- Data Type: 32-bit unsigned int InDom: 154.0 0x26800000
|
|
+network.persocket.skmem.rcv_buf PMID: 251.1.83
|
|
+ Data Type: 32-bit unsigned int InDom: 251.0 0x3ec00000
|
|
Semantics: instant Units: byte
|
|
inst [0 or "udp/10.0.0.10:49693"] value 425984
|
|
inst [1 or "udp/192.168.1.169:58624"] value 212992
|
|
@@ -5042,8 +5042,8 @@ network.persocket.skmem.rcv_buf PMID: 154.1.83 [total memory that can be allocat
|
|
inst [89 or "tcp6/[::]:44323"] value 131072
|
|
inst [90 or "tcp/[::ffff:127.0.0.1]:3000"] value 2358342
|
|
|
|
-network.persocket.skmem.snd_buf PMID: 154.1.84 [total memory that can be allocated to send packets]
|
|
- Data Type: 32-bit unsigned int InDom: 154.0 0x26800000
|
|
+network.persocket.skmem.snd_buf PMID: 251.1.84
|
|
+ Data Type: 32-bit unsigned int InDom: 251.0 0x3ec00000
|
|
Semantics: instant Units: byte
|
|
inst [0 or "udp/10.0.0.10:49693"] value 58080
|
|
inst [1 or "udp/192.168.1.169:58624"] value 212992
|
|
@@ -5137,8 +5137,8 @@ network.persocket.skmem.snd_buf PMID: 154.1.84 [total memory that can be allocat
|
|
inst [89 or "tcp6/[::]:44323"] value 16384
|
|
inst [90 or "tcp/[::ffff:127.0.0.1]:3000"] value 2626560
|
|
|
|
-network.persocket.skmem.fwd_alloc PMID: 154.1.95 [cache memory allocated but not yet used for snd/rcv]
|
|
- Data Type: 32-bit unsigned int InDom: 154.0 0x26800000
|
|
+network.persocket.skmem.fwd_alloc PMID: 251.1.95
|
|
+ Data Type: 32-bit unsigned int InDom: 251.0 0x3ec00000
|
|
Semantics: instant Units: byte
|
|
inst [0 or "udp/10.0.0.10:49693"] value 4096
|
|
inst [1 or "udp/192.168.1.169:58624"] value 4096
|
|
@@ -5232,8 +5232,8 @@ network.persocket.skmem.fwd_alloc PMID: 154.1.95 [cache memory allocated but not
|
|
inst [89 or "tcp6/[::]:44323"] value 0
|
|
inst [90 or "tcp/[::ffff:127.0.0.1]:3000"] value 0
|
|
|
|
-network.persocket.skmem.wmem_queued PMID: 154.1.86 [memory allocated for sending packet]
|
|
- Data Type: 32-bit unsigned int InDom: 154.0 0x26800000
|
|
+network.persocket.skmem.wmem_queued PMID: 251.1.86
|
|
+ Data Type: 32-bit unsigned int InDom: 251.0 0x3ec00000
|
|
Semantics: instant Units: byte
|
|
inst [0 or "udp/10.0.0.10:49693"] value 0
|
|
inst [1 or "udp/192.168.1.169:58624"] value 0
|
|
@@ -5327,8 +5327,8 @@ network.persocket.skmem.wmem_queued PMID: 154.1.86 [memory allocated for sending
|
|
inst [89 or "tcp6/[::]:44323"] value 0
|
|
inst [90 or "tcp/[::ffff:127.0.0.1]:3000"] value 0
|
|
|
|
-network.persocket.skmem.ropt_mem PMID: 154.1.87 [memory used for storing socket options]
|
|
- Data Type: 32-bit unsigned int InDom: 154.0 0x26800000
|
|
+network.persocket.skmem.ropt_mem PMID: 251.1.87
|
|
+ Data Type: 32-bit unsigned int InDom: 251.0 0x3ec00000
|
|
Semantics: instant Units: byte
|
|
inst [0 or "udp/10.0.0.10:49693"] value 0
|
|
inst [1 or "udp/192.168.1.169:58624"] value 0
|
|
@@ -5422,8 +5422,8 @@ network.persocket.skmem.ropt_mem PMID: 154.1.87 [memory used for storing socket
|
|
inst [89 or "tcp6/[::]:44323"] value 0
|
|
inst [90 or "tcp/[::ffff:127.0.0.1]:3000"] value 0
|
|
|
|
-network.persocket.skmem.back_log PMID: 154.1.88 [memory used for the sk backlog queue]
|
|
- Data Type: 32-bit unsigned int InDom: 154.0 0x26800000
|
|
+network.persocket.skmem.back_log PMID: 251.1.88
|
|
+ Data Type: 32-bit unsigned int InDom: 251.0 0x3ec00000
|
|
Semantics: instant Units: byte
|
|
inst [0 or "udp/10.0.0.10:49693"] value 0
|
|
inst [1 or "udp/192.168.1.169:58624"] value 0
|
|
@@ -5517,8 +5517,8 @@ network.persocket.skmem.back_log PMID: 154.1.88 [memory used for the sk backlog
|
|
inst [89 or "tcp6/[::]:44323"] value 0
|
|
inst [90 or "tcp/[::ffff:127.0.0.1]:3000"] value 0
|
|
|
|
-network.persocket.skmem.sock_drop PMID: 154.1.89 [dropped packets before demultiplexed into socket]
|
|
- Data Type: 32-bit unsigned int InDom: 154.0 0x26800000
|
|
+network.persocket.skmem.sock_drop PMID: 251.1.89
|
|
+ Data Type: 32-bit unsigned int InDom: 251.0 0x3ec00000
|
|
Semantics: instant Units: none
|
|
inst [0 or "udp/10.0.0.10:49693"] value 0
|
|
inst [1 or "udp/192.168.1.169:58624"] value 0
|
|
@@ -5612,8 +5612,8 @@ network.persocket.skmem.sock_drop PMID: 154.1.89 [dropped packets before demulti
|
|
inst [89 or "tcp6/[::]:44323"] value 0
|
|
inst [90 or "tcp/[::ffff:127.0.0.1]:3000"] value 0
|
|
|
|
-network.persocket.wscale.str PMID: 154.1.60 [send and rcv scale factor as a string]
|
|
- Data Type: string InDom: 154.0 0x26800000
|
|
+network.persocket.wscale.str PMID: 251.1.60
|
|
+ Data Type: string InDom: 251.0 0x3ec00000
|
|
Semantics: discrete Units: none
|
|
inst [0 or "udp/10.0.0.10:49693"] value ""
|
|
inst [1 or "udp/192.168.1.169:58624"] value ""
|
|
@@ -5707,8 +5707,8 @@ network.persocket.wscale.str PMID: 154.1.60 [send and rcv scale factor as a stri
|
|
inst [89 or "tcp6/[::]:44323"] value ""
|
|
inst [90 or "tcp/[::ffff:127.0.0.1]:3000"] value "7,7"
|
|
|
|
-network.persocket.wscale.snd PMID: 154.1.61 [send scale factor when window scale is used]
|
|
- Data Type: 32-bit int InDom: 154.0 0x26800000
|
|
+network.persocket.wscale.snd PMID: 251.1.61
|
|
+ Data Type: 32-bit int InDom: 251.0 0x3ec00000
|
|
Semantics: instant Units: none
|
|
inst [0 or "udp/10.0.0.10:49693"] value 0
|
|
inst [1 or "udp/192.168.1.169:58624"] value 0
|
|
@@ -5802,8 +5802,8 @@ network.persocket.wscale.snd PMID: 154.1.61 [send scale factor when window scale
|
|
inst [89 or "tcp6/[::]:44323"] value 0
|
|
inst [90 or "tcp/[::ffff:127.0.0.1]:3000"] value 7
|
|
|
|
-network.persocket.wscale.rcv PMID: 154.1.62 [receive scale factor when window scale is used]
|
|
- Data Type: 32-bit int InDom: 154.0 0x26800000
|
|
+network.persocket.wscale.rcv PMID: 251.1.62
|
|
+ Data Type: 32-bit int InDom: 251.0 0x3ec00000
|
|
Semantics: instant Units: none
|
|
inst [0 or "udp/10.0.0.10:49693"] value 0
|
|
inst [1 or "udp/192.168.1.169:58624"] value 0
|
|
@@ -5897,8 +5897,8 @@ network.persocket.wscale.rcv PMID: 154.1.62 [receive scale factor when window sc
|
|
inst [89 or "tcp6/[::]:44323"] value 0
|
|
inst [90 or "tcp/[::ffff:127.0.0.1]:3000"] value 7
|
|
|
|
-network.persocket.round_trip.str PMID: 154.1.90 [average round trip time and variance, as a string]
|
|
- Data Type: string InDom: 154.0 0x26800000
|
|
+network.persocket.round_trip.str PMID: 251.1.90
|
|
+ Data Type: string InDom: 251.0 0x3ec00000
|
|
Semantics: discrete Units: none
|
|
inst [0 or "udp/10.0.0.10:49693"] value ""
|
|
inst [1 or "udp/192.168.1.169:58624"] value ""
|
|
@@ -5992,8 +5992,8 @@ network.persocket.round_trip.str PMID: 154.1.90 [average round trip time and var
|
|
inst [89 or "tcp6/[::]:44323"] value ""
|
|
inst [90 or "tcp/[::ffff:127.0.0.1]:3000"] value "0.045/0.025"
|
|
|
|
-network.persocket.round_trip.rtt PMID: 154.1.91 [average round trip time in milliseconds]
|
|
- Data Type: double InDom: 154.0 0x26800000
|
|
+network.persocket.round_trip.rtt PMID: 251.1.91
|
|
+ Data Type: double InDom: 251.0 0x3ec00000
|
|
Semantics: instant Units: millisec
|
|
inst [0 or "udp/10.0.0.10:49693"] value 0
|
|
inst [1 or "udp/192.168.1.169:58624"] value 0
|
|
@@ -6087,8 +6087,8 @@ network.persocket.round_trip.rtt PMID: 154.1.91 [average round trip time in mill
|
|
inst [89 or "tcp6/[::]:44323"] value 0
|
|
inst [90 or "tcp/[::ffff:127.0.0.1]:3000"] value 0.045
|
|
|
|
-network.persocket.round_trip.rttvar PMID: 154.1.92 [round trip time mean deviation.]
|
|
- Data Type: double InDom: 154.0 0x26800000
|
|
+network.persocket.round_trip.rttvar PMID: 251.1.92
|
|
+ Data Type: double InDom: 251.0 0x3ec00000
|
|
Semantics: instant Units: millisec
|
|
inst [0 or "udp/10.0.0.10:49693"] value 0
|
|
inst [1 or "udp/192.168.1.169:58624"] value 0
|
|
@@ -6184,7 +6184,7 @@ network.persocket.round_trip.rttvar PMID: 154.1.92 [round trip time mean deviati
|
|
=== std err ===
|
|
=== filtered valgrind report ===
|
|
Memcheck, a memory error detector
|
|
-Command: pminfo -L -K clear -K add,154,/var/lib/pcp/pmdas/sockets/pmda_sockets.so,sockets_init -dfmt -n /var/lib/pcp/pmdas/sockets/root network.persocket
|
|
+Command: pminfo -L -K clear -K add,251,/var/lib/pcp/pmdas/sockets/pmda_sockets.so,sockets_init -dfm -n TMP/root network.persocket
|
|
LEAK SUMMARY:
|
|
definitely lost: 0 bytes in 0 blocks
|
|
indirectly lost: 0 bytes in 0 blocks
|
|
@@ -6192,13 +6192,13 @@ ERROR SUMMARY: 0 errors from 0 contexts ...
|
|
=== testing sockets/ss_noemitauOH_ubuntu.txt ===
|
|
=== std out ===
|
|
|
|
-network.persocket.filter PMID: 154.0.0 [filter for sockets of interest]
|
|
+network.persocket.filter PMID: 251.0.0
|
|
Data Type: string InDom: PM_INDOM_NULL 0xffffffff
|
|
Semantics: discrete Units: none
|
|
value "state connected"
|
|
|
|
-network.persocket.netid PMID: 154.1.0 [socket protocol identifier]
|
|
- Data Type: string InDom: 154.0 0x26800000
|
|
+network.persocket.netid PMID: 251.1.0
|
|
+ Data Type: string InDom: 251.0 0x3ec00000
|
|
Semantics: discrete Units: none
|
|
inst [0 or "udp/0.0.0.0:5353"] value "udp"
|
|
inst [1 or "udp/0.0.0.0:38162"] value "udp"
|
|
@@ -6229,8 +6229,8 @@ network.persocket.netid PMID: 154.1.0 [socket protocol identifier]
|
|
inst [26 or "tcp/*:80"] value "tcp"
|
|
inst [27 or "tcp6/[::1]:53"] value "tcp"
|
|
|
|
-network.persocket.state PMID: 154.1.1 [socket state as a string, commonly UNCONN, ESTAB, TIME-WAIT]
|
|
- Data Type: string InDom: 154.0 0x26800000
|
|
+network.persocket.state PMID: 251.1.1
|
|
+ Data Type: string InDom: 251.0 0x3ec00000
|
|
Semantics: discrete Units: none
|
|
inst [0 or "udp/0.0.0.0:5353"] value "UNCONN"
|
|
inst [1 or "udp/0.0.0.0:38162"] value "UNCONN"
|
|
@@ -6261,8 +6261,8 @@ network.persocket.state PMID: 154.1.1 [socket state as a string, commonly UNCONN
|
|
inst [26 or "tcp/*:80"] value "LISTEN"
|
|
inst [27 or "tcp6/[::1]:53"] value "LISTEN"
|
|
|
|
-network.persocket.recvq PMID: 154.1.2 [length of the receive queue]
|
|
- Data Type: 32-bit int InDom: 154.0 0x26800000
|
|
+network.persocket.recvq PMID: 251.1.2
|
|
+ Data Type: 32-bit int InDom: 251.0 0x3ec00000
|
|
Semantics: instant Units: count
|
|
inst [0 or "udp/0.0.0.0:5353"] value 0
|
|
inst [1 or "udp/0.0.0.0:38162"] value 0
|
|
@@ -6293,8 +6293,8 @@ network.persocket.recvq PMID: 154.1.2 [length of the receive queue]
|
|
inst [26 or "tcp/*:80"] value 511
|
|
inst [27 or "tcp6/[::1]:53"] value 256
|
|
|
|
-network.persocket.sendq PMID: 154.1.3 [length of the send queue]
|
|
- Data Type: 32-bit int InDom: 154.0 0x26800000
|
|
+network.persocket.sendq PMID: 251.1.3
|
|
+ Data Type: 32-bit int InDom: 251.0 0x3ec00000
|
|
Semantics: instant Units: count
|
|
inst [0 or "udp/0.0.0.0:5353"] value 0
|
|
inst [1 or "udp/0.0.0.0:38162"] value 0
|
|
@@ -6325,8 +6325,8 @@ network.persocket.sendq PMID: 154.1.3 [length of the send queue]
|
|
inst [26 or "tcp/*:80"] value 0
|
|
inst [27 or "tcp6/[::1]:53"] value 0
|
|
|
|
-network.persocket.src PMID: 154.1.4 [local (source) IP address (IPv4 or IPv6) and port]
|
|
- Data Type: string InDom: 154.0 0x26800000
|
|
+network.persocket.src PMID: 251.1.4
|
|
+ Data Type: string InDom: 251.0 0x3ec00000
|
|
Semantics: discrete Units: none
|
|
inst [0 or "udp/0.0.0.0:5353"] value "0.0.0.0:5353"
|
|
inst [1 or "udp/0.0.0.0:38162"] value "0.0.0.0:38162"
|
|
@@ -6357,8 +6357,8 @@ network.persocket.src PMID: 154.1.4 [local (source) IP address (IPv4 or IPv6) an
|
|
inst [26 or "tcp/*:80"] value "*:80"
|
|
inst [27 or "tcp6/[::1]:53"] value "[::1]:53"
|
|
|
|
-network.persocket.dst PMID: 154.1.5 [destination IP address (IPv4 or IPv6) and port]
|
|
- Data Type: string InDom: 154.0 0x26800000
|
|
+network.persocket.dst PMID: 251.1.5
|
|
+ Data Type: string InDom: 251.0 0x3ec00000
|
|
Semantics: discrete Units: none
|
|
inst [0 or "udp/0.0.0.0:5353"] value "0.0.0.0:*"
|
|
inst [1 or "udp/0.0.0.0:38162"] value "0.0.0.0:*"
|
|
@@ -6389,8 +6389,8 @@ network.persocket.dst PMID: 154.1.5 [destination IP address (IPv4 or IPv6) and p
|
|
inst [26 or "tcp/*:80"] value "*:*"
|
|
inst [27 or "tcp6/[::1]:53"] value "[::]:*"
|
|
|
|
-network.persocket.inode PMID: 154.1.6 [the socket's inode number in VFS]
|
|
- Data Type: 64-bit int InDom: 154.0 0x26800000
|
|
+network.persocket.inode PMID: 251.1.6
|
|
+ Data Type: 64-bit int InDom: 251.0 0x3ec00000
|
|
Semantics: discrete Units: none
|
|
inst [0 or "udp/0.0.0.0:5353"] value 177686
|
|
inst [1 or "udp/0.0.0.0:38162"] value 177688
|
|
@@ -6421,8 +6421,8 @@ network.persocket.inode PMID: 154.1.6 [the socket's inode number in VFS]
|
|
inst [26 or "tcp/*:80"] value 179878
|
|
inst [27 or "tcp6/[::1]:53"] value 179210
|
|
|
|
-network.persocket.uid PMID: 154.1.8 [the user id the socket belongs to]
|
|
- Data Type: 32-bit unsigned int InDom: 154.0 0x26800000
|
|
+network.persocket.uid PMID: 251.1.8
|
|
+ Data Type: 32-bit unsigned int InDom: 251.0 0x3ec00000
|
|
Semantics: discrete Units: none
|
|
inst [0 or "udp/0.0.0.0:5353"] value 117
|
|
inst [1 or "udp/0.0.0.0:38162"] value 117
|
|
@@ -6453,8 +6453,8 @@ network.persocket.uid PMID: 154.1.8 [the user id the socket belongs to]
|
|
inst [26 or "tcp/*:80"] value 0
|
|
inst [27 or "tcp6/[::1]:53"] value 0
|
|
|
|
-network.persocket.sk PMID: 154.1.9 [uuid cookie of the socket]
|
|
- Data Type: 64-bit unsigned int InDom: 154.0 0x26800000
|
|
+network.persocket.sk PMID: 251.1.9
|
|
+ Data Type: 64-bit unsigned int InDom: 251.0 0x3ec00000
|
|
Semantics: discrete Units: none
|
|
inst [0 or "udp/0.0.0.0:5353"] value 9
|
|
inst [1 or "udp/0.0.0.0:38162"] value 0
|
|
@@ -6485,8 +6485,8 @@ network.persocket.sk PMID: 154.1.9 [uuid cookie of the socket]
|
|
inst [26 or "tcp/*:80"] value 20
|
|
inst [27 or "tcp6/[::1]:53"] value 21
|
|
|
|
-network.persocket.cgroup PMID: 154.1.10 [cgroup v2 pathname]
|
|
- Data Type: string InDom: 154.0 0x26800000
|
|
+network.persocket.cgroup PMID: 251.1.10
|
|
+ Data Type: string InDom: 251.0 0x3ec00000
|
|
Semantics: discrete Units: none
|
|
inst [0 or "udp/0.0.0.0:5353"] value ""
|
|
inst [1 or "udp/0.0.0.0:38162"] value ""
|
|
@@ -6517,8 +6517,8 @@ network.persocket.cgroup PMID: 154.1.10 [cgroup v2 pathname]
|
|
inst [26 or "tcp/*:80"] value ""
|
|
inst [27 or "tcp6/[::1]:53"] value ""
|
|
|
|
-network.persocket.v6only PMID: 154.1.11 [boolean value set to one if the socket is IPv6, 0 otherwise]
|
|
- Data Type: 32-bit int InDom: 154.0 0x26800000
|
|
+network.persocket.v6only PMID: 251.1.11
|
|
+ Data Type: 32-bit int InDom: 251.0 0x3ec00000
|
|
Semantics: discrete Units: none
|
|
inst [0 or "udp/0.0.0.0:5353"] value 0
|
|
inst [1 or "udp/0.0.0.0:38162"] value 0
|
|
@@ -6549,8 +6549,8 @@ network.persocket.v6only PMID: 154.1.11 [boolean value set to one if the socket
|
|
inst [26 or "tcp/*:80"] value 0
|
|
inst [27 or "tcp6/[::1]:53"] value 1
|
|
|
|
-network.persocket.ts PMID: 154.1.13 [boolean value set to one if the timestamp option is set]
|
|
- Data Type: 32-bit int InDom: 154.0 0x26800000
|
|
+network.persocket.ts PMID: 251.1.13
|
|
+ Data Type: 32-bit int InDom: 251.0 0x3ec00000
|
|
Semantics: discrete Units: none
|
|
inst [0 or "udp/0.0.0.0:5353"] value 0
|
|
inst [1 or "udp/0.0.0.0:38162"] value 0
|
|
@@ -6581,8 +6581,8 @@ network.persocket.ts PMID: 154.1.13 [boolean value set to one if the timestamp o
|
|
inst [26 or "tcp/*:80"] value 0
|
|
inst [27 or "tcp6/[::1]:53"] value 0
|
|
|
|
-network.persocket.sack PMID: 154.1.14 [boolean value set to one if the sack option is set]
|
|
- Data Type: 32-bit int InDom: 154.0 0x26800000
|
|
+network.persocket.sack PMID: 251.1.14
|
|
+ Data Type: 32-bit int InDom: 251.0 0x3ec00000
|
|
Semantics: discrete Units: none
|
|
inst [0 or "udp/0.0.0.0:5353"] value 0
|
|
inst [1 or "udp/0.0.0.0:38162"] value 0
|
|
@@ -6613,8 +6613,8 @@ network.persocket.sack PMID: 154.1.14 [boolean value set to one if the sack opti
|
|
inst [26 or "tcp/*:80"] value 0
|
|
inst [27 or "tcp6/[::1]:53"] value 0
|
|
|
|
-network.persocket.cubic PMID: 154.1.15 [boolean value set to one if cubic congestion control is enabled]
|
|
- Data Type: 32-bit int InDom: 154.0 0x26800000
|
|
+network.persocket.cubic PMID: 251.1.15
|
|
+ Data Type: 32-bit int InDom: 251.0 0x3ec00000
|
|
Semantics: discrete Units: none
|
|
inst [0 or "udp/0.0.0.0:5353"] value 0
|
|
inst [1 or "udp/0.0.0.0:38162"] value 0
|
|
@@ -6645,8 +6645,8 @@ network.persocket.cubic PMID: 154.1.15 [boolean value set to one if cubic conges
|
|
inst [26 or "tcp/*:80"] value 1
|
|
inst [27 or "tcp6/[::1]:53"] value 1
|
|
|
|
-network.persocket.ato PMID: 154.1.16 [ack timeout when using delayed ack mode]
|
|
- Data Type: double InDom: 154.0 0x26800000
|
|
+network.persocket.ato PMID: 251.1.16
|
|
+ Data Type: double InDom: 251.0 0x3ec00000
|
|
Semantics: discrete Units: millisec
|
|
inst [0 or "udp/0.0.0.0:5353"] value 0
|
|
inst [1 or "udp/0.0.0.0:38162"] value 0
|
|
@@ -6677,8 +6677,8 @@ network.persocket.ato PMID: 154.1.16 [ack timeout when using delayed ack mode]
|
|
inst [26 or "tcp/*:80"] value 0
|
|
inst [27 or "tcp6/[::1]:53"] value 0
|
|
|
|
-network.persocket.mss PMID: 154.1.17 [maximum segment size]
|
|
- Data Type: 32-bit unsigned int InDom: 154.0 0x26800000
|
|
+network.persocket.mss PMID: 251.1.17
|
|
+ Data Type: 32-bit unsigned int InDom: 251.0 0x3ec00000
|
|
Semantics: discrete Units: byte
|
|
inst [0 or "udp/0.0.0.0:5353"] value 0
|
|
inst [1 or "udp/0.0.0.0:38162"] value 0
|
|
@@ -6709,8 +6709,8 @@ network.persocket.mss PMID: 154.1.17 [maximum segment size]
|
|
inst [26 or "tcp/*:80"] value 0
|
|
inst [27 or "tcp6/[::1]:53"] value 0
|
|
|
|
-network.persocket.pmtu PMID: 154.1.18 [path maximum transmission unit]
|
|
- Data Type: 32-bit unsigned int InDom: 154.0 0x26800000
|
|
+network.persocket.pmtu PMID: 251.1.18
|
|
+ Data Type: 32-bit unsigned int InDom: 251.0 0x3ec00000
|
|
Semantics: discrete Units: byte
|
|
inst [0 or "udp/0.0.0.0:5353"] value 0
|
|
inst [1 or "udp/0.0.0.0:38162"] value 0
|
|
@@ -6741,8 +6741,8 @@ network.persocket.pmtu PMID: 154.1.18 [path maximum transmission unit]
|
|
inst [26 or "tcp/*:80"] value 0
|
|
inst [27 or "tcp6/[::1]:53"] value 0
|
|
|
|
-network.persocket.rcvmss PMID: 154.1.19 [receive maximum transmission units]
|
|
- Data Type: 32-bit unsigned int InDom: 154.0 0x26800000
|
|
+network.persocket.rcvmss PMID: 251.1.19
|
|
+ Data Type: 32-bit unsigned int InDom: 251.0 0x3ec00000
|
|
Semantics: discrete Units: byte
|
|
inst [0 or "udp/0.0.0.0:5353"] value 0
|
|
inst [1 or "udp/0.0.0.0:38162"] value 0
|
|
@@ -6773,8 +6773,8 @@ network.persocket.rcvmss PMID: 154.1.19 [receive maximum transmission units]
|
|
inst [26 or "tcp/*:80"] value 0
|
|
inst [27 or "tcp6/[::1]:53"] value 0
|
|
|
|
-network.persocket.advmss PMID: 154.1.20 [advertised maximum segment size]
|
|
- Data Type: 32-bit unsigned int InDom: 154.0 0x26800000
|
|
+network.persocket.advmss PMID: 251.1.20
|
|
+ Data Type: 32-bit unsigned int InDom: 251.0 0x3ec00000
|
|
Semantics: discrete Units: byte
|
|
inst [0 or "udp/0.0.0.0:5353"] value 0
|
|
inst [1 or "udp/0.0.0.0:38162"] value 0
|
|
@@ -6805,8 +6805,8 @@ network.persocket.advmss PMID: 154.1.20 [advertised maximum segment size]
|
|
inst [26 or "tcp/*:80"] value 0
|
|
inst [27 or "tcp6/[::1]:53"] value 0
|
|
|
|
-network.persocket.cwnd PMID: 154.1.21 [congestion window size]
|
|
- Data Type: 32-bit unsigned int InDom: 154.0 0x26800000
|
|
+network.persocket.cwnd PMID: 251.1.21
|
|
+ Data Type: 32-bit unsigned int InDom: 251.0 0x3ec00000
|
|
Semantics: discrete Units: count
|
|
inst [0 or "udp/0.0.0.0:5353"] value 0
|
|
inst [1 or "udp/0.0.0.0:38162"] value 0
|
|
@@ -6837,8 +6837,8 @@ network.persocket.cwnd PMID: 154.1.21 [congestion window size]
|
|
inst [26 or "tcp/*:80"] value 10
|
|
inst [27 or "tcp6/[::1]:53"] value 10
|
|
|
|
-network.persocket.ssthresh PMID: 154.1.22 [tcp congestion window slow start threshold]
|
|
- Data Type: 32-bit unsigned int InDom: 154.0 0x26800000
|
|
+network.persocket.ssthresh PMID: 251.1.22
|
|
+ Data Type: 32-bit unsigned int InDom: 251.0 0x3ec00000
|
|
Semantics: discrete Units: count
|
|
inst [0 or "udp/0.0.0.0:5353"] value 0
|
|
inst [1 or "udp/0.0.0.0:38162"] value 0
|
|
@@ -6869,8 +6869,8 @@ network.persocket.ssthresh PMID: 154.1.22 [tcp congestion window slow start thre
|
|
inst [26 or "tcp/*:80"] value 0
|
|
inst [27 or "tcp6/[::1]:53"] value 0
|
|
|
|
-network.persocket.bytes_sent PMID: 154.1.23 [count of bytes sent using the socket]
|
|
- Data Type: 64-bit unsigned int InDom: 154.0 0x26800000
|
|
+network.persocket.bytes_sent PMID: 251.1.23
|
|
+ Data Type: 64-bit unsigned int InDom: 251.0 0x3ec00000
|
|
Semantics: counter Units: byte
|
|
inst [0 or "udp/0.0.0.0:5353"] value 0
|
|
inst [1 or "udp/0.0.0.0:38162"] value 0
|
|
@@ -6901,8 +6901,8 @@ network.persocket.bytes_sent PMID: 154.1.23 [count of bytes sent using the socke
|
|
inst [26 or "tcp/*:80"] value 0
|
|
inst [27 or "tcp6/[::1]:53"] value 0
|
|
|
|
-network.persocket.bytes_retrans PMID: 154.1.24 [count of bytes retransmitted using the socket]
|
|
- Data Type: 64-bit unsigned int InDom: 154.0 0x26800000
|
|
+network.persocket.bytes_retrans PMID: 251.1.24
|
|
+ Data Type: 64-bit unsigned int InDom: 251.0 0x3ec00000
|
|
Semantics: counter Units: byte
|
|
inst [0 or "udp/0.0.0.0:5353"] value 0
|
|
inst [1 or "udp/0.0.0.0:38162"] value 0
|
|
@@ -6933,8 +6933,8 @@ network.persocket.bytes_retrans PMID: 154.1.24 [count of bytes retransmitted usi
|
|
inst [26 or "tcp/*:80"] value 0
|
|
inst [27 or "tcp6/[::1]:53"] value 0
|
|
|
|
-network.persocket.bytes_acked PMID: 154.1.25 [count of bytes acked using the socket]
|
|
- Data Type: 64-bit unsigned int InDom: 154.0 0x26800000
|
|
+network.persocket.bytes_acked PMID: 251.1.25
|
|
+ Data Type: 64-bit unsigned int InDom: 251.0 0x3ec00000
|
|
Semantics: counter Units: byte
|
|
inst [0 or "udp/0.0.0.0:5353"] value 0
|
|
inst [1 or "udp/0.0.0.0:38162"] value 0
|
|
@@ -6965,8 +6965,8 @@ network.persocket.bytes_acked PMID: 154.1.25 [count of bytes acked using the soc
|
|
inst [26 or "tcp/*:80"] value 0
|
|
inst [27 or "tcp6/[::1]:53"] value 0
|
|
|
|
-network.persocket.bytes_received PMID: 154.1.36 [count of bytes received using the socket]
|
|
- Data Type: 64-bit unsigned int InDom: 154.0 0x26800000
|
|
+network.persocket.bytes_received PMID: 251.1.36
|
|
+ Data Type: 64-bit unsigned int InDom: 251.0 0x3ec00000
|
|
Semantics: counter Units: byte
|
|
inst [0 or "udp/0.0.0.0:5353"] value 0
|
|
inst [1 or "udp/0.0.0.0:38162"] value 0
|
|
@@ -6997,8 +6997,8 @@ network.persocket.bytes_received PMID: 154.1.36 [count of bytes received using t
|
|
inst [26 or "tcp/*:80"] value 0
|
|
inst [27 or "tcp6/[::1]:53"] value 0
|
|
|
|
-network.persocket.segs_out PMID: 154.1.37 [count of segments sent out using the socket]
|
|
- Data Type: 32-bit unsigned int InDom: 154.0 0x26800000
|
|
+network.persocket.segs_out PMID: 251.1.37
|
|
+ Data Type: 32-bit unsigned int InDom: 251.0 0x3ec00000
|
|
Semantics: instant Units: count
|
|
inst [0 or "udp/0.0.0.0:5353"] value 0
|
|
inst [1 or "udp/0.0.0.0:38162"] value 0
|
|
@@ -7029,8 +7029,8 @@ network.persocket.segs_out PMID: 154.1.37 [count of segments sent out using the
|
|
inst [26 or "tcp/*:80"] value 0
|
|
inst [27 or "tcp6/[::1]:53"] value 0
|
|
|
|
-network.persocket.segs_in PMID: 154.1.38 [count of segments received using the socket]
|
|
- Data Type: 32-bit unsigned int InDom: 154.0 0x26800000
|
|
+network.persocket.segs_in PMID: 251.1.38
|
|
+ Data Type: 32-bit unsigned int InDom: 251.0 0x3ec00000
|
|
Semantics: instant Units: count
|
|
inst [0 or "udp/0.0.0.0:5353"] value 0
|
|
inst [1 or "udp/0.0.0.0:38162"] value 0
|
|
@@ -7061,8 +7061,8 @@ network.persocket.segs_in PMID: 154.1.38 [count of segments received using the s
|
|
inst [26 or "tcp/*:80"] value 0
|
|
inst [27 or "tcp6/[::1]:53"] value 0
|
|
|
|
-network.persocket.data_segs_out PMID: 154.1.39 [count of data segments sent out using the socket]
|
|
- Data Type: 32-bit unsigned int InDom: 154.0 0x26800000
|
|
+network.persocket.data_segs_out PMID: 251.1.39
|
|
+ Data Type: 32-bit unsigned int InDom: 251.0 0x3ec00000
|
|
Semantics: instant Units: count
|
|
inst [0 or "udp/0.0.0.0:5353"] value 0
|
|
inst [1 or "udp/0.0.0.0:38162"] value 0
|
|
@@ -7093,8 +7093,8 @@ network.persocket.data_segs_out PMID: 154.1.39 [count of data segments sent out
|
|
inst [26 or "tcp/*:80"] value 0
|
|
inst [27 or "tcp6/[::1]:53"] value 0
|
|
|
|
-network.persocket.data_segs_in PMID: 154.1.40 [count of data segments received using the socket]
|
|
- Data Type: 32-bit unsigned int InDom: 154.0 0x26800000
|
|
+network.persocket.data_segs_in PMID: 251.1.40
|
|
+ Data Type: 32-bit unsigned int InDom: 251.0 0x3ec00000
|
|
Semantics: instant Units: count
|
|
inst [0 or "udp/0.0.0.0:5353"] value 0
|
|
inst [1 or "udp/0.0.0.0:38162"] value 0
|
|
@@ -7125,8 +7125,8 @@ network.persocket.data_segs_in PMID: 154.1.40 [count of data segments received u
|
|
inst [26 or "tcp/*:80"] value 0
|
|
inst [27 or "tcp6/[::1]:53"] value 0
|
|
|
|
-network.persocket.send PMID: 154.1.41 [egress bps]
|
|
- Data Type: double InDom: 154.0 0x26800000
|
|
+network.persocket.send PMID: 251.1.41
|
|
+ Data Type: double InDom: 251.0 0x3ec00000
|
|
Semantics: instant Units: count
|
|
inst [0 or "udp/0.0.0.0:5353"] value 0
|
|
inst [1 or "udp/0.0.0.0:38162"] value 0
|
|
@@ -7157,8 +7157,8 @@ network.persocket.send PMID: 154.1.41 [egress bps]
|
|
inst [26 or "tcp/*:80"] value 0
|
|
inst [27 or "tcp6/[::1]:53"] value 0
|
|
|
|
-network.persocket.lastsnd PMID: 154.1.42 [how long time since the last packet sent in milliseconds]
|
|
- Data Type: 32-bit unsigned int InDom: 154.0 0x26800000
|
|
+network.persocket.lastsnd PMID: 251.1.42
|
|
+ Data Type: 32-bit unsigned int InDom: 251.0 0x3ec00000
|
|
Semantics: instant Units: millisec
|
|
inst [0 or "udp/0.0.0.0:5353"] value 0
|
|
inst [1 or "udp/0.0.0.0:38162"] value 0
|
|
@@ -7189,8 +7189,8 @@ network.persocket.lastsnd PMID: 154.1.42 [how long time since the last packet se
|
|
inst [26 or "tcp/*:80"] value 0
|
|
inst [27 or "tcp6/[::1]:53"] value 0
|
|
|
|
-network.persocket.lastrcv PMID: 154.1.43 [how long time since the last packet received in milliseconds]
|
|
- Data Type: 32-bit unsigned int InDom: 154.0 0x26800000
|
|
+network.persocket.lastrcv PMID: 251.1.43
|
|
+ Data Type: 32-bit unsigned int InDom: 251.0 0x3ec00000
|
|
Semantics: instant Units: millisec
|
|
inst [0 or "udp/0.0.0.0:5353"] value 0
|
|
inst [1 or "udp/0.0.0.0:38162"] value 0
|
|
@@ -7221,8 +7221,8 @@ network.persocket.lastrcv PMID: 154.1.43 [how long time since the last packet re
|
|
inst [26 or "tcp/*:80"] value 0
|
|
inst [27 or "tcp6/[::1]:53"] value 0
|
|
|
|
-network.persocket.lastack PMID: 154.1.44 [how long time since the last ack received in milliseconds]
|
|
- Data Type: 32-bit unsigned int InDom: 154.0 0x26800000
|
|
+network.persocket.lastack PMID: 251.1.44
|
|
+ Data Type: 32-bit unsigned int InDom: 251.0 0x3ec00000
|
|
Semantics: instant Units: millisec
|
|
inst [0 or "udp/0.0.0.0:5353"] value 0
|
|
inst [1 or "udp/0.0.0.0:38162"] value 0
|
|
@@ -7253,8 +7253,8 @@ network.persocket.lastack PMID: 154.1.44 [how long time since the last ack recei
|
|
inst [26 or "tcp/*:80"] value 0
|
|
inst [27 or "tcp6/[::1]:53"] value 0
|
|
|
|
-network.persocket.pacing_rate PMID: 154.1.45 [the current pacing rate of the socket]
|
|
- Data Type: double InDom: 154.0 0x26800000
|
|
+network.persocket.pacing_rate PMID: 251.1.45
|
|
+ Data Type: double InDom: 251.0 0x3ec00000
|
|
Semantics: instant Units: byte / sec
|
|
inst [0 or "udp/0.0.0.0:5353"] value 0
|
|
inst [1 or "udp/0.0.0.0:38162"] value 0
|
|
@@ -7285,8 +7285,8 @@ network.persocket.pacing_rate PMID: 154.1.45 [the current pacing rate of the soc
|
|
inst [26 or "tcp/*:80"] value 0
|
|
inst [27 or "tcp6/[::1]:53"] value 0
|
|
|
|
-network.persocket.delivery_rate PMID: 154.1.46 [delivery bandwidth estimate excluding idle periods]
|
|
- Data Type: double InDom: 154.0 0x26800000
|
|
+network.persocket.delivery_rate PMID: 251.1.46
|
|
+ Data Type: double InDom: 251.0 0x3ec00000
|
|
Semantics: instant Units: byte / sec
|
|
inst [0 or "udp/0.0.0.0:5353"] value 0
|
|
inst [1 or "udp/0.0.0.0:38162"] value 0
|
|
@@ -7317,8 +7317,8 @@ network.persocket.delivery_rate PMID: 154.1.46 [delivery bandwidth estimate excl
|
|
inst [26 or "tcp/*:80"] value 0
|
|
inst [27 or "tcp6/[::1]:53"] value 0
|
|
|
|
-network.persocket.delivered PMID: 154.1.47 []
|
|
- Data Type: 32-bit unsigned int InDom: 154.0 0x26800000
|
|
+network.persocket.delivered PMID: 251.1.47
|
|
+ Data Type: 32-bit unsigned int InDom: 251.0 0x3ec00000
|
|
Semantics: counter Units: count
|
|
inst [0 or "udp/0.0.0.0:5353"] value 0
|
|
inst [1 or "udp/0.0.0.0:38162"] value 0
|
|
@@ -7349,8 +7349,8 @@ network.persocket.delivered PMID: 154.1.47 []
|
|
inst [26 or "tcp/*:80"] value 0
|
|
inst [27 or "tcp6/[::1]:53"] value 0
|
|
|
|
-network.persocket.app_limited PMID: 154.1.48 [TCP flows are limited with application-limiting]
|
|
- Data Type: 32-bit int InDom: 154.0 0x26800000
|
|
+network.persocket.app_limited PMID: 251.1.48
|
|
+ Data Type: 32-bit int InDom: 251.0 0x3ec00000
|
|
Semantics: discrete Units: none
|
|
inst [0 or "udp/0.0.0.0:5353"] value 0
|
|
inst [1 or "udp/0.0.0.0:38162"] value 0
|
|
@@ -7381,8 +7381,8 @@ network.persocket.app_limited PMID: 154.1.48 [TCP flows are limited with applica
|
|
inst [26 or "tcp/*:80"] value 0
|
|
inst [27 or "tcp6/[::1]:53"] value 0
|
|
|
|
-network.persocket.reord_seen PMID: 154.1.49 []
|
|
- Data Type: 32-bit int InDom: 154.0 0x26800000
|
|
+network.persocket.reord_seen PMID: 251.1.49
|
|
+ Data Type: 32-bit int InDom: 251.0 0x3ec00000
|
|
Semantics: discrete Units: count
|
|
inst [0 or "udp/0.0.0.0:5353"] value 0
|
|
inst [1 or "udp/0.0.0.0:38162"] value 0
|
|
@@ -7413,8 +7413,8 @@ network.persocket.reord_seen PMID: 154.1.49 []
|
|
inst [26 or "tcp/*:80"] value 0
|
|
inst [27 or "tcp6/[::1]:53"] value 0
|
|
|
|
-network.persocket.busy PMID: 154.1.50 [TCP connection is busy??]
|
|
- Data Type: 64-bit unsigned int InDom: 154.0 0x26800000
|
|
+network.persocket.busy PMID: 251.1.50
|
|
+ Data Type: 64-bit unsigned int InDom: 251.0 0x3ec00000
|
|
Semantics: instant Units: none
|
|
inst [0 or "udp/0.0.0.0:5353"] value 0
|
|
inst [1 or "udp/0.0.0.0:38162"] value 0
|
|
@@ -7445,8 +7445,8 @@ network.persocket.busy PMID: 154.1.50 [TCP connection is busy??]
|
|
inst [26 or "tcp/*:80"] value 0
|
|
inst [27 or "tcp6/[::1]:53"] value 0
|
|
|
|
-network.persocket.dsack_dups PMID: 154.1.51 [duplicate selective acknowledgements]
|
|
- Data Type: 32-bit unsigned int InDom: 154.0 0x26800000
|
|
+network.persocket.dsack_dups PMID: 251.1.51
|
|
+ Data Type: 32-bit unsigned int InDom: 251.0 0x3ec00000
|
|
Semantics: instant Units: count
|
|
inst [0 or "udp/0.0.0.0:5353"] value 0
|
|
inst [1 or "udp/0.0.0.0:38162"] value 0
|
|
@@ -7477,8 +7477,8 @@ network.persocket.dsack_dups PMID: 154.1.51 [duplicate selective acknowledgement
|
|
inst [26 or "tcp/*:80"] value 0
|
|
inst [27 or "tcp6/[::1]:53"] value 0
|
|
|
|
-network.persocket.rcv_rtt PMID: 154.1.52 [receive round trip time]
|
|
- Data Type: double InDom: 154.0 0x26800000
|
|
+network.persocket.rcv_rtt PMID: 251.1.52
|
|
+ Data Type: double InDom: 251.0 0x3ec00000
|
|
Semantics: instant Units: millisec
|
|
inst [0 or "udp/0.0.0.0:5353"] value 0
|
|
inst [1 or "udp/0.0.0.0:38162"] value 0
|
|
@@ -7509,8 +7509,8 @@ network.persocket.rcv_rtt PMID: 154.1.52 [receive round trip time]
|
|
inst [26 or "tcp/*:80"] value 0
|
|
inst [27 or "tcp6/[::1]:53"] value 0
|
|
|
|
-network.persocket.rcv_space PMID: 154.1.53 [TCP internal auto tuning socket receive buffer size]
|
|
- Data Type: 32-bit int InDom: 154.0 0x26800000
|
|
+network.persocket.rcv_space PMID: 251.1.53
|
|
+ Data Type: 32-bit int InDom: 251.0 0x3ec00000
|
|
Semantics: discrete Units: byte
|
|
inst [0 or "udp/0.0.0.0:5353"] value 0
|
|
inst [1 or "udp/0.0.0.0:38162"] value 0
|
|
@@ -7541,8 +7541,8 @@ network.persocket.rcv_space PMID: 154.1.53 [TCP internal auto tuning socket rece
|
|
inst [26 or "tcp/*:80"] value 0
|
|
inst [27 or "tcp6/[::1]:53"] value 0
|
|
|
|
-network.persocket.rcv_ssthresh PMID: 154.1.54 [TCP congestion window slow start threshold]
|
|
- Data Type: 32-bit int InDom: 154.0 0x26800000
|
|
+network.persocket.rcv_ssthresh PMID: 251.1.54
|
|
+ Data Type: 32-bit int InDom: 251.0 0x3ec00000
|
|
Semantics: discrete Units: count
|
|
inst [0 or "udp/0.0.0.0:5353"] value 0
|
|
inst [1 or "udp/0.0.0.0:38162"] value 0
|
|
@@ -7573,8 +7573,8 @@ network.persocket.rcv_ssthresh PMID: 154.1.54 [TCP congestion window slow start
|
|
inst [26 or "tcp/*:80"] value 0
|
|
inst [27 or "tcp6/[::1]:53"] value 0
|
|
|
|
-network.persocket.minrtt PMID: 154.1.55 [minimum round trip time achieved in the socket]
|
|
- Data Type: double InDom: 154.0 0x26800000
|
|
+network.persocket.minrtt PMID: 251.1.55
|
|
+ Data Type: double InDom: 251.0 0x3ec00000
|
|
Semantics: discrete Units: millisec
|
|
inst [0 or "udp/0.0.0.0:5353"] value 0
|
|
inst [1 or "udp/0.0.0.0:38162"] value 0
|
|
@@ -7605,8 +7605,8 @@ network.persocket.minrtt PMID: 154.1.55 [minimum round trip time achieved in the
|
|
inst [26 or "tcp/*:80"] value 0
|
|
inst [27 or "tcp6/[::1]:53"] value 0
|
|
|
|
-network.persocket.notsent PMID: 154.1.56 [unsent data bytes that are still buffered]
|
|
- Data Type: 32-bit unsigned int InDom: 154.0 0x26800000
|
|
+network.persocket.notsent PMID: 251.1.56
|
|
+ Data Type: 32-bit unsigned int InDom: 251.0 0x3ec00000
|
|
Semantics: instant Units: byte
|
|
inst [0 or "udp/0.0.0.0:5353"] value 0
|
|
inst [1 or "udp/0.0.0.0:38162"] value 0
|
|
@@ -7637,8 +7637,8 @@ network.persocket.notsent PMID: 154.1.56 [unsent data bytes that are still buffe
|
|
inst [26 or "tcp/*:80"] value 0
|
|
inst [27 or "tcp6/[::1]:53"] value 0
|
|
|
|
-network.persocket.timer.str PMID: 154.1.70 [the 'timer:' string, as reported by ss]
|
|
- Data Type: string InDom: 154.0 0x26800000
|
|
+network.persocket.timer.str PMID: 251.1.70
|
|
+ Data Type: string InDom: 251.0 0x3ec00000
|
|
Semantics: discrete Units: none
|
|
inst [0 or "udp/0.0.0.0:5353"] value ""
|
|
inst [1 or "udp/0.0.0.0:38162"] value ""
|
|
@@ -7669,8 +7669,8 @@ network.persocket.timer.str PMID: 154.1.70 [the 'timer:' string, as reported by
|
|
inst [26 or "tcp/*:80"] value ""
|
|
inst [27 or "tcp6/[::1]:53"] value ""
|
|
|
|
-network.persocket.timer.name PMID: 154.1.71 [name of the socket timer.]
|
|
- Data Type: string InDom: 154.0 0x26800000
|
|
+network.persocket.timer.name PMID: 251.1.71
|
|
+ Data Type: string InDom: 251.0 0x3ec00000
|
|
Semantics: discrete Units: none
|
|
inst [0 or "udp/0.0.0.0:5353"] value ""
|
|
inst [1 or "udp/0.0.0.0:38162"] value ""
|
|
@@ -7701,8 +7701,8 @@ network.persocket.timer.name PMID: 154.1.71 [name of the socket timer.]
|
|
inst [26 or "tcp/*:80"] value ""
|
|
inst [27 or "tcp6/[::1]:53"] value ""
|
|
|
|
-network.persocket.timer.expire_str PMID: 154.1.72 [how long until the timer will expire]
|
|
- Data Type: string InDom: 154.0 0x26800000
|
|
+network.persocket.timer.expire_str PMID: 251.1.72
|
|
+ Data Type: string InDom: 251.0 0x3ec00000
|
|
Semantics: discrete Units: none
|
|
inst [0 or "udp/0.0.0.0:5353"] value ""
|
|
inst [1 or "udp/0.0.0.0:38162"] value ""
|
|
@@ -7733,8 +7733,8 @@ network.persocket.timer.expire_str PMID: 154.1.72 [how long until the timer will
|
|
inst [26 or "tcp/*:80"] value ""
|
|
inst [27 or "tcp6/[::1]:53"] value ""
|
|
|
|
-network.persocket.timer.retrans PMID: 154.1.73 [how many times the retransmission occured in timer]
|
|
- Data Type: 32-bit unsigned int InDom: 154.0 0x26800000
|
|
+network.persocket.timer.retrans PMID: 251.1.73
|
|
+ Data Type: 32-bit unsigned int InDom: 251.0 0x3ec00000
|
|
Semantics: discrete Units: none
|
|
inst [0 or "udp/0.0.0.0:5353"] value 0
|
|
inst [1 or "udp/0.0.0.0:38162"] value 0
|
|
@@ -7765,8 +7765,8 @@ network.persocket.timer.retrans PMID: 154.1.73 [how many times the retransmissio
|
|
inst [26 or "tcp/*:80"] value 0
|
|
inst [27 or "tcp6/[::1]:53"] value 0
|
|
|
|
-network.persocket.skmem.str PMID: 154.1.80 [socket memory details, as a string]
|
|
- Data Type: string InDom: 154.0 0x26800000
|
|
+network.persocket.skmem.str PMID: 251.1.80
|
|
+ Data Type: string InDom: 251.0 0x3ec00000
|
|
Semantics: discrete Units: none
|
|
inst [0 or "udp/0.0.0.0:5353"] value "r0,rb212992,t0,tb212992,f4096,w0,o144,bl0,d0"
|
|
inst [1 or "udp/0.0.0.0:38162"] value "r0,rb212992,t0,tb212992,f0,w0,o0,bl0,d0"
|
|
@@ -7797,8 +7797,8 @@ network.persocket.skmem.str PMID: 154.1.80 [socket memory details, as a string]
|
|
inst [26 or "tcp/*:80"] value "r0,rb131072,t0,tb16384,f0,w0,o0,bl0,d0"
|
|
inst [27 or "tcp6/[::1]:53"] value "r0,rb131072,t0,tb16384,f0,w0,o0,bl0,d0"
|
|
|
|
-network.persocket.skmem.rmem_alloc PMID: 154.1.81 [memory allocated for receiving packet]
|
|
- Data Type: 32-bit unsigned int InDom: 154.0 0x26800000
|
|
+network.persocket.skmem.rmem_alloc PMID: 251.1.81
|
|
+ Data Type: 32-bit unsigned int InDom: 251.0 0x3ec00000
|
|
Semantics: instant Units: byte
|
|
inst [0 or "udp/0.0.0.0:5353"] value 0
|
|
inst [1 or "udp/0.0.0.0:38162"] value 0
|
|
@@ -7829,8 +7829,8 @@ network.persocket.skmem.rmem_alloc PMID: 154.1.81 [memory allocated for receivin
|
|
inst [26 or "tcp/*:80"] value 0
|
|
inst [27 or "tcp6/[::1]:53"] value 0
|
|
|
|
-network.persocket.skmem.wmem_alloc PMID: 154.1.82 [memory used for sending packet (which has been sent]
|
|
- Data Type: 32-bit unsigned int InDom: 154.0 0x26800000
|
|
+network.persocket.skmem.wmem_alloc PMID: 251.1.82
|
|
+ Data Type: 32-bit unsigned int InDom: 251.0 0x3ec00000
|
|
Semantics: instant Units: byte
|
|
inst [0 or "udp/0.0.0.0:5353"] value 0
|
|
inst [1 or "udp/0.0.0.0:38162"] value 0
|
|
@@ -7861,8 +7861,8 @@ network.persocket.skmem.wmem_alloc PMID: 154.1.82 [memory used for sending packe
|
|
inst [26 or "tcp/*:80"] value 0
|
|
inst [27 or "tcp6/[::1]:53"] value 0
|
|
|
|
-network.persocket.skmem.rcv_buf PMID: 154.1.83 [total memory that can be allocated to recv packets]
|
|
- Data Type: 32-bit unsigned int InDom: 154.0 0x26800000
|
|
+network.persocket.skmem.rcv_buf PMID: 251.1.83
|
|
+ Data Type: 32-bit unsigned int InDom: 251.0 0x3ec00000
|
|
Semantics: instant Units: byte
|
|
inst [0 or "udp/0.0.0.0:5353"] value 212992
|
|
inst [1 or "udp/0.0.0.0:38162"] value 212992
|
|
@@ -7893,8 +7893,8 @@ network.persocket.skmem.rcv_buf PMID: 154.1.83 [total memory that can be allocat
|
|
inst [26 or "tcp/*:80"] value 131072
|
|
inst [27 or "tcp6/[::1]:53"] value 131072
|
|
|
|
-network.persocket.skmem.snd_buf PMID: 154.1.84 [total memory that can be allocated to send packets]
|
|
- Data Type: 32-bit unsigned int InDom: 154.0 0x26800000
|
|
+network.persocket.skmem.snd_buf PMID: 251.1.84
|
|
+ Data Type: 32-bit unsigned int InDom: 251.0 0x3ec00000
|
|
Semantics: instant Units: byte
|
|
inst [0 or "udp/0.0.0.0:5353"] value 212992
|
|
inst [1 or "udp/0.0.0.0:38162"] value 212992
|
|
@@ -7925,8 +7925,8 @@ network.persocket.skmem.snd_buf PMID: 154.1.84 [total memory that can be allocat
|
|
inst [26 or "tcp/*:80"] value 16384
|
|
inst [27 or "tcp6/[::1]:53"] value 16384
|
|
|
|
-network.persocket.skmem.fwd_alloc PMID: 154.1.95 [cache memory allocated but not yet used for snd/rcv]
|
|
- Data Type: 32-bit unsigned int InDom: 154.0 0x26800000
|
|
+network.persocket.skmem.fwd_alloc PMID: 251.1.95
|
|
+ Data Type: 32-bit unsigned int InDom: 251.0 0x3ec00000
|
|
Semantics: instant Units: byte
|
|
inst [0 or "udp/0.0.0.0:5353"] value 4096
|
|
inst [1 or "udp/0.0.0.0:38162"] value 0
|
|
@@ -7957,8 +7957,8 @@ network.persocket.skmem.fwd_alloc PMID: 154.1.95 [cache memory allocated but not
|
|
inst [26 or "tcp/*:80"] value 0
|
|
inst [27 or "tcp6/[::1]:53"] value 0
|
|
|
|
-network.persocket.skmem.wmem_queued PMID: 154.1.86 [memory allocated for sending packet]
|
|
- Data Type: 32-bit unsigned int InDom: 154.0 0x26800000
|
|
+network.persocket.skmem.wmem_queued PMID: 251.1.86
|
|
+ Data Type: 32-bit unsigned int InDom: 251.0 0x3ec00000
|
|
Semantics: instant Units: byte
|
|
inst [0 or "udp/0.0.0.0:5353"] value 0
|
|
inst [1 or "udp/0.0.0.0:38162"] value 0
|
|
@@ -7989,8 +7989,8 @@ network.persocket.skmem.wmem_queued PMID: 154.1.86 [memory allocated for sending
|
|
inst [26 or "tcp/*:80"] value 0
|
|
inst [27 or "tcp6/[::1]:53"] value 0
|
|
|
|
-network.persocket.skmem.ropt_mem PMID: 154.1.87 [memory used for storing socket options]
|
|
- Data Type: 32-bit unsigned int InDom: 154.0 0x26800000
|
|
+network.persocket.skmem.ropt_mem PMID: 251.1.87
|
|
+ Data Type: 32-bit unsigned int InDom: 251.0 0x3ec00000
|
|
Semantics: instant Units: byte
|
|
inst [0 or "udp/0.0.0.0:5353"] value 144
|
|
inst [1 or "udp/0.0.0.0:38162"] value 0
|
|
@@ -8021,8 +8021,8 @@ network.persocket.skmem.ropt_mem PMID: 154.1.87 [memory used for storing socket
|
|
inst [26 or "tcp/*:80"] value 0
|
|
inst [27 or "tcp6/[::1]:53"] value 0
|
|
|
|
-network.persocket.skmem.back_log PMID: 154.1.88 [memory used for the sk backlog queue]
|
|
- Data Type: 32-bit unsigned int InDom: 154.0 0x26800000
|
|
+network.persocket.skmem.back_log PMID: 251.1.88
|
|
+ Data Type: 32-bit unsigned int InDom: 251.0 0x3ec00000
|
|
Semantics: instant Units: byte
|
|
inst [0 or "udp/0.0.0.0:5353"] value 0
|
|
inst [1 or "udp/0.0.0.0:38162"] value 0
|
|
@@ -8053,8 +8053,8 @@ network.persocket.skmem.back_log PMID: 154.1.88 [memory used for the sk backlog
|
|
inst [26 or "tcp/*:80"] value 0
|
|
inst [27 or "tcp6/[::1]:53"] value 0
|
|
|
|
-network.persocket.skmem.sock_drop PMID: 154.1.89 [dropped packets before demultiplexed into socket]
|
|
- Data Type: 32-bit unsigned int InDom: 154.0 0x26800000
|
|
+network.persocket.skmem.sock_drop PMID: 251.1.89
|
|
+ Data Type: 32-bit unsigned int InDom: 251.0 0x3ec00000
|
|
Semantics: instant Units: none
|
|
inst [0 or "udp/0.0.0.0:5353"] value 0
|
|
inst [1 or "udp/0.0.0.0:38162"] value 0
|
|
@@ -8085,8 +8085,8 @@ network.persocket.skmem.sock_drop PMID: 154.1.89 [dropped packets before demulti
|
|
inst [26 or "tcp/*:80"] value 0
|
|
inst [27 or "tcp6/[::1]:53"] value 0
|
|
|
|
-network.persocket.wscale.str PMID: 154.1.60 [send and rcv scale factor as a string]
|
|
- Data Type: string InDom: 154.0 0x26800000
|
|
+network.persocket.wscale.str PMID: 251.1.60
|
|
+ Data Type: string InDom: 251.0 0x3ec00000
|
|
Semantics: discrete Units: none
|
|
inst [0 or "udp/0.0.0.0:5353"] value ""
|
|
inst [1 or "udp/0.0.0.0:38162"] value ""
|
|
@@ -8117,8 +8117,8 @@ network.persocket.wscale.str PMID: 154.1.60 [send and rcv scale factor as a stri
|
|
inst [26 or "tcp/*:80"] value ""
|
|
inst [27 or "tcp6/[::1]:53"] value ""
|
|
|
|
-network.persocket.wscale.snd PMID: 154.1.61 [send scale factor when window scale is used]
|
|
- Data Type: 32-bit int InDom: 154.0 0x26800000
|
|
+network.persocket.wscale.snd PMID: 251.1.61
|
|
+ Data Type: 32-bit int InDom: 251.0 0x3ec00000
|
|
Semantics: instant Units: none
|
|
inst [0 or "udp/0.0.0.0:5353"] value 0
|
|
inst [1 or "udp/0.0.0.0:38162"] value 0
|
|
@@ -8149,8 +8149,8 @@ network.persocket.wscale.snd PMID: 154.1.61 [send scale factor when window scale
|
|
inst [26 or "tcp/*:80"] value 0
|
|
inst [27 or "tcp6/[::1]:53"] value 0
|
|
|
|
-network.persocket.wscale.rcv PMID: 154.1.62 [receive scale factor when window scale is used]
|
|
- Data Type: 32-bit int InDom: 154.0 0x26800000
|
|
+network.persocket.wscale.rcv PMID: 251.1.62
|
|
+ Data Type: 32-bit int InDom: 251.0 0x3ec00000
|
|
Semantics: instant Units: none
|
|
inst [0 or "udp/0.0.0.0:5353"] value 0
|
|
inst [1 or "udp/0.0.0.0:38162"] value 0
|
|
@@ -8181,8 +8181,8 @@ network.persocket.wscale.rcv PMID: 154.1.62 [receive scale factor when window sc
|
|
inst [26 or "tcp/*:80"] value 0
|
|
inst [27 or "tcp6/[::1]:53"] value 0
|
|
|
|
-network.persocket.round_trip.str PMID: 154.1.90 [average round trip time and variance, as a string]
|
|
- Data Type: string InDom: 154.0 0x26800000
|
|
+network.persocket.round_trip.str PMID: 251.1.90
|
|
+ Data Type: string InDom: 251.0 0x3ec00000
|
|
Semantics: discrete Units: none
|
|
inst [0 or "udp/0.0.0.0:5353"] value ""
|
|
inst [1 or "udp/0.0.0.0:38162"] value ""
|
|
@@ -8213,8 +8213,8 @@ network.persocket.round_trip.str PMID: 154.1.90 [average round trip time and var
|
|
inst [26 or "tcp/*:80"] value ""
|
|
inst [27 or "tcp6/[::1]:53"] value ""
|
|
|
|
-network.persocket.round_trip.rtt PMID: 154.1.91 [average round trip time in milliseconds]
|
|
- Data Type: double InDom: 154.0 0x26800000
|
|
+network.persocket.round_trip.rtt PMID: 251.1.91
|
|
+ Data Type: double InDom: 251.0 0x3ec00000
|
|
Semantics: instant Units: millisec
|
|
inst [0 or "udp/0.0.0.0:5353"] value 0
|
|
inst [1 or "udp/0.0.0.0:38162"] value 0
|
|
@@ -8245,8 +8245,8 @@ network.persocket.round_trip.rtt PMID: 154.1.91 [average round trip time in mill
|
|
inst [26 or "tcp/*:80"] value 0
|
|
inst [27 or "tcp6/[::1]:53"] value 0
|
|
|
|
-network.persocket.round_trip.rttvar PMID: 154.1.92 [round trip time mean deviation.]
|
|
- Data Type: double InDom: 154.0 0x26800000
|
|
+network.persocket.round_trip.rttvar PMID: 251.1.92
|
|
+ Data Type: double InDom: 251.0 0x3ec00000
|
|
Semantics: instant Units: millisec
|
|
inst [0 or "udp/0.0.0.0:5353"] value 0
|
|
inst [1 or "udp/0.0.0.0:38162"] value 0
|
|
@@ -8279,7 +8279,7 @@ network.persocket.round_trip.rttvar PMID: 154.1.92 [round trip time mean deviati
|
|
=== std err ===
|
|
=== filtered valgrind report ===
|
|
Memcheck, a memory error detector
|
|
-Command: pminfo -L -K clear -K add,154,/var/lib/pcp/pmdas/sockets/pmda_sockets.so,sockets_init -dfmt -n /var/lib/pcp/pmdas/sockets/root network.persocket
|
|
+Command: pminfo -L -K clear -K add,251,/var/lib/pcp/pmdas/sockets/pmda_sockets.so,sockets_init -dfm -n TMP/root network.persocket
|
|
LEAK SUMMARY:
|
|
definitely lost: 0 bytes in 0 blocks
|
|
indirectly lost: 0 bytes in 0 blocks
|
|
diff --git a/qa/sockets/ss_noemitauOH.txt b/qa/sockets/ss_noemitauOH.txt
|
|
index 9845b941a..51a0f8ca2 100644
|
|
--- a/qa/sockets/ss_noemitauOH.txt
|
|
+++ b/qa/sockets/ss_noemitauOH.txt
|
|
@@ -1,3 +1,4 @@
|
|
+Netid State Recv-Q Send-Q Local Address:Port Peer Address:Port Process
|
|
udp ESTAB 0 0 10.0.0.10:49693 74.125.68.189:443 uid:1024 ino:28605309 sk:976e cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem:(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0)
|
|
udp UNCONN 0 0 192.168.1.169:58624 0.0.0.0:* uid:1024 ino:19693830 sk:3154 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem:(r0,rb212992,t0,tb212992,f4096,w0,o0,bl0,d0)
|
|
udp ESTAB 0 0 10.0.0.10:42866 142.250.70.142:443 uid:1024 ino:28615973 sk:976f cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem:(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0)
|
|
diff --git a/qa/sockets/ss_noemitauOH_ubuntu.txt b/qa/sockets/ss_noemitauOH_ubuntu.txt
|
|
index 754824657..90b8a67e4 100644
|
|
--- a/qa/sockets/ss_noemitauOH_ubuntu.txt
|
|
+++ b/qa/sockets/ss_noemitauOH_ubuntu.txt
|
|
@@ -1,3 +1,4 @@
|
|
+Netid State Recv-Q Send-Q Local Address:Port Peer Address:Port Process
|
|
udp UNCONN 0 0 0.0.0.0:5353 0.0.0.0:* uid:117 ino:177686 sk:9 <-> skmem:(r0,rb212992,t0,tb212992,f4096,w0,o144,bl0,d0)
|
|
udp UNCONN 0 0 0.0.0.0:38162 0.0.0.0:* uid:117 ino:177688 sk:a <-> skmem:(r0,rb212992,t0,tb212992,f0,w0,o0,bl0,d0)
|
|
udp UNCONN 0 0 192.168.123.1:53 0.0.0.0:* ino:187421 sk:b <-> skmem:(r0,rb212992,t0,tb212992,f0,w0,o0,bl0,d0)
|
|
diff --git a/src/pmdas/linux_sockets/GNUmakefile b/src/pmdas/linux_sockets/GNUmakefile
|
|
index a32987ef7..384ef0f7c 100644
|
|
--- a/src/pmdas/linux_sockets/GNUmakefile
|
|
+++ b/src/pmdas/linux_sockets/GNUmakefile
|
|
@@ -23,6 +23,7 @@ LIBTARGET = pmda_$(IAM).$(DSOSUFFIX)
|
|
PMDAINIT = $(IAM)_init
|
|
PMDATMPDIR = $(PCP_PMDAS_DIR)/$(IAM)
|
|
PMDAADMDIR = $(PCP_PMDASADM_DIR)/$(IAM)
|
|
+PMDACONFIG = $(PCP_SYSCONF_DIR)/$(IAM)
|
|
PMIEDIR = $(PCP_SYSCONF_DIR)/pmieconf/$(IAM)
|
|
PMIEVARDIR = $(PCP_VAR_DIR)/config/pmieconf/$(IAM)
|
|
|
|
@@ -32,6 +33,7 @@ LLDLIBS = $(PCP_PMDALIB)
|
|
LCFLAGS = $(INVISIBILITY)
|
|
|
|
SCRIPTS = Install Remove Upgrade
|
|
+CONF = filter.conf
|
|
VERSION_SCRIPT = exports
|
|
LDIRT = domain.h $(VERSION_SCRIPT) $(IAM).log
|
|
|
|
@@ -49,6 +51,8 @@ build-me: $(LIBTARGET) $(CMDTARGET)
|
|
install: default
|
|
$(INSTALL) -m 755 -d $(PMDAADMDIR)
|
|
$(INSTALL) -m 755 -d $(PMDATMPDIR)
|
|
+ $(INSTALL) -m 755 -d $(PMDACONFIG)
|
|
+ $(INSTALL) -m 644 -t $(PMDATMPDIR)/$(CONF) $(CONF) $(PMDACONFIG)/$(CONF)
|
|
$(INSTALL) -m 755 -t $(PMDATMPDIR) $(LIBTARGET) $(CMDTARGET) $(SCRIPTS) $(PMDAADMDIR)
|
|
$(INSTALL) -m 644 -t $(PMDATMPDIR) domain.h help $(PMNSFILES) $(PMDAADMDIR)
|
|
@$(INSTALL_MAN)
|
|
diff --git a/src/pmdas/linux_sockets/filter.conf b/src/pmdas/linux_sockets/filter.conf
|
|
new file mode 100644
|
|
index 000000000..a630e1c4f
|
|
--- /dev/null
|
|
+++ b/src/pmdas/linux_sockets/filter.conf
|
|
@@ -0,0 +1,9 @@
|
|
+# This file specifies the initial ss filter used by pmdasockets(1).
|
|
+# This filter can be overridden by storing a new filter, for example:
|
|
+# pmstore network.persocket.filter "state established"
|
|
+# If the default is overridden with a pmstore, it only remains in
|
|
+# effect until the PMDA is restarted. To persist a filter, edit this
|
|
+# file. For details of filters, see ss(8).
|
|
+
|
|
+# current initial (persisted) filter:
|
|
+state connected
|
|
diff --git a/src/pmdas/linux_sockets/pmda.c b/src/pmdas/linux_sockets/pmda.c
|
|
index fab4be290..fa041dffe 100644
|
|
--- a/src/pmdas/linux_sockets/pmda.c
|
|
+++ b/src/pmdas/linux_sockets/pmda.c
|
|
@@ -187,6 +187,36 @@ sockets_store(pmResult *result, pmdaExt *pmda)
|
|
return sts;
|
|
}
|
|
|
|
+/*
|
|
+ * Load the initial filter from filter.conf. This may subsequently be
|
|
+ * overridden by pmstore network.persocket.filter ...
|
|
+ */
|
|
+static void
|
|
+load_filter_config(void)
|
|
+{
|
|
+ FILE *fp;
|
|
+ int sep = pmPathSeparator();
|
|
+ char *p;
|
|
+ char filterpath[MAXPATHLEN];
|
|
+ char buf[MAXPATHLEN];
|
|
+
|
|
+ pmsprintf(filterpath, sizeof(filterpath), "%s%c" "sockets" "%c" "filter.conf",
|
|
+ pmGetConfig("PCP_SYSCONF_DIR"), sep, sep);
|
|
+ if ((fp = fopen(filterpath, "r")) != NULL) {
|
|
+ while (fgets(buf, sizeof(buf), fp) != NULL) {
|
|
+ if (buf[0] == '#' || buf[0] == '\n')
|
|
+ continue;
|
|
+ if ((p = strrchr(buf, '\n')) != NULL)
|
|
+ *p = '\0';
|
|
+ ss_filter = strndup(buf, sizeof(buf));
|
|
+ break;
|
|
+ }
|
|
+ fclose(fp);
|
|
+ }
|
|
+ if (pmDebugOptions.appl0)
|
|
+ pmNotifyErr(LOG_DEBUG, "loaded %s = \"%s\"\n", filterpath, ss_filter ? ss_filter : "");
|
|
+}
|
|
+
|
|
/*
|
|
* Initialise the agent (both daemon and DSO).
|
|
*/
|
|
@@ -207,6 +237,9 @@ sockets_init(pmdaInterface *dp)
|
|
if (dp->status != 0)
|
|
return;
|
|
|
|
+ /* load the initial filter */
|
|
+ load_filter_config();
|
|
+
|
|
int nindoms = sizeof(indomtable)/sizeof(indomtable[0]);
|
|
|
|
if (dp->status != 0)
|
|
diff --git a/src/pmdas/linux_sockets/ss_parse.c b/src/pmdas/linux_sockets/ss_parse.c
|
|
index 75a02b376..93e94c87e 100644
|
|
--- a/src/pmdas/linux_sockets/ss_parse.c
|
|
+++ b/src/pmdas/linux_sockets/ss_parse.c
|
|
@@ -180,20 +180,31 @@ extract_subfields(ss_stats_t *s)
|
|
sscanf(p, "%lf/%lf", &s->round_trip_rtt, &s->round_trip_rttvar);
|
|
}
|
|
|
|
+/*
|
|
+ * parse one line - socket instance
|
|
+ */
|
|
int
|
|
-ss_parse(char *line, ss_stats_t *ss)
|
|
+ss_parse(char *line, int has_state_field, ss_stats_t *ss)
|
|
{
|
|
int i;
|
|
char *r, *s, *p = line;
|
|
int sts = 0;
|
|
|
|
memset(&ss_p, 0, sizeof(ss_p));
|
|
- sscanf(line, "%s %s %u %u %s %s",
|
|
- ss_p.netid, ss_p.state, &ss_p.sendq, &ss_p.recvq, ss_p.src, ss_p.dst);
|
|
+ if (has_state_field) {
|
|
+ sscanf(line, "%s %s %u %u %s %s",
|
|
+ ss_p.netid, ss_p.state, &ss_p.sendq, &ss_p.recvq, ss_p.src, ss_p.dst);
|
|
+ for (i=0; i < 6; i++)
|
|
+ p = skip(p, ' ');
|
|
|
|
- /* skip first 6 fields, already scanned (above) */
|
|
- for (i=0; i < 6; i++)
|
|
- p = skip(p, ' ');
|
|
+ } else {
|
|
+ /* Some filters cause ss to omit the State column */
|
|
+ strcpy(ss_p.state, "FILTER");
|
|
+ sscanf(line, "%s %u %u %s %s",
|
|
+ ss_p.netid, &ss_p.sendq, &ss_p.recvq, ss_p.src, ss_p.dst);
|
|
+ for (i=0; i < 5; i++)
|
|
+ p = skip(p, ' ');
|
|
+ }
|
|
|
|
for (i=0; parse_table[i].field != NULL; i++)
|
|
parse_table[i].found = 0;
|
|
@@ -256,12 +267,14 @@ ss_parse(char *line, ss_stats_t *ss)
|
|
p = skip(p, ' ');
|
|
}
|
|
|
|
-#if DEBUG
|
|
- fprintf(stderr, "\nLINE:%s", line);
|
|
- for (i=0; parse_table[i].field != NULL; i++)
|
|
- if (parse_table[i].found)
|
|
- fprintf(stderr, "Found %s\n", parse_table[i].field);
|
|
-#endif
|
|
+ if (pmDebugOptions.appl1) {
|
|
+ pmNotifyErr(LOG_DEBUG, "\nLINE:%s", line);
|
|
+ if (pmDebugOptions.desperate) {
|
|
+ for (i=0; parse_table[i].field != NULL; i++)
|
|
+ if (parse_table[i].found)
|
|
+ fprintf(stderr, "Found %s\n", parse_table[i].field);
|
|
+ }
|
|
+ }
|
|
|
|
extract_subfields(&ss_p);
|
|
*ss = ss_p; /* struct assign */
|
|
diff --git a/src/pmdas/linux_sockets/ss_refresh.c b/src/pmdas/linux_sockets/ss_refresh.c
|
|
index 4e92cca05..76e222cd5 100644
|
|
--- a/src/pmdas/linux_sockets/ss_refresh.c
|
|
+++ b/src/pmdas/linux_sockets/ss_refresh.c
|
|
@@ -39,6 +39,7 @@ ss_refresh(int indom)
|
|
int sts = 0;
|
|
ss_stats_t *ss, parsed_ss;
|
|
int inst;
|
|
+ int has_state_field;
|
|
char instname[128];
|
|
char line[4096] = {0};
|
|
|
|
@@ -48,16 +49,28 @@ ss_refresh(int indom)
|
|
/* invalidate all cache entries */
|
|
pmdaCacheOp(indom, PMDA_CACHE_INACTIVE);
|
|
|
|
+ has_state_field = 0;
|
|
+ memset(&parsed_ss, 0, sizeof(parsed_ss));
|
|
while (fgets(line, sizeof(line), fp) != NULL) {
|
|
- ss_parse(line, &parsed_ss);
|
|
+ /* check the header */
|
|
+ if (strncmp(line, "Netid", 5) == 0) {
|
|
+ if (strncmp(line, "Netid State", 11) == 0) {
|
|
+ has_state_field = 1;
|
|
+ }
|
|
+ continue;
|
|
+ }
|
|
+
|
|
+ ss_parse(line, has_state_field, &parsed_ss);
|
|
ss_instname(&parsed_ss, instname, sizeof(instname));
|
|
- if (parsed_ss.state[0] == '\0')
|
|
- continue; /* transient with no state, ignore */
|
|
ss = NULL;
|
|
sts = pmdaCacheLookupName(indom, instname, &inst, (void **)&ss);
|
|
if (sts < 0 || ss == NULL) {
|
|
/* new entry */
|
|
- ss = (ss_stats_t *)malloc(sizeof(ss_stats_t));
|
|
+ if (ss == NULL)
|
|
+ ss = (ss_stats_t *)malloc(sizeof(ss_stats_t));
|
|
+ if (ss == NULL)
|
|
+ return -ENOMEM;
|
|
+ sts = 0;
|
|
}
|
|
*ss = parsed_ss;
|
|
ss->instid = pmdaCacheStore(indom, PMDA_CACHE_ADD, instname, (void **)ss);
|
|
diff --git a/src/pmdas/linux_sockets/ss_stats.h b/src/pmdas/linux_sockets/ss_stats.h
|
|
index bc2d86a10..183db5afa 100644
|
|
--- a/src/pmdas/linux_sockets/ss_stats.h
|
|
+++ b/src/pmdas/linux_sockets/ss_stats.h
|
|
@@ -87,7 +87,7 @@ typedef struct ss_stats {
|
|
} ss_stats_t;
|
|
|
|
extern int ss_refresh(int);
|
|
-extern int ss_parse(char *, ss_stats_t *);
|
|
+extern int ss_parse(char *, int, ss_stats_t *);
|
|
extern FILE *ss_open_stream(void);
|
|
extern void ss_close_stream(FILE *);
|
|
extern char *ss_filter; /* current string value of network.persocket.filter */
|
|
diff --git a/src/pmdas/linux_sockets/ss_stream.c b/src/pmdas/linux_sockets/ss_stream.c
|
|
index 4cd773bf0..421c65fd1 100644
|
|
--- a/src/pmdas/linux_sockets/ss_stream.c
|
|
+++ b/src/pmdas/linux_sockets/ss_stream.c
|
|
@@ -16,10 +16,7 @@
|
|
#include <pcp/pmda.h>
|
|
#include "ss_stats.h"
|
|
|
|
-#define SS_OPTIONS "-noemitauOH"
|
|
-
|
|
-/* default filter: reduces logging overheads */
|
|
-#define SS_DEFAULT_FILTER "state connected"
|
|
+#define SS_OPTIONS "-noemitauO"
|
|
|
|
char *ss_filter = NULL; /* storable: network.persocket.filter */
|
|
|
|
@@ -32,15 +29,16 @@ ss_open_stream()
|
|
|
|
if (ss_filter == NULL) {
|
|
/* pmstore to network.persocket.filter frees this if changing */
|
|
- if ((ss_filter = strdup(SS_DEFAULT_FILTER)) == NULL)
|
|
+ if ((ss_filter = strdup("")) == NULL)
|
|
return NULL;
|
|
}
|
|
|
|
- if ((path = getenv("PCPQA_PMDA_SOCKETS")) != NULL)
|
|
+ if ((path = getenv("PCPQA_PMDA_SOCKETS")) != NULL) {
|
|
/* PCPQA input file */
|
|
fp = fopen(path, "r");
|
|
- else {
|
|
- /* TODO use a config file for ss options and ss filters */
|
|
+ if (pmDebugOptions.appl0)
|
|
+ fprintf(stderr, "ss_open_stream: open PCPQA_PMDA_SOCKETS=%s\n", path);
|
|
+ } else {
|
|
if (access((path = "/usr/sbin/ss"), X_OK) != 0) {
|
|
if (access((path = "/usr/bin/ss"), X_OK) != 0) {
|
|
fprintf(stderr, "Error: no \"ss\" binary found\n");
|
|
@@ -49,6 +47,8 @@ ss_open_stream()
|
|
}
|
|
pmsprintf(cmd, sizeof(cmd), "%s %s %s", path, SS_OPTIONS, ss_filter);
|
|
fp = popen(cmd, "r");
|
|
+ if (pmDebugOptions.appl0)
|
|
+ fprintf(stderr, "ss_open_stream: popen %s\n", cmd);
|
|
}
|
|
|
|
return fp;
|
|
|
|
commit 47f9df215a609c5b3097080e22a1415ad83e2b8e
|
|
Author: Mark Goodwin <mgoodwin@redhat.com>
|
|
Date: Mon Jun 28 16:44:40 2021 +1000
|
|
|
|
pcp-ss: fix EAGAIN exceptions, add filter header, QA
|
|
|
|
Use explicit scale="instant" in fetchgroups to avoid rate conversion.
|
|
This was causing fetchgroups for metrics with counter semantics
|
|
to throw EAGAIN exceptions in the report function. pcp-ss reports
|
|
the raw counters, but other tools such as pmrep want to do rate
|
|
conversion, so we keep the correct (native) semantics.
|
|
|
|
Also simplify the code a bit, add missing bytes_sent in the --info
|
|
report. Add a header in the report for the current timestamp and
|
|
filter, which is especially useful for archive replay since the
|
|
filter can change over time whilst logging (it's a storable metric).
|
|
|
|
Tweaked pcp-ss report in qa/1634.out
|
|
|
|
diff --git a/qa/1633.out b/qa/1633.out
|
|
index b82a71e6a..c1ba33d69 100644
|
|
--- a/qa/1633.out
|
|
+++ b/qa/1633.out
|
|
@@ -3,788 +3,788 @@ QA output created by 1633
|
|
pcp-ss output, at default offset
|
|
# Time: 2021-06-18 13:34:14.168998 Filter: state connected
|
|
Netid State Recv-Q Send-Q Local Address:Port Peer Address:Port Process
|
|
-tcp ESTAB 0 0 [::ffff:127.0.0.1]:3000 [::ffff:127.0.0.1]:49798 timer(keepalive,5.265ms,0) uid:378 inode:164821548 sk:17e9 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb2358342,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.033/0.018 ato:40 mss:32768 cwnd:10 pmtu:65535 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:65664
|
|
-tcp ESTAB 0 0 127.0.0.1:6379 127.0.0.1:34526 timer(keepalive,299ms,0) uid:379 inode:164789635 sk:17e9 cgroup:/system.slice/redis.service <-> skmem(r0,rb6291456,t0,tb4194304,f0,w0,o0,bl0,d226) ts sack cubic wscale:7,7 rtt:5.268/10.344 ato:40 mss:65483 cwnd:51 pmtu:65535 ssthresh:27 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:1379162
|
|
-tcp ESTAB 0 0 10.40.192.134:47862 10.0.15.20:6667 timer(keepalive,2min48sec,0) uid:1024 inode:143267906 sk:39 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb181972,t0,tb46080,f0,w0,o0,bl0,d56) ts sack cubic wscale:8,7 rtt:456.275/44.255 ato:40 mss:1308 cwnd:2 pmtu:1360 ssthresh:2 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:19026
|
|
-tcp ESTAB 0 0 10.0.0.10:58310 52.88.142.33:443 timer(keepalive,1min53sec,0) uid:1024 inode:143231822 sk:39 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d4) ts sack cubic wscale:8,7 rtt:211.152/22.951 ato:40 mss:1448 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
-tcp ESTAB 0 0 10.0.0.10:44852 202.58.9.228:443 timer(keepalive,3.777ms,0) uid:1024 inode:143675936 sk:39 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d1770) sack cubic wscale:9,7 rtt:98.707/11.472 ato:40 mss:1460 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14600
|
|
-tcp ESTAB 0 0 10.0.0.10:37330 217.182.79.119:6667 timer(keepalive,3min20sec,0) uid:1024 inode:147037462 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2467768,t0,tb87040,f0,w0,o0,bl0,d15) ts sack cubic wscale:7,7 rtt:381.926/27.664 ato:40 mss:1448 cwnd:2 pmtu:1500 ssthresh:2 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:64371
|
|
-tcp ESTAB 0 0 192.168.122.1:53100 192.168.122.54:22 timer(keepalive,1min43sec,0) uid:1024 inode:152890200 sk:3a cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d11) ts sack cubic wscale:7,7 rtt:6.415/11.95 ato:40 mss:1448 cwnd:20 pmtu:1500 ssthresh:20 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
-tcp ESTAB 0 0 10.0.0.10:52874 199.127.207.181:443 timer(keepalive,28sec,0) uid:1024 inode:154981923 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d433) sack cubic wscale:9,7 rtt:231.99/42.333 ato:40 mss:1460 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14600
|
|
-tcp ESTAB 0 0 10.0.0.10:33256 10.0.0.6:8009 timer(keepalive,19sec,0) uid:1024 inode:161634072 sk:3a cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2554304,t0,tb87040,f0,w0,o0,bl0,d1) ts sack cubic wscale:6,7 rtt:7.326/1.581 ato:40 mss:1448 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:65491
|
|
-tcp ESTAB 0 0 10.0.0.10:45164 173.194.202.125:443 timer(keepalive,28sec,0) uid:1024 inode:161888302 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f4096,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:228.663/49.231 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
-tcp ESTAB 0 0 10.0.0.10:37256 157.240.8.18:443 timer(keepalive,2min13sec,0) uid:1024 inode:163353710 sk:262 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb1623296,t0,tb46080,f4096,w0,o0,bl0,d37) ts sack cubic wscale:8,7 rtt:21.667/1.031 ato:40 mss:1380 cwnd:22 pmtu:1500 ssthresh:22 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:87463
|
|
-tcp ESTAB 0 0 10.0.0.10:40226 13.54.123.156:443 timer(keepalive,28sec,0) uid:1024 inode:163971400 sk:3b cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2673664,t0,tb46080,f0,w0,o0,bl0,d0) ts sack cubic wscale:12,7 rtt:23.063/0.882 ato:46 mss:1288 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:67012
|
|
-tcp ESTAB 0 0 10.0.0.10:40232 13.54.123.156:443 timer(keepalive,15sec,0) uid:1024 inode:164254779 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2730360,t0,tb46080,f0,w0,o0,bl0,d0) ts sack cubic wscale:12,7 rtt:21.7/0.326 ato:42 mss:1288 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:67755
|
|
-tcp ESTAB 0 0 10.0.0.10:39906 172.217.194.188:5228 timer(keepalive,15sec,0) uid:1024 inode:164287111 sk:eacd cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:94.893/7.701 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
-tcp ESTAB 0 0 127.0.0.1:34526 127.0.0.1:6379 timer(keepalive,646ms,0) uid:386 inode:164791620 sk:ef22 cgroup:/system.slice/pmproxy.service <-> skmem(r0,rb4978722,t0,tb4194304,f0,w0,o0,bl0,d397) ts sack cubic wscale:7,7 rtt:0.217/0.167 ato:40 mss:65483 cwnd:36 pmtu:65535 ssthresh:16 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:245440
|
|
-tcp ESTAB 0 0 127.0.0.1:49798 127.0.0.1:3000 uid:0 inode:164815425 sk:17e9 cgroup:/system.slice/pmcd.service <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:6.023/4.348 ato:40 mss:65483 cwnd:10 pmtu:65535 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:65495
|
|
-udp ESTAB 0 0 10.0.0.10:36244 142.250.70.138:443 uid:1024 inode:165293889 sk:f231 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-udp ESTAB 0 0 10.0.0.10:35754 142.251.10.189:443 uid:1024 inode:165318004 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-udp ESTAB 0 0 10.0.0.10:49123 142.250.4.189:443 uid:1024 inode:165373416 sk:ef33 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp ESTAB 0 0 10.0.0.10:40218 142.250.70.142:443 uid:1024 inode:165413160 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d16) ts sack cubic wscale:8,7 rtt:10.194/0.696 ato:40 mss:1418 cwnd:3 pmtu:1500 ssthresh:2 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
-tcp ESTAB 0 0 10.0.0.10:43990 142.250.70.131:443 uid:1024 inode:165420073 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:9.826/0.515 ato:40 mss:1418 cwnd:4 pmtu:1500 ssthresh:4 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
-tcp ESTAB 0 0 10.0.0.10:44388 142.250.4.189:443 uid:1024 inode:165419510 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f4096,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:96.696/2.871 ato:40 mss:1418 cwnd:7 pmtu:1500 ssthresh:7 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
-tcp ESTAB 0 0 10.0.0.10:34914 142.250.70.234:443 uid:1024 inode:165418039 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f4096,w0,o0,bl0,d11) ts sack cubic wscale:8,7 rtt:10.278/0.678 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
-tcp ESTAB 0 0 10.0.0.10:34916 142.250.70.234:443 uid:1024 inode:165418040 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d9) ts sack cubic wscale:8,7 rtt:10.081/1.167 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:49594 142.250.70.165:443 timer(timewait,41sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp ESTAB 0 0 10.0.0.10:57232 157.240.8.35:443 uid:1024 inode:165408121 sk:1781 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb46080,f8192,w0,o0,bl0,d4) ts sack cubic wscale:8,7 rtt:23.193/1.8 ato:40 mss:1380 cwnd:2 pmtu:1500 ssthresh:2 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
-udp ESTAB 0 0 10.0.0.10:44639 142.250.70.131:443 uid:1024 inode:165411837 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp ESTAB 0 0 10.0.0.10:46392 142.251.10.189:443 uid:1024 inode:165466671 sk:f23b cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f4096,w0,o0,bl0,d3) ts sack cubic wscale:8,7 rtt:111.69/24.888 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
-udp ESTAB 0 0 10.0.0.10:35983 142.250.70.142:443 uid:1024 inode:165466809 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp ESTAB 0 0 10.0.0.10:55532 140.82.114.26:443 timer(keepalive,29sec,0) uid:1024 inode:165515920 sk:17eb cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:10,7 rtt:248.861/32.644 ato:40 mss:1424 cwnd:20 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
-tcp ESTAB 0 0 10.0.0.10:55534 140.82.114.26:443 timer(keepalive,2.767ms,0) uid:1024 inode:165521771 sk:ef38 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:10,7 rtt:283.095/41.806 ato:40 mss:1424 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55304 10.0.0.10:44322 timer(timewait,53sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55306 10.0.0.10:44322 timer(timewait,53sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55308 10.0.0.10:44322 timer(timewait,58sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp ESTAB 0 0 10.0.0.10:44322 10.0.0.10:55342 timer(keepalive,44sec,0) uid:386 inode:165594871 sk:5 cgroup:/system.slice/pmproxy.service <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.05/0.056 ato:40 mss:65483 cwnd:20 pmtu:65535 ssthresh:20 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:65483
|
|
-tcp ESTAB 0 0 10.0.0.10:55694 34.120.177.193:443 timer(keepalive,7.793ms,0) uid:1024 inode:165577700 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d1) ts sack cubic wscale:8,7 rtt:13.091/4.789 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
-tcp ESTAB 0 0 [::1]:3000 [::1]:51232 timer(keepalive,8.488ms,0) uid:378 inode:165581925 sk:5 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.014/0.011 ato:40 mss:65464 cwnd:10 pmtu:65536 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:65464
|
|
-tcp ESTAB 0 0 [::1]:51238 [::1]:3000 timer(keepalive,11sec,0) uid:1024 inode:165581951 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d1) ts sack cubic wscale:7,7 rtt:4.802/9.371 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:65476
|
|
-tcp ESTAB 0 0 [::1]:51240 [::1]:3000 timer(keepalive,15sec,0) uid:1024 inode:165583008 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.783/1.488 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:65476
|
|
-tcp ESTAB 0 0 [::1]:51236 [::1]:3000 timer(keepalive,514ms,0) uid:1024 inode:165575931 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb4585000,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:5.713/10.966 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:98304
|
|
-tcp ESTAB 0 0 [::1]:51228 [::1]:3000 timer(keepalive,3.596ms,0) uid:1024 inode:165582929 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb4978000,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.422/0.763 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:98304
|
|
-tcp ESTAB 0 0 [::1]:51232 [::1]:3000 timer(keepalive,3.596ms,0) uid:1024 inode:165552950 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb4978000,t0,tb2626560,f0,w0,o0,bl0,d3) ts sack cubic wscale:7,7 rtt:8.219/14.257 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:163840
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:57958 142.250.70.238:443 timer(timewait,54sec,0) uid:0 inode:0 sk:183a cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp ESTAB 0 0 10.0.0.10:46306 3.233.54.64:443 timer(keepalive,28sec,0) uid:1024 inode:165592357 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:12,7 rtt:246.45/50.358 ato:40 mss:1448 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
-tcp ESTAB 0 0 10.0.0.10:49614 142.250.70.165:443 uid:1024 inode:165581235 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:10.2/1.047 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55048 10.0.0.10:44322 timer(timewait,8.579ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55060 10.0.0.10:44322 timer(timewait,8.449ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55094 10.0.0.10:44322 timer(timewait,14sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55088 10.0.0.10:44322 timer(timewait,15sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55064 10.0.0.10:44322 timer(timewait,8.577ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55092 10.0.0.10:44322 timer(timewait,13sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55036 10.0.0.10:44322 timer(timewait,3.608ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55038 10.0.0.10:44322 timer(timewait,5.580ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55066 10.0.0.10:44322 timer(timewait,9.605ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55080 10.0.0.10:44322 timer(timewait,12sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55034 10.0.0.10:44322 timer(timewait,4.636ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55050 10.0.0.10:44322 timer(timewait,6.570ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55030 10.0.0.10:44322 timer(timewait,1.618ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55024 10.0.0.10:44322 timer(timewait,1.623ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55020 10.0.0.10:44322 timer(timewait,3.571ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55046 10.0.0.10:44322 timer(timewait,5.577ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55084 10.0.0.10:44322 timer(timewait,12sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55056 10.0.0.10:44322 timer(timewait,7.623ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55032 10.0.0.10:44322 timer(timewait,2.607ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55022 10.0.0.10:44322 timer(timewait,586ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55090 10.0.0.10:44322 timer(timewait,13sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55070 10.0.0.10:44322 timer(timewait,9.625ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55096 10.0.0.10:44322 timer(timewait,14sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55074 10.0.0.10:44322 timer(timewait,16sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55028 10.0.0.10:44322 timer(timewait,2.601ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55044 10.0.0.10:44322 timer(timewait,10sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55026 10.0.0.10:44322 timer(timewait,1.601ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55054 10.0.0.10:44322 timer(timewait,7.474ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55042 10.0.0.10:44322 timer(timewait,6.447ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55062 10.0.0.10:44322 timer(timewait,9.618ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55040 10.0.0.10:44322 timer(timewait,4.635ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55086 10.0.0.10:44322 timer(timewait,13sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55072 10.0.0.10:44322 timer(timewait,10sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55078 10.0.0.10:44322 timer(timewait,11sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55052 10.0.0.10:44322 timer(timewait,6.568ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55082 10.0.0.10:44322 timer(timewait,11sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55068 10.0.0.10:44322 timer(timewait,11sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55014 10.0.0.10:44322 timer(timewait,581ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55058 10.0.0.10:44322 timer(timewait,7.617ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55104 10.0.0.10:44322 timer(timewait,25sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55116 10.0.0.10:44322 timer(timewait,18sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55112 10.0.0.10:44322 timer(timewait,19sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55114 10.0.0.10:44322 timer(timewait,18sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55102 10.0.0.10:44322 timer(timewait,16sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55118 10.0.0.10:44322 timer(timewait,19sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55100 10.0.0.10:44322 timer(timewait,18sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55108 10.0.0.10:44322 timer(timewait,17sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55110 10.0.0.10:44322 timer(timewait,17sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55106 10.0.0.10:44322 timer(timewait,16sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55122 10.0.0.10:44322 timer(timewait,20sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55150 10.0.0.10:44322 timer(timewait,24sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55130 10.0.0.10:44322 timer(timewait,20sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55134 10.0.0.10:44322 timer(timewait,21sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55146 10.0.0.10:44322 timer(timewait,24sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55144 10.0.0.10:44322 timer(timewait,23sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55148 10.0.0.10:44322 timer(timewait,31sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55126 10.0.0.10:44322 timer(timewait,22sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55132 10.0.0.10:44322 timer(timewait,21sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55124 10.0.0.10:44322 timer(timewait,20sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55140 10.0.0.10:44322 timer(timewait,24sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55138 10.0.0.10:44322 timer(timewait,22sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55136 10.0.0.10:44322 timer(timewait,22sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55142 10.0.0.10:44322 timer(timewait,23sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55154 10.0.0.10:44322 timer(timewait,25sec,0) uid:0 inode:0 sk:ef49 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55162 10.0.0.10:44322 timer(timewait,29sec,0) uid:0 inode:0 sk:ef4a cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55156 10.0.0.10:44322 timer(timewait,26sec,0) uid:0 inode:0 sk:ef4b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55164 10.0.0.10:44322 timer(timewait,27sec,0) uid:0 inode:0 sk:17ed cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55174 10.0.0.10:44322 timer(timewait,32sec,0) uid:0 inode:0 sk:17ed cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55176 10.0.0.10:44322 timer(timewait,29sec,0) uid:0 inode:0 sk:17ed cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55172 10.0.0.10:44322 timer(timewait,29sec,0) uid:0 inode:0 sk:17ed cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55152 10.0.0.10:44322 timer(timewait,27sec,0) uid:0 inode:0 sk:17ed cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55168 10.0.0.10:44322 timer(timewait,28sec,0) uid:0 inode:0 sk:ef4c cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55160 10.0.0.10:44322 timer(timewait,26sec,0) uid:0 inode:0 sk:ef4d cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55158 10.0.0.10:44322 timer(timewait,26sec,0) uid:0 inode:0 sk:ef4e cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55166 10.0.0.10:44322 timer(timewait,28sec,0) uid:0 inode:0 sk:ef50 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55200 10.0.0.10:44322 timer(timewait,33sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55178 10.0.0.10:44322 timer(timewait,30sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55186 10.0.0.10:44322 timer(timewait,31sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55190 10.0.0.10:44322 timer(timewait,33sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55184 10.0.0.10:44322 timer(timewait,40sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55206 10.0.0.10:44322 timer(timewait,34sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55182 10.0.0.10:44322 timer(timewait,31sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55194 10.0.0.10:44322 timer(timewait,33sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55204 10.0.0.10:44322 timer(timewait,34sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55210 10.0.0.10:44322 timer(timewait,34sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55188 10.0.0.10:44322 timer(timewait,32sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55196 10.0.0.10:44322 timer(timewait,35sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55180 10.0.0.10:44322 timer(timewait,30sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55232 10.0.0.10:44322 timer(timewait,39sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55216 10.0.0.10:44322 timer(timewait,37sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55218 10.0.0.10:44322 timer(timewait,36sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55222 10.0.0.10:44322 timer(timewait,38sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55224 10.0.0.10:44322 timer(timewait,37sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55226 10.0.0.10:44322 timer(timewait,38sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55228 10.0.0.10:44322 timer(timewait,44sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55220 10.0.0.10:44322 timer(timewait,37sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55214 10.0.0.10:44322 timer(timewait,36sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55230 10.0.0.10:44322 timer(timewait,39sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55212 10.0.0.10:44322 timer(timewait,35sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55260 10.0.0.10:44322 timer(timewait,46sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55238 10.0.0.10:44322 timer(timewait,41sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55240 10.0.0.10:44322 timer(timewait,42sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55248 10.0.0.10:44322 timer(timewait,42sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55244 10.0.0.10:44322 timer(timewait,42sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55234 10.0.0.10:44322 timer(timewait,40sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55250 10.0.0.10:44322 timer(timewait,43sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55262 10.0.0.10:44322 timer(timewait,45sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55242 10.0.0.10:44322 timer(timewait,41sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55256 10.0.0.10:44322 timer(timewait,43sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55236 10.0.0.10:44322 timer(timewait,41sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55254 10.0.0.10:44322 timer(timewait,44sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55286 10.0.0.10:44322 timer(timewait,48sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55272 10.0.0.10:44322 timer(timewait,48sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55268 10.0.0.10:44322 timer(timewait,47sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55288 10.0.0.10:44322 timer(timewait,49sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55274 10.0.0.10:44322 timer(timewait,47sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55276 10.0.0.10:44322 timer(timewait,47sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55266 10.0.0.10:44322 timer(timewait,45sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55278 10.0.0.10:44322 timer(timewait,49sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55282 10.0.0.10:44322 timer(timewait,48sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55270 10.0.0.10:44322 timer(timewait,46sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55280 10.0.0.10:44322 timer(timewait,47sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55284 10.0.0.10:44322 timer(timewait,50sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55292 10.0.0.10:44322 timer(timewait,51sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55298 10.0.0.10:44322 timer(timewait,51sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55300 10.0.0.10:44322 timer(timewait,54sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55302 10.0.0.10:44322 timer(timewait,52sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55310 10.0.0.10:44322 timer(timewait,55sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55296 10.0.0.10:44322 timer(timewait,52sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55294 10.0.0.10:44322 timer(timewait,50sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55312 10.0.0.10:44322 timer(timewait,54sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55334 10.0.0.10:44322 timer(timewait,58sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55320 10.0.0.10:44322 timer(timewait,55sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55326 10.0.0.10:44322 timer(timewait,57sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55330 10.0.0.10:44322 timer(timewait,59sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55322 10.0.0.10:44322 timer(timewait,56sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55340 10.0.0.10:44322 timer(timewait,59sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55318 10.0.0.10:44322 timer(timewait,56sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55338 10.0.0.10:44322 timer(timewait,58sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55328 10.0.0.10:44322 timer(timewait,57sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp ESTAB 0 0 10.0.0.10:55342 10.0.0.10:44322 timer(keepalive,29sec,0) uid:378 inode:165616642 sk:5 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb2882418,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.041/0.024 ato:40 mss:32768 cwnd:10 pmtu:65535 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:73728
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55316 10.0.0.10:44322 timer(timewait,55sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp ESTAB 0 0 10.0.0.10:55332 10.0.0.10:44322 timer(keepalive,28sec,0) uid:378 inode:165581545 sk:5 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb4454646,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:3.728/6.7 ato:40 mss:32768 cwnd:10 pmtu:65535 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:105770
|
|
+tcp ESTAB 0 0 [::ffff:127.0.0.1]:3000 [::ffff:127.0.0.1]:49798 timer(keepalive,5.265ms,0) uid:378 inode:164821548 sk:17e9 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb2358342,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.033/0.018 ato:40 mss:32768 cwnd:10 pmtu:65535 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:65664
|
|
+tcp ESTAB 0 0 127.0.0.1:6379 127.0.0.1:34526 timer(keepalive,299ms,0) uid:379 inode:164789635 sk:17e9 cgroup:/system.slice/redis.service <-> skmem(r0,rb6291456,t0,tb4194304,f0,w0,o0,bl0,d226) ts sack cubic wscale:7,7 rtt:5.268/10.344 ato:40 mss:65483 cwnd:51 pmtu:65535 ssthresh:27 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:1379162
|
|
+tcp ESTAB 0 0 10.40.192.134:47862 10.0.15.20:6667 timer(keepalive,2min48sec,0) uid:1024 inode:143267906 sk:39 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb181972,t0,tb46080,f0,w0,o0,bl0,d56) ts sack cubic wscale:8,7 rtt:456.275/44.255 ato:40 mss:1308 cwnd:2 pmtu:1360 ssthresh:2 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:19026
|
|
+tcp ESTAB 0 0 10.0.0.10:58310 52.88.142.33:443 timer(keepalive,1min53sec,0) uid:1024 inode:143231822 sk:39 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d4) ts sack cubic wscale:8,7 rtt:211.152/22.951 ato:40 mss:1448 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:44852 202.58.9.228:443 timer(keepalive,3.777ms,0) uid:1024 inode:143675936 sk:39 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d1770) sack cubic wscale:9,7 rtt:98.707/11.472 ato:40 mss:1460 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14600
|
|
+tcp ESTAB 0 0 10.0.0.10:37330 217.182.79.119:6667 timer(keepalive,3min20sec,0) uid:1024 inode:147037462 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2467768,t0,tb87040,f0,w0,o0,bl0,d15) ts sack cubic wscale:7,7 rtt:381.926/27.664 ato:40 mss:1448 cwnd:2 pmtu:1500 ssthresh:2 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:64371
|
|
+tcp ESTAB 0 0 192.168.122.1:53100 192.168.122.54:22 timer(keepalive,1min43sec,0) uid:1024 inode:152890200 sk:3a cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d11) ts sack cubic wscale:7,7 rtt:6.415/11.95 ato:40 mss:1448 cwnd:20 pmtu:1500 ssthresh:20 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:52874 199.127.207.181:443 timer(keepalive,28sec,0) uid:1024 inode:154981923 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d433) sack cubic wscale:9,7 rtt:231.99/42.333 ato:40 mss:1460 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14600
|
|
+tcp ESTAB 0 0 10.0.0.10:33256 10.0.0.6:8009 timer(keepalive,19sec,0) uid:1024 inode:161634072 sk:3a cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2554304,t0,tb87040,f0,w0,o0,bl0,d1) ts sack cubic wscale:6,7 rtt:7.326/1.581 ato:40 mss:1448 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:65491
|
|
+tcp ESTAB 0 0 10.0.0.10:45164 173.194.202.125:443 timer(keepalive,28sec,0) uid:1024 inode:161888302 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f4096,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:228.663/49.231 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:37256 157.240.8.18:443 timer(keepalive,2min13sec,0) uid:1024 inode:163353710 sk:262 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb1623296,t0,tb46080,f4096,w0,o0,bl0,d37) ts sack cubic wscale:8,7 rtt:21.667/1.031 ato:40 mss:1380 cwnd:22 pmtu:1500 ssthresh:22 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:87463
|
|
+tcp ESTAB 0 0 10.0.0.10:40226 13.54.123.156:443 timer(keepalive,28sec,0) uid:1024 inode:163971400 sk:3b cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2673664,t0,tb46080,f0,w0,o0,bl0,d0) ts sack cubic wscale:12,7 rtt:23.063/0.882 ato:46 mss:1288 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:67012
|
|
+tcp ESTAB 0 0 10.0.0.10:40232 13.54.123.156:443 timer(keepalive,15sec,0) uid:1024 inode:164254779 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2730360,t0,tb46080,f0,w0,o0,bl0,d0) ts sack cubic wscale:12,7 rtt:21.7/0.326 ato:42 mss:1288 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:67755
|
|
+tcp ESTAB 0 0 10.0.0.10:39906 172.217.194.188:5228 timer(keepalive,15sec,0) uid:1024 inode:164287111 sk:eacd cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:94.893/7.701 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp ESTAB 0 0 127.0.0.1:34526 127.0.0.1:6379 timer(keepalive,646ms,0) uid:386 inode:164791620 sk:ef22 cgroup:/system.slice/pmproxy.service <-> skmem(r0,rb4978722,t0,tb4194304,f0,w0,o0,bl0,d397) ts sack cubic wscale:7,7 rtt:0.217/0.167 ato:40 mss:65483 cwnd:36 pmtu:65535 ssthresh:16 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:245440
|
|
+tcp ESTAB 0 0 127.0.0.1:49798 127.0.0.1:3000 uid:0 inode:164815425 sk:17e9 cgroup:/system.slice/pmcd.service <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:6.023/4.348 ato:40 mss:65483 cwnd:10 pmtu:65535 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:65495
|
|
+udp ESTAB 0 0 10.0.0.10:36244 142.250.70.138:443 uid:1024 inode:165293889 sk:f231 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+udp ESTAB 0 0 10.0.0.10:35754 142.251.10.189:443 uid:1024 inode:165318004 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+udp ESTAB 0 0 10.0.0.10:49123 142.250.4.189:443 uid:1024 inode:165373416 sk:ef33 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:40218 142.250.70.142:443 uid:1024 inode:165413160 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d16) ts sack cubic wscale:8,7 rtt:10.194/0.696 ato:40 mss:1418 cwnd:3 pmtu:1500 ssthresh:2 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:43990 142.250.70.131:443 uid:1024 inode:165420073 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:9.826/0.515 ato:40 mss:1418 cwnd:4 pmtu:1500 ssthresh:4 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:44388 142.250.4.189:443 uid:1024 inode:165419510 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f4096,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:96.696/2.871 ato:40 mss:1418 cwnd:7 pmtu:1500 ssthresh:7 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:34914 142.250.70.234:443 uid:1024 inode:165418039 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f4096,w0,o0,bl0,d11) ts sack cubic wscale:8,7 rtt:10.278/0.678 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:34916 142.250.70.234:443 uid:1024 inode:165418040 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d9) ts sack cubic wscale:8,7 rtt:10.081/1.167 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:49594 142.250.70.165:443 timer(timewait,41sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:57232 157.240.8.35:443 uid:1024 inode:165408121 sk:1781 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb46080,f8192,w0,o0,bl0,d4) ts sack cubic wscale:8,7 rtt:23.193/1.8 ato:40 mss:1380 cwnd:2 pmtu:1500 ssthresh:2 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+udp ESTAB 0 0 10.0.0.10:44639 142.250.70.131:443 uid:1024 inode:165411837 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:46392 142.251.10.189:443 uid:1024 inode:165466671 sk:f23b cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f4096,w0,o0,bl0,d3) ts sack cubic wscale:8,7 rtt:111.69/24.888 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+udp ESTAB 0 0 10.0.0.10:35983 142.250.70.142:443 uid:1024 inode:165466809 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:55532 140.82.114.26:443 timer(keepalive,29sec,0) uid:1024 inode:165515920 sk:17eb cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:10,7 rtt:248.861/32.644 ato:40 mss:1424 cwnd:20 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:55534 140.82.114.26:443 timer(keepalive,2.767ms,0) uid:1024 inode:165521771 sk:ef38 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:10,7 rtt:283.095/41.806 ato:40 mss:1424 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55304 10.0.0.10:44322 timer(timewait,53sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55306 10.0.0.10:44322 timer(timewait,53sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55308 10.0.0.10:44322 timer(timewait,58sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:44322 10.0.0.10:55342 timer(keepalive,44sec,0) uid:386 inode:165594871 sk:5 cgroup:/system.slice/pmproxy.service <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.05/0.056 ato:40 mss:65483 cwnd:20 pmtu:65535 ssthresh:20 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:65483
|
|
+tcp ESTAB 0 0 10.0.0.10:55694 34.120.177.193:443 timer(keepalive,7.793ms,0) uid:1024 inode:165577700 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d1) ts sack cubic wscale:8,7 rtt:13.091/4.789 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp ESTAB 0 0 [::1]:3000 [::1]:51232 timer(keepalive,8.488ms,0) uid:378 inode:165581925 sk:5 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.014/0.011 ato:40 mss:65464 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:65464
|
|
+tcp ESTAB 0 0 [::1]:51238 [::1]:3000 timer(keepalive,11sec,0) uid:1024 inode:165581951 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d1) ts sack cubic wscale:7,7 rtt:4.802/9.371 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:65476
|
|
+tcp ESTAB 0 0 [::1]:51240 [::1]:3000 timer(keepalive,15sec,0) uid:1024 inode:165583008 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.783/1.488 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:65476
|
|
+tcp ESTAB 0 0 [::1]:51236 [::1]:3000 timer(keepalive,514ms,0) uid:1024 inode:165575931 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb4585000,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:5.713/10.966 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:98304
|
|
+tcp ESTAB 0 0 [::1]:51228 [::1]:3000 timer(keepalive,3.596ms,0) uid:1024 inode:165582929 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb4978000,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.422/0.763 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:98304
|
|
+tcp ESTAB 0 0 [::1]:51232 [::1]:3000 timer(keepalive,3.596ms,0) uid:1024 inode:165552950 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb4978000,t0,tb2626560,f0,w0,o0,bl0,d3) ts sack cubic wscale:7,7 rtt:8.219/14.257 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:163840
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:57958 142.250.70.238:443 timer(timewait,54sec,0) uid:0 inode:0 sk:183a cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:46306 3.233.54.64:443 timer(keepalive,28sec,0) uid:1024 inode:165592357 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:12,7 rtt:246.45/50.358 ato:40 mss:1448 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:49614 142.250.70.165:443 uid:1024 inode:165581235 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:10.2/1.047 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55048 10.0.0.10:44322 timer(timewait,8.579ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55060 10.0.0.10:44322 timer(timewait,8.449ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55094 10.0.0.10:44322 timer(timewait,14sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55088 10.0.0.10:44322 timer(timewait,15sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55064 10.0.0.10:44322 timer(timewait,8.577ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55092 10.0.0.10:44322 timer(timewait,13sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55036 10.0.0.10:44322 timer(timewait,3.608ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55038 10.0.0.10:44322 timer(timewait,5.580ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55066 10.0.0.10:44322 timer(timewait,9.605ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55080 10.0.0.10:44322 timer(timewait,12sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55034 10.0.0.10:44322 timer(timewait,4.636ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55050 10.0.0.10:44322 timer(timewait,6.570ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55030 10.0.0.10:44322 timer(timewait,1.618ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55024 10.0.0.10:44322 timer(timewait,1.623ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55020 10.0.0.10:44322 timer(timewait,3.571ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55046 10.0.0.10:44322 timer(timewait,5.577ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55084 10.0.0.10:44322 timer(timewait,12sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55056 10.0.0.10:44322 timer(timewait,7.623ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55032 10.0.0.10:44322 timer(timewait,2.607ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55022 10.0.0.10:44322 timer(timewait,586ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55090 10.0.0.10:44322 timer(timewait,13sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55070 10.0.0.10:44322 timer(timewait,9.625ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55096 10.0.0.10:44322 timer(timewait,14sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55074 10.0.0.10:44322 timer(timewait,16sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55028 10.0.0.10:44322 timer(timewait,2.601ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55044 10.0.0.10:44322 timer(timewait,10sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55026 10.0.0.10:44322 timer(timewait,1.601ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55054 10.0.0.10:44322 timer(timewait,7.474ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55042 10.0.0.10:44322 timer(timewait,6.447ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55062 10.0.0.10:44322 timer(timewait,9.618ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55040 10.0.0.10:44322 timer(timewait,4.635ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55086 10.0.0.10:44322 timer(timewait,13sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55072 10.0.0.10:44322 timer(timewait,10sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55078 10.0.0.10:44322 timer(timewait,11sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55052 10.0.0.10:44322 timer(timewait,6.568ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55082 10.0.0.10:44322 timer(timewait,11sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55068 10.0.0.10:44322 timer(timewait,11sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55014 10.0.0.10:44322 timer(timewait,581ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55058 10.0.0.10:44322 timer(timewait,7.617ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55104 10.0.0.10:44322 timer(timewait,25sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55116 10.0.0.10:44322 timer(timewait,18sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55112 10.0.0.10:44322 timer(timewait,19sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55114 10.0.0.10:44322 timer(timewait,18sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55102 10.0.0.10:44322 timer(timewait,16sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55118 10.0.0.10:44322 timer(timewait,19sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55100 10.0.0.10:44322 timer(timewait,18sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55108 10.0.0.10:44322 timer(timewait,17sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55110 10.0.0.10:44322 timer(timewait,17sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55106 10.0.0.10:44322 timer(timewait,16sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55122 10.0.0.10:44322 timer(timewait,20sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55150 10.0.0.10:44322 timer(timewait,24sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55130 10.0.0.10:44322 timer(timewait,20sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55134 10.0.0.10:44322 timer(timewait,21sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55146 10.0.0.10:44322 timer(timewait,24sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55144 10.0.0.10:44322 timer(timewait,23sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55148 10.0.0.10:44322 timer(timewait,31sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55126 10.0.0.10:44322 timer(timewait,22sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55132 10.0.0.10:44322 timer(timewait,21sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55124 10.0.0.10:44322 timer(timewait,20sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55140 10.0.0.10:44322 timer(timewait,24sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55138 10.0.0.10:44322 timer(timewait,22sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55136 10.0.0.10:44322 timer(timewait,22sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55142 10.0.0.10:44322 timer(timewait,23sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55154 10.0.0.10:44322 timer(timewait,25sec,0) uid:0 inode:0 sk:ef49 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55162 10.0.0.10:44322 timer(timewait,29sec,0) uid:0 inode:0 sk:ef4a cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55156 10.0.0.10:44322 timer(timewait,26sec,0) uid:0 inode:0 sk:ef4b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55164 10.0.0.10:44322 timer(timewait,27sec,0) uid:0 inode:0 sk:17ed cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55174 10.0.0.10:44322 timer(timewait,32sec,0) uid:0 inode:0 sk:17ed cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55176 10.0.0.10:44322 timer(timewait,29sec,0) uid:0 inode:0 sk:17ed cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55172 10.0.0.10:44322 timer(timewait,29sec,0) uid:0 inode:0 sk:17ed cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55152 10.0.0.10:44322 timer(timewait,27sec,0) uid:0 inode:0 sk:17ed cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55168 10.0.0.10:44322 timer(timewait,28sec,0) uid:0 inode:0 sk:ef4c cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55160 10.0.0.10:44322 timer(timewait,26sec,0) uid:0 inode:0 sk:ef4d cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55158 10.0.0.10:44322 timer(timewait,26sec,0) uid:0 inode:0 sk:ef4e cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55166 10.0.0.10:44322 timer(timewait,28sec,0) uid:0 inode:0 sk:ef50 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55200 10.0.0.10:44322 timer(timewait,33sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55178 10.0.0.10:44322 timer(timewait,30sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55186 10.0.0.10:44322 timer(timewait,31sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55190 10.0.0.10:44322 timer(timewait,33sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55184 10.0.0.10:44322 timer(timewait,40sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55206 10.0.0.10:44322 timer(timewait,34sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55182 10.0.0.10:44322 timer(timewait,31sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55194 10.0.0.10:44322 timer(timewait,33sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55204 10.0.0.10:44322 timer(timewait,34sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55210 10.0.0.10:44322 timer(timewait,34sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55188 10.0.0.10:44322 timer(timewait,32sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55196 10.0.0.10:44322 timer(timewait,35sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55180 10.0.0.10:44322 timer(timewait,30sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55232 10.0.0.10:44322 timer(timewait,39sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55216 10.0.0.10:44322 timer(timewait,37sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55218 10.0.0.10:44322 timer(timewait,36sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55222 10.0.0.10:44322 timer(timewait,38sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55224 10.0.0.10:44322 timer(timewait,37sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55226 10.0.0.10:44322 timer(timewait,38sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55228 10.0.0.10:44322 timer(timewait,44sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55220 10.0.0.10:44322 timer(timewait,37sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55214 10.0.0.10:44322 timer(timewait,36sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55230 10.0.0.10:44322 timer(timewait,39sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55212 10.0.0.10:44322 timer(timewait,35sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55260 10.0.0.10:44322 timer(timewait,46sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55238 10.0.0.10:44322 timer(timewait,41sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55240 10.0.0.10:44322 timer(timewait,42sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55248 10.0.0.10:44322 timer(timewait,42sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55244 10.0.0.10:44322 timer(timewait,42sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55234 10.0.0.10:44322 timer(timewait,40sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55250 10.0.0.10:44322 timer(timewait,43sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55262 10.0.0.10:44322 timer(timewait,45sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55242 10.0.0.10:44322 timer(timewait,41sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55256 10.0.0.10:44322 timer(timewait,43sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55236 10.0.0.10:44322 timer(timewait,41sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55254 10.0.0.10:44322 timer(timewait,44sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55286 10.0.0.10:44322 timer(timewait,48sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55272 10.0.0.10:44322 timer(timewait,48sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55268 10.0.0.10:44322 timer(timewait,47sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55288 10.0.0.10:44322 timer(timewait,49sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55274 10.0.0.10:44322 timer(timewait,47sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55276 10.0.0.10:44322 timer(timewait,47sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55266 10.0.0.10:44322 timer(timewait,45sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55278 10.0.0.10:44322 timer(timewait,49sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55282 10.0.0.10:44322 timer(timewait,48sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55270 10.0.0.10:44322 timer(timewait,46sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55280 10.0.0.10:44322 timer(timewait,47sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55284 10.0.0.10:44322 timer(timewait,50sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55292 10.0.0.10:44322 timer(timewait,51sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55298 10.0.0.10:44322 timer(timewait,51sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55300 10.0.0.10:44322 timer(timewait,54sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55302 10.0.0.10:44322 timer(timewait,52sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55310 10.0.0.10:44322 timer(timewait,55sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55296 10.0.0.10:44322 timer(timewait,52sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55294 10.0.0.10:44322 timer(timewait,50sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55312 10.0.0.10:44322 timer(timewait,54sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55334 10.0.0.10:44322 timer(timewait,58sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55320 10.0.0.10:44322 timer(timewait,55sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55326 10.0.0.10:44322 timer(timewait,57sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55330 10.0.0.10:44322 timer(timewait,59sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55322 10.0.0.10:44322 timer(timewait,56sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55340 10.0.0.10:44322 timer(timewait,59sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55318 10.0.0.10:44322 timer(timewait,56sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55338 10.0.0.10:44322 timer(timewait,58sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55328 10.0.0.10:44322 timer(timewait,57sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:55342 10.0.0.10:44322 timer(keepalive,29sec,0) uid:378 inode:165616642 sk:5 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb2882418,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.041/0.024 ato:40 mss:32768 cwnd:10 pmtu:65535 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:73728
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55316 10.0.0.10:44322 timer(timewait,55sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:55332 10.0.0.10:44322 timer(keepalive,28sec,0) uid:378 inode:165581545 sk:5 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb4454646,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:3.728/6.7 ato:40 mss:32768 cwnd:10 pmtu:65535 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:105770
|
|
|
|
pcp-ss output, at 10s offset
|
|
# Time: 2021-06-18 13:33:39.076141 Filter: state connected
|
|
Netid State Recv-Q Send-Q Local Address:Port Peer Address:Port Process
|
|
-tcp ESTAB 0 0 [::ffff:127.0.0.1]:3000 [::ffff:127.0.0.1]:49798 timer(keepalive,5.031ms,0) uid:378 inode:164821548 sk:17e9 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb2358342,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.029/0.019 ato:40 mss:32768 cwnd:10 pmtu:65535 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:1388 segs_in:1880 send 90394482759bps lastsnd:9969 lastrcv:9971 lastack:9969 pacing_rate 178481021272bps delivery_rate 65536000000bps rcv_space:65664
|
|
-tcp ESTAB 0 0 127.0.0.1:6379 127.0.0.1:34526 timer(keepalive,40sec,0) uid:379 inode:164789635 sk:17e9 cgroup:/system.slice/redis.service <-> skmem(r0,rb6291456,t0,tb4194304,f0,w0,o0,bl0,d191) ts sack cubic wscale:7,7 rtt:5.308/10.357 ato:40 mss:65483 cwnd:37 pmtu:65535 ssthresh:27 bytes_acked:0 bytes_received:0 segs_out:100169 segs_in:51994 send 3651651846bps lastsnd:609 lastrcv:609 lastack:568 pacing_rate 4381982208bps delivery_rate 69848533328bps rcv_space:1379162
|
|
-tcp ESTAB 23 0 10.40.192.134:47862 10.0.15.20:6667 timer(on,614ms,0) uid:1024 inode:143267906 sk:39 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb181972,t0,tb46080,f2793,w1303,o0,bl0,d56) ts sack cubic wscale:8,7 rtt:453.799/37.471 ato:40 mss:1308 cwnd:2 pmtu:1360 ssthresh:2 bytes_acked:0 bytes_received:0 segs_out:117097 segs_in:108401 send 46117bps lastsnd:40 lastrcv:6050 lastack:22432 pacing_rate 55336bps delivery_rate 24936bps rcv_space:19026
|
|
-tcp ESTAB 0 0 10.0.0.10:58310 52.88.142.33:443 timer(keepalive,2min33sec,0) uid:1024 inode:143231822 sk:39 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d4) ts sack cubic wscale:8,7 rtt:211.152/22.951 ato:40 mss:1448 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:2072 segs_in:2598 send 548610bps lastsnd:146234 lastrcv:146236 lastack:146029 pacing_rate 1097216bps delivery_rate 120648bps rcv_space:14480
|
|
-tcp ESTAB 0 0 10.0.0.10:44852 202.58.9.228:443 timer(keepalive,43sec,0) uid:1024 inode:143675936 sk:39 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d1769) sack cubic wscale:9,7 rtt:98.707/11.472 ato:40 mss:1460 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:8675 segs_in:8669 send 1183300bps lastsnd:8818069 lastrcv:8817969 lastack:1340 pacing_rate 2366592bps delivery_rate 480352bps rcv_space:14600
|
|
-tcp ESTAB 23 0 10.0.0.10:37330 217.182.79.119:6667 timer(on,543ms,0) uid:1024 inode:147037462 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2467768,t0,tb87040,f2793,w1303,o0,bl0,d15) ts sack cubic wscale:7,7 rtt:377.613/33.401 ato:40 mss:1448 cwnd:2 pmtu:1500 ssthresh:2 bytes_acked:0 bytes_received:0 segs_out:13042 segs_in:6567 send 61354bps lastsnd:39 lastrcv:29806 lastack:29806 pacing_rate 73624bps delivery_rate 36280bps rcv_space:64371
|
|
-tcp ESTAB 0 0 192.168.122.1:53100 192.168.122.54:22 timer(keepalive,2min22sec,0) uid:1024 inode:152890200 sk:3a cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d11) ts sack cubic wscale:7,7 rtt:6.415/11.95 ato:40 mss:1448 cwnd:20 pmtu:1500 ssthresh:20 bytes_acked:0 bytes_received:0 segs_out:2145 segs_in:1352 send 36115355bps lastsnd:6216424 lastrcv:6216231 lastack:157163 pacing_rate 43332512bps delivery_rate 1079864400bps rcv_space:14480
|
|
-tcp ESTAB 0 0 10.0.0.10:52874 199.127.207.181:443 timer(keepalive,23sec,0) uid:1024 inode:154981923 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d433) sack cubic wscale:9,7 rtt:231.99/42.333 ato:40 mss:1460 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:2107 segs_in:2102 send 503470bps lastsnd:78116165 lastrcv:78116159 lastack:21772 pacing_rate 1006936bps delivery_rate 206000bps rcv_space:14600
|
|
-tcp ESTAB 0 0 10.0.0.10:33256 10.0.0.6:8009 timer(keepalive,14sec,0) uid:1024 inode:161634072 sk:3a cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2554304,t0,tb87040,f0,w0,o0,bl0,d1) ts sack cubic wscale:6,7 rtt:7.135/1.044 ato:40 mss:1448 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:13349 segs_in:6686 send 16235459bps lastsnd:524 lastrcv:516 lastack:516 pacing_rate 32468640bps delivery_rate 7613536bps rcv_space:65491
|
|
-tcp ESTAB 0 0 10.0.0.10:45164 173.194.202.125:443 timer(keepalive,23sec,0) uid:1024 inode:161888302 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:228.663/49.231 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:890 segs_in:895 send 496101bps lastsnd:207468 lastrcv:207250 lastack:21813 pacing_rate 992200bps delivery_rate 103864bps rcv_space:14480
|
|
-tcp ESTAB 0 0 10.0.0.10:37256 157.240.8.18:443 timer(keepalive,2min53sec,0) uid:1024 inode:163353710 sk:262 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb1623296,t0,tb46080,f0,w0,o0,bl0,d37) ts sack cubic wscale:8,7 rtt:21.5/0.94 ato:40 mss:1380 cwnd:22 pmtu:1500 ssthresh:22 bytes_acked:0 bytes_received:0 segs_out:4414 segs_in:4458 send 11296744bps lastsnd:1471 lastrcv:1255 lastack:1449 pacing_rate 13556008bps delivery_rate 9819152bps rcv_space:87463
|
|
-tcp ESTAB 0 0 10.0.0.10:40226 13.54.123.156:443 timer(keepalive,8.158ms,0) uid:1024 inode:163971400 sk:3b cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2673664,t0,tb46080,f0,w0,o0,bl0,d0) ts sack cubic wscale:12,7 rtt:23.038/1.11 ato:46 mss:1288 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:671 segs_in:482 send 4472610bps lastsnd:22123 lastrcv:22098 lastack:22098 pacing_rate 8945216bps delivery_rate 1318208bps rcv_space:67012
|
|
-tcp ESTAB 0 0 10.0.0.10:40232 13.54.123.156:443 timer(keepalive,15sec,0) uid:1024 inode:164254779 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2730360,t0,tb46080,f0,w0,o0,bl0,d0) ts sack cubic wscale:12,7 rtt:21.965/0.395 ato:42 mss:1288 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:842 segs_in:526 send 4691099bps lastsnd:9624 lastrcv:9601 lastack:9601 pacing_rate 9381984bps delivery_rate 1362840bps rcv_space:67755
|
|
-tcp ESTAB 0 0 10.0.0.10:39906 172.217.194.188:5228 timer(keepalive,6.702ms,0) uid:1024 inode:164287111 sk:eacd cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:94.893/7.701 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:187 segs_in:187 send 1195452bps lastsnd:1336001 lastrcv:1335906 lastack:38204 pacing_rate 2390880bps delivery_rate 229032bps rcv_space:14480
|
|
-tcp ESTAB 0 0 127.0.0.1:34526 127.0.0.1:6379 timer(keepalive,10sec,0) uid:386 inode:164791620 sk:ef22 cgroup:/system.slice/pmproxy.service <-> skmem(r0,rb4978722,t0,tb4194304,f0,w0,o0,bl0,d352) ts sack cubic wscale:7,7 rtt:0.301/0.282 ato:40 mss:65483 cwnd:34 pmtu:65535 ssthresh:16 bytes_acked:0 bytes_received:0 segs_out:51994 segs_in:100170 send 59174006645bps lastsnd:609 lastrcv:609 lastack:609 pacing_rate 71008807968bps delivery_rate 104772800000bps rcv_space:245440
|
|
-tcp ESTAB 0 0 127.0.0.1:49798 127.0.0.1:3000 uid:0 inode:164815425 sk:17e9 cgroup:/system.slice/pmcd.service <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:5.821/8.743 ato:40 mss:65483 cwnd:10 pmtu:65535 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:1880 segs_in:1389 send 899955334bps lastsnd:9970 lastrcv:9968 lastack:9968 pacing_rate 1799678784bps delivery_rate 40297230768bps rcv_space:65495
|
|
-udp ESTAB 0 0 10.0.0.10:36244 142.250.70.138:443 uid:1024 inode:165293889 sk:f231 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-udp ESTAB 0 0 10.0.0.10:35754 142.251.10.189:443 uid:1024 inode:165318004 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-udp ESTAB 0 0 10.0.0.10:49123 142.250.4.189:443 uid:1024 inode:165373416 sk:ef33 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp ESTAB 0 0 10.0.0.10:40218 142.250.70.142:443 uid:1024 inode:165413160 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d16) ts sack cubic wscale:8,7 rtt:10.371/0.673 ato:40 mss:1418 cwnd:3 pmtu:1500 ssthresh:2 bytes_acked:0 bytes_received:0 segs_out:493 segs_in:558 send 3281458bps lastsnd:48748 lastrcv:48749 lastack:48739 pacing_rate 3937552bps delivery_rate 2269480bps rcv_space:14480
|
|
-tcp ESTAB 0 0 10.0.0.10:43990 142.250.70.131:443 uid:1024 inode:165420073 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:9.654/0.506 ato:40 mss:1418 cwnd:4 pmtu:1500 ssthresh:4 bytes_acked:0 bytes_received:0 segs_out:246 segs_in:410 send 4700228bps lastsnd:17768 lastrcv:17783 lastack:17759 pacing_rate 5640272bps delivery_rate 2983168bps rcv_space:14480
|
|
-tcp ESTAB 0 0 10.0.0.10:44388 142.250.4.189:443 uid:1024 inode:165419510 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:96.696/2.871 ato:40 mss:1418 cwnd:7 pmtu:1500 ssthresh:7 bytes_acked:0 bytes_received:0 segs_out:207 segs_in:207 send 821213bps lastsnd:17146 lastrcv:17036 lastack:17036 pacing_rate 985448bps delivery_rate 467400bps rcv_space:14480
|
|
-tcp ESTAB 0 0 10.0.0.10:34914 142.250.70.234:443 uid:1024 inode:165418039 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f4096,w0,o0,bl0,d11) ts sack cubic wscale:8,7 rtt:10.278/0.678 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:307 segs_in:321 send 11037167bps lastsnd:11065 lastrcv:10735 lastack:10735 pacing_rate 22073256bps delivery_rate 2827752bps rcv_space:14480
|
|
-tcp ESTAB 0 0 10.0.0.10:34916 142.250.70.234:443 uid:1024 inode:165418040 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d9) ts sack cubic wscale:8,7 rtt:10.081/1.167 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:277 segs_in:301 send 11252852bps lastsnd:11066 lastrcv:11066 lastack:11056 pacing_rate 22505424bps delivery_rate 3209656bps rcv_space:14480
|
|
-tcp ESTAB 0 0 10.0.0.10:49594 142.250.70.165:443 timer(keepalive,6.621ms,0) uid:1024 inode:165410113 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb1074240,t0,tb87040,f0,w0,o0,bl0,d6) ts sack cubic wscale:8,7 rtt:11.987/1.417 ato:40 mss:1418 cwnd:18 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:342 segs_in:404 send 17034454bps lastsnd:218733 lastrcv:218735 lastack:38371 pacing_rate 34068192bps delivery_rate 8192584bps rcv_space:75339
|
|
-tcp ESTAB 0 0 10.0.0.10:57232 157.240.8.35:443 uid:1024 inode:165408121 sk:1781 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb46080,f8192,w0,o0,bl0,d4) ts sack cubic wscale:8,7 rtt:23.193/1.8 ato:40 mss:1380 cwnd:2 pmtu:1500 ssthresh:2 bytes_acked:0 bytes_received:0 segs_out:252 segs_in:206 send 952011bps lastsnd:6934 lastrcv:6458 lastack:6458 pacing_rate 1142400bps delivery_rate 371224bps rcv_space:14480
|
|
-udp ESTAB 0 0 10.0.0.10:44639 142.250.70.131:443 uid:1024 inode:165411837 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp ESTAB 0 0 10.0.0.10:46392 142.251.10.189:443 uid:1024 inode:165466671 sk:f23b cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f4096,w0,o0,bl0,d2) ts sack cubic wscale:8,7 rtt:111.69/24.888 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:135 segs_in:139 send 1015668bps lastsnd:52309 lastrcv:25403 lastack:50572 pacing_rate 2031320bps delivery_rate 335272bps rcv_space:14480
|
|
-udp ESTAB 0 0 10.0.0.10:35983 142.250.70.142:443 uid:1024 inode:165466809 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp ESTAB 0 0 10.0.0.10:55532 140.82.114.26:443 timer(keepalive,9.693ms,0) uid:1024 inode:165515920 sk:17eb cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:10,7 rtt:251.743/35.839 ato:40 mss:1424 cwnd:20 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:49 segs_in:46 send 905050bps lastsnd:20795 lastrcv:20795 lastack:20571 pacing_rate 1810096bps delivery_rate 503048bps rcv_space:14480
|
|
-tcp ESTAB 0 0 10.0.0.10:55534 140.82.114.26:443 timer(keepalive,28sec,0) uid:1024 inode:165521771 sk:ef38 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:10,7 rtt:283.095/41.806 ato:40 mss:1424 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:36 segs_in:38 send 402409bps lastsnd:2669 lastrcv:2669 lastack:2444 pacing_rate 804816bps delivery_rate 73400bps rcv_space:14480
|
|
-tcp ESTAB 0 0 10.0.0.10:55308 142.250.70.228:443 uid:1024 inode:165561257 sk:eb1c cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d3) ts sack cubic wscale:8,7 rtt:11.532/2.782 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:38 segs_in:36 send 9836975bps lastsnd:46596 lastrcv:46586 lastack:46587 pacing_rate 19672664bps delivery_rate 1814168bps rcv_space:14480
|
|
-tcp ESTAB 0 0 10.0.0.10:44322 10.0.0.10:55122 timer(keepalive,44sec,0) uid:386 inode:165594717 sk:5 cgroup:/system.slice/pmproxy.service <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:5.315/10.43 ato:40 mss:65483 cwnd:17 pmtu:65535 ssthresh:17 bytes_acked:0 bytes_received:0 segs_out:65 segs_in:47 send 1675576294bps lastsnd:609 lastrcv:611 lastack:567 pacing_rate 2010691552bps delivery_rate 130966000000bps rcv_space:65483
|
|
-tcp ESTAB 0 0 10.0.0.10:55694 34.120.177.193:443 timer(keepalive,2.525ms,0) uid:1024 inode:165577700 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d1) ts sack cubic wscale:8,7 rtt:13.091/4.789 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:21 segs_in:20 send 8665495bps lastsnd:224263 lastrcv:224265 lastack:42465 pacing_rate 17330160bps delivery_rate 2267288bps rcv_space:14480
|
|
-tcp ESTAB 0 0 [::1]:3000 [::1]:51232 timer(keepalive,4.425ms,0) uid:378 inode:165581925 sk:5 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.392/0.759 ato:40 mss:65464 cwnd:10 pmtu:65536 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:992 segs_in:851 send 13360000000bps lastsnd:607 lastrcv:760 lastack:607 pacing_rate 26677465768bps delivery_rate 174570666664bps rcv_space:65464
|
|
-tcp ESTAB 0 0 [::1]:51238 [::1]:3000 timer(keepalive,6.381ms,0) uid:1024 inode:165581951 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d1) ts sack cubic wscale:7,7 rtt:4.48/8.875 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:626 segs_in:849 send 585142857bps lastsnd:758 lastrcv:616 lastack:616 pacing_rate 1170122464bps delivery_rate 87381333328bps rcv_space:65476
|
|
-tcp ESTAB 0 0 [::1]:51240 [::1]:3000 timer(keepalive,10sec,0) uid:1024 inode:165583008 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:4.388/8.395 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:642 segs_in:867 send 597411121bps lastsnd:764 lastrcv:635 lastack:635 pacing_rate 1194686104bps delivery_rate 87381333328bps rcv_space:65476
|
|
-tcp ESTAB 0 0 [::1]:51236 [::1]:3000 timer(keepalive,40sec,0) uid:1024 inode:165575931 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb4585000,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.942/1.793 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:925 segs_in:1058 send 2782845011bps lastsnd:4761 lastrcv:4697 lastack:4697 pacing_rate 5564213312bps delivery_rate 65536000000bps rcv_space:98304
|
|
-tcp ESTAB 0 0 [::1]:51228 [::1]:3000 timer(keepalive,43sec,0) uid:1024 inode:165582929 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb4978000,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:2.415/4.642 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:842 segs_in:867 send 1085482402bps lastsnd:759 lastrcv:623 lastack:623 pacing_rate 2170964800bps delivery_rate 87381333328bps rcv_space:98304
|
|
-tcp ESTAB 0 0 [::1]:51232 [::1]:3000 timer(keepalive,43sec,0) uid:1024 inode:165552950 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb4978000,t0,tb2626560,f0,w0,o0,bl0,d3) ts sack cubic wscale:7,7 rtt:3.701/7.013 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:851 segs_in:993 send 708305863bps lastsnd:760 lastrcv:607 lastack:607 pacing_rate 1416324704bps delivery_rate 87381333328bps rcv_space:163840
|
|
-tcp ESTAB 0 0 10.0.0.10:57958 142.250.70.238:443 uid:1024 inode:165594185 sk:183a cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d1) ts sack cubic wscale:8,7 rtt:10.608/1.213 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:27 segs_in:27 send 10693816bps lastsnd:18595 lastrcv:18584 lastack:18584 pacing_rate 21387376bps delivery_rate 5058864bps rcv_space:14480
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54774 10.0.0.10:44322 timer(timewait,,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54792 10.0.0.10:44322 timer(timewait,,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54794 10.0.0.10:44322 timer(timewait,2.383ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54796 10.0.0.10:44322 timer(timewait,350ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp ESTAB 0 0 10.0.0.10:46306 3.233.54.64:443 timer(keepalive,23sec,0) uid:1024 inode:165592357 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:12,7 rtt:246.45/50.358 ato:40 mss:1448 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:12 segs_in:12 send 470034bps lastsnd:22071 lastrcv:21847 lastack:21848 pacing_rate 940064bps delivery_rate 120016bps rcv_space:14480
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54784 10.0.0.10:44322 timer(timewait,,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp ESTAB 0 0 10.0.0.10:49614 142.250.70.165:443 uid:1024 inode:165581235 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:10.118/1.177 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:20 segs_in:19 send 11211702bps lastsnd:27596 lastrcv:27584 lastack:27584 pacing_rate 22423400bps delivery_rate 3963936bps rcv_space:14480
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54798 10.0.0.10:44322 timer(timewait,222ms,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54802 10.0.0.10:44322 timer(timewait,3.376ms,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54800 10.0.0.10:44322 timer(timewait,354ms,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-udp ESTAB 0 0 10.0.0.10:37128 142.250.70.138:443 uid:1024 inode:165585835 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-udp ESTAB 0 0 10.0.0.10:49113 142.250.70.131:443 uid:1024 inode:165606514 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54872 10.0.0.10:44322 timer(timewait,14sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55048 10.0.0.10:44322 timer(timewait,48sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55060 10.0.0.10:44322 timer(timewait,48sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55094 10.0.0.10:44322 timer(timewait,54sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54980 10.0.0.10:44322 timer(timewait,34sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54806 10.0.0.10:44322 timer(timewait,1.441ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55088 10.0.0.10:44322 timer(timewait,55sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55064 10.0.0.10:44322 timer(timewait,48sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54956 10.0.0.10:44322 timer(timewait,26sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54826 10.0.0.10:44322 timer(timewait,5.357ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54822 10.0.0.10:44322 timer(timewait,8.347ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54860 10.0.0.10:44322 timer(timewait,13sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55092 10.0.0.10:44322 timer(timewait,53sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55036 10.0.0.10:44322 timer(timewait,43sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55038 10.0.0.10:44322 timer(timewait,45sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55066 10.0.0.10:44322 timer(timewait,49sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55080 10.0.0.10:44322 timer(timewait,52sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54916 10.0.0.10:44322 timer(timewait,23sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55034 10.0.0.10:44322 timer(timewait,44sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54954 10.0.0.10:44322 timer(timewait,25sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54894 10.0.0.10:44322 timer(timewait,19sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54968 10.0.0.10:44322 timer(timewait,28sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54978 10.0.0.10:44322 timer(timewait,30sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54830 10.0.0.10:44322 timer(timewait,7.365ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55012 10.0.0.10:44322 timer(timewait,37sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55050 10.0.0.10:44322 timer(timewait,46sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54896 10.0.0.10:44322 timer(timewait,17sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54838 10.0.0.10:44322 timer(timewait,9.447ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55030 10.0.0.10:44322 timer(timewait,41sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55002 10.0.0.10:44322 timer(timewait,37sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55024 10.0.0.10:44322 timer(timewait,41sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55020 10.0.0.10:44322 timer(timewait,43sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55046 10.0.0.10:44322 timer(timewait,45sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54876 10.0.0.10:44322 timer(timewait,18sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55084 10.0.0.10:44322 timer(timewait,52sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54900 10.0.0.10:44322 timer(timewait,19sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55056 10.0.0.10:44322 timer(timewait,47sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54808 10.0.0.10:44322 timer(timewait,2.383ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54858 10.0.0.10:44322 timer(timewait,10sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55032 10.0.0.10:44322 timer(timewait,42sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55000 10.0.0.10:44322 timer(timewait,35sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54810 10.0.0.10:44322 timer(timewait,4.343ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54898 10.0.0.10:44322 timer(timewait,18sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54874 10.0.0.10:44322 timer(timewait,13sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55022 10.0.0.10:44322 timer(timewait,40sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54892 10.0.0.10:44322 timer(timewait,17sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54882 10.0.0.10:44322 timer(timewait,15sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54964 10.0.0.10:44322 timer(timewait,27sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54834 10.0.0.10:44322 timer(timewait,6.831ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54986 10.0.0.10:44322 timer(timewait,32sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54888 10.0.0.10:44322 timer(timewait,16sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55090 10.0.0.10:44322 timer(timewait,53sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54906 10.0.0.10:44322 timer(timewait,23sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54816 10.0.0.10:44322 timer(timewait,4.219ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54974 10.0.0.10:44322 timer(timewait,30sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55004 10.0.0.10:44322 timer(timewait,36sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54972 10.0.0.10:44322 timer(timewait,28sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54966 10.0.0.10:44322 timer(timewait,27sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55070 10.0.0.10:44322 timer(timewait,49sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55006 10.0.0.10:44322 timer(timewait,38sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54904 10.0.0.10:44322 timer(timewait,20sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54836 10.0.0.10:44322 timer(timewait,7.364ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54988 10.0.0.10:44322 timer(timewait,32sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54902 10.0.0.10:44322 timer(timewait,18sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54914 10.0.0.10:44322 timer(timewait,20sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54976 10.0.0.10:44322 timer(timewait,31sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55096 10.0.0.10:44322 timer(timewait,54sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54824 10.0.0.10:44322 timer(timewait,5.225ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54958 10.0.0.10:44322 timer(timewait,26sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54930 10.0.0.10:44322 timer(timewait,22sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54984 10.0.0.10:44322 timer(timewait,31sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54996 10.0.0.10:44322 timer(timewait,36sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54866 10.0.0.10:44322 timer(timewait,12sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54962 10.0.0.10:44322 timer(timewait,29sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54942 10.0.0.10:44322 timer(timewait,24sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54910 10.0.0.10:44322 timer(timewait,19sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55074 10.0.0.10:44322 timer(timewait,56sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54998 10.0.0.10:44322 timer(timewait,35sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54990 10.0.0.10:44322 timer(timewait,34sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55028 10.0.0.10:44322 timer(timewait,42sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55044 10.0.0.10:44322 timer(timewait,50sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55008 10.0.0.10:44322 timer(timewait,38sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54842 10.0.0.10:44322 timer(timewait,12sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54920 10.0.0.10:44322 timer(timewait,21sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54982 10.0.0.10:44322 timer(timewait,30sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54862 10.0.0.10:44322 timer(timewait,11sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54868 10.0.0.10:44322 timer(timewait,12sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54926 10.0.0.10:44322 timer(timewait,22sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55026 10.0.0.10:44322 timer(timewait,41sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54870 10.0.0.10:44322 timer(timewait,13sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54864 10.0.0.10:44322 timer(timewait,15sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54818 10.0.0.10:44322 timer(timewait,6.800ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54812 10.0.0.10:44322 timer(timewait,5.358ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54992 10.0.0.10:44322 timer(timewait,33sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55018 10.0.0.10:44322 timer(timewait,39sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54960 10.0.0.10:44322 timer(timewait,29sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55054 10.0.0.10:44322 timer(timewait,47sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54928 10.0.0.10:44322 timer(timewait,22sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55042 10.0.0.10:44322 timer(timewait,46sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54852 10.0.0.10:44322 timer(timewait,9.426ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54936 10.0.0.10:44322 timer(timewait,23sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54948 10.0.0.10:44322 timer(timewait,26sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55062 10.0.0.10:44322 timer(timewait,49sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54944 10.0.0.10:44322 timer(timewait,27sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54846 10.0.0.10:44322 timer(timewait,9.223ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55040 10.0.0.10:44322 timer(timewait,44sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54804 10.0.0.10:44322 timer(timewait,1.440ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54850 10.0.0.10:44322 timer(timewait,10sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54884 10.0.0.10:44322 timer(timewait,15sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54938 10.0.0.10:44322 timer(timewait,25sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55086 10.0.0.10:44322 timer(timewait,53sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54840 10.0.0.10:44322 timer(timewait,8.342ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55072 10.0.0.10:44322 timer(timewait,50sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54922 10.0.0.10:44322 timer(timewait,21sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54878 10.0.0.10:44322 timer(timewait,14sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55078 10.0.0.10:44322 timer(timewait,51sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55052 10.0.0.10:44322 timer(timewait,46sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54932 10.0.0.10:44322 timer(timewait,24sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54832 10.0.0.10:44322 timer(timewait,6.800ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54880 10.0.0.10:44322 timer(timewait,16sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54854 10.0.0.10:44322 timer(timewait,11sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55082 10.0.0.10:44322 timer(timewait,51sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54856 10.0.0.10:44322 timer(timewait,10sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54994 10.0.0.10:44322 timer(timewait,33sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55068 10.0.0.10:44322 timer(timewait,51sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55014 10.0.0.10:44322 timer(timewait,40sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55016 10.0.0.10:44322 timer(timewait,39sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54814 10.0.0.10:44322 timer(timewait,3.380ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54820 10.0.0.10:44322 timer(timewait,4.339ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54886 10.0.0.10:44322 timer(timewait,17sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54890 10.0.0.10:44322 timer(timewait,16sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55058 10.0.0.10:44322 timer(timewait,47sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54952 10.0.0.10:44322 timer(timewait,25sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp ESTAB 0 0 10.0.0.10:55104 10.0.0.10:44322 timer(keepalive,26sec,0) uid:378 inode:165606577 sk:5 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb6291456,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:8.43/11.76 ato:40 mss:32768 cwnd:10 pmtu:65535 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:178 segs_in:356 send 310965599bps lastsnd:756 lastrcv:637 lastack:639 pacing_rate 621875864bps delivery_rate 20164923072bps rcv_space:469929
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55116 10.0.0.10:44322 timer(timewait,58sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55112 10.0.0.10:44322 timer(timewait,59sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55114 10.0.0.10:44322 timer(timewait,58sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55102 10.0.0.10:44322 timer(timewait,56sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55118 10.0.0.10:44322 timer(timewait,59sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55100 10.0.0.10:44322 timer(timewait,58sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55108 10.0.0.10:44322 timer(timewait,57sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55110 10.0.0.10:44322 timer(timewait,57sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55106 10.0.0.10:44322 timer(timewait,56sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp ESTAB 0 0 10.0.0.10:55122 10.0.0.10:44322 timer(keepalive,29sec,0) uid:378 inode:165608516 sk:5 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb3013437,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.236/0.425 ato:40 mss:32768 cwnd:10 pmtu:65535 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:47 segs_in:66 send 11107796610bps lastsnd:611 lastrcv:609 lastack:609 pacing_rate 22145216472bps delivery_rate 32768000000bps rcv_space:81920
|
|
+tcp ESTAB 0 0 [::ffff:127.0.0.1]:3000 [::ffff:127.0.0.1]:49798 timer(keepalive,5.031ms,0) uid:378 inode:164821548 sk:17e9 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb2358342,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.029/0.019 ato:40 mss:32768 cwnd:10 pmtu:65535 ssthresh:0 bytes_sent:3077768 bytes_acked:3077768 bytes_received:95302 segs_out:1388 segs_in:1880 send 90394482759bps lastsnd:9969 lastrcv:9971 lastack:9969 pacing_rate 178481021272bps delivery_rate 65536000000bps rcv_space:65664
|
|
+tcp ESTAB 0 0 127.0.0.1:6379 127.0.0.1:34526 timer(keepalive,40sec,0) uid:379 inode:164789635 sk:17e9 cgroup:/system.slice/redis.service <-> skmem(r0,rb6291456,t0,tb4194304,f0,w0,o0,bl0,d191) ts sack cubic wscale:7,7 rtt:5.308/10.357 ato:40 mss:65483 cwnd:37 pmtu:65535 ssthresh:27 bytes_sent:1742159061 bytes_acked:1737331568 bytes_received:348908437 segs_out:100169 segs_in:51994 send 3651651846bps lastsnd:609 lastrcv:609 lastack:568 pacing_rate 4381982208bps delivery_rate 69848533328bps rcv_space:1379162
|
|
+tcp ESTAB 23 0 10.40.192.134:47862 10.0.15.20:6667 timer(on,614ms,0) uid:1024 inode:143267906 sk:39 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb181972,t0,tb46080,f2793,w1303,o0,bl0,d56) ts sack cubic wscale:8,7 rtt:453.799/37.471 ato:40 mss:1308 cwnd:2 pmtu:1360 ssthresh:2 bytes_sent:387993 bytes_acked:386592 bytes_received:72874142 segs_out:117097 segs_in:108401 send 46117bps lastsnd:40 lastrcv:6050 lastack:22432 pacing_rate 55336bps delivery_rate 24936bps rcv_space:19026
|
|
+tcp ESTAB 0 0 10.0.0.10:58310 52.88.142.33:443 timer(keepalive,2min33sec,0) uid:1024 inode:143231822 sk:39 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d4) ts sack cubic wscale:8,7 rtt:211.152/22.951 ato:40 mss:1448 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:46445 bytes_acked:46409 bytes_received:48039 segs_out:2072 segs_in:2598 send 548610bps lastsnd:146234 lastrcv:146236 lastack:146029 pacing_rate 1097216bps delivery_rate 120648bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:44852 202.58.9.228:443 timer(keepalive,43sec,0) uid:1024 inode:143675936 sk:39 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d1769) sack cubic wscale:9,7 rtt:98.707/11.472 ato:40 mss:1460 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:6723 bytes_acked:6724 bytes_received:9572 segs_out:8675 segs_in:8669 send 1183300bps lastsnd:8818069 lastrcv:8817969 lastack:1340 pacing_rate 2366592bps delivery_rate 480352bps rcv_space:14600
|
|
+tcp ESTAB 23 0 10.0.0.10:37330 217.182.79.119:6667 timer(on,543ms,0) uid:1024 inode:147037462 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2467768,t0,tb87040,f2793,w1303,o0,bl0,d15) ts sack cubic wscale:7,7 rtt:377.613/33.401 ato:40 mss:1448 cwnd:2 pmtu:1500 ssthresh:2 bytes_sent:149848 bytes_acked:149435 bytes_received:440822 segs_out:13042 segs_in:6567 send 61354bps lastsnd:39 lastrcv:29806 lastack:29806 pacing_rate 73624bps delivery_rate 36280bps rcv_space:64371
|
|
+tcp ESTAB 0 0 192.168.122.1:53100 192.168.122.54:22 timer(keepalive,2min22sec,0) uid:1024 inode:152890200 sk:3a cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d11) ts sack cubic wscale:7,7 rtt:6.415/11.95 ato:40 mss:1448 cwnd:20 pmtu:1500 ssthresh:20 bytes_sent:65329 bytes_acked:65330 bytes_received:138089 segs_out:2145 segs_in:1352 send 36115355bps lastsnd:6216424 lastrcv:6216231 lastack:157163 pacing_rate 43332512bps delivery_rate 1079864400bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:52874 199.127.207.181:443 timer(keepalive,23sec,0) uid:1024 inode:154981923 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d433) sack cubic wscale:9,7 rtt:231.99/42.333 ato:40 mss:1460 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:3792 bytes_acked:3793 bytes_received:6931 segs_out:2107 segs_in:2102 send 503470bps lastsnd:78116165 lastrcv:78116159 lastack:21772 pacing_rate 1006936bps delivery_rate 206000bps rcv_space:14600
|
|
+tcp ESTAB 0 0 10.0.0.10:33256 10.0.0.6:8009 timer(keepalive,14sec,0) uid:1024 inode:161634072 sk:3a cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2554304,t0,tb87040,f0,w0,o0,bl0,d1) ts sack cubic wscale:6,7 rtt:7.135/1.044 ato:40 mss:1448 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:734660 bytes_acked:734551 bytes_received:739570 segs_out:13349 segs_in:6686 send 16235459bps lastsnd:524 lastrcv:516 lastack:516 pacing_rate 32468640bps delivery_rate 7613536bps rcv_space:65491
|
|
+tcp ESTAB 0 0 10.0.0.10:45164 173.194.202.125:443 timer(keepalive,23sec,0) uid:1024 inode:161888302 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:228.663/49.231 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:11353 bytes_acked:11354 bytes_received:23756 segs_out:890 segs_in:895 send 496101bps lastsnd:207468 lastrcv:207250 lastack:21813 pacing_rate 992200bps delivery_rate 103864bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:37256 157.240.8.18:443 timer(keepalive,2min53sec,0) uid:1024 inode:163353710 sk:262 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb1623296,t0,tb46080,f0,w0,o0,bl0,d37) ts sack cubic wscale:8,7 rtt:21.5/0.94 ato:40 mss:1380 cwnd:22 pmtu:1500 ssthresh:22 bytes_sent:71046 bytes_acked:71015 bytes_received:222343 segs_out:4414 segs_in:4458 send 11296744bps lastsnd:1471 lastrcv:1255 lastack:1449 pacing_rate 13556008bps delivery_rate 9819152bps rcv_space:87463
|
|
+tcp ESTAB 0 0 10.0.0.10:40226 13.54.123.156:443 timer(keepalive,8.158ms,0) uid:1024 inode:163971400 sk:3b cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2673664,t0,tb46080,f0,w0,o0,bl0,d0) ts sack cubic wscale:12,7 rtt:23.038/1.11 ato:46 mss:1288 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:13434 bytes_acked:13435 bytes_received:76107 segs_out:671 segs_in:482 send 4472610bps lastsnd:22123 lastrcv:22098 lastack:22098 pacing_rate 8945216bps delivery_rate 1318208bps rcv_space:67012
|
|
+tcp ESTAB 0 0 10.0.0.10:40232 13.54.123.156:443 timer(keepalive,15sec,0) uid:1024 inode:164254779 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2730360,t0,tb46080,f0,w0,o0,bl0,d0) ts sack cubic wscale:12,7 rtt:21.965/0.395 ato:42 mss:1288 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:21565 bytes_acked:21566 bytes_received:71363 segs_out:842 segs_in:526 send 4691099bps lastsnd:9624 lastrcv:9601 lastack:9601 pacing_rate 9381984bps delivery_rate 1362840bps rcv_space:67755
|
|
+tcp ESTAB 0 0 10.0.0.10:39906 172.217.194.188:5228 timer(keepalive,6.702ms,0) uid:1024 inode:164287111 sk:eacd cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:94.893/7.701 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:893 bytes_acked:894 bytes_received:5528 segs_out:187 segs_in:187 send 1195452bps lastsnd:1336001 lastrcv:1335906 lastack:38204 pacing_rate 2390880bps delivery_rate 229032bps rcv_space:14480
|
|
+tcp ESTAB 0 0 127.0.0.1:34526 127.0.0.1:6379 timer(keepalive,10sec,0) uid:386 inode:164791620 sk:ef22 cgroup:/system.slice/pmproxy.service <-> skmem(r0,rb4978722,t0,tb4194304,f0,w0,o0,bl0,d352) ts sack cubic wscale:7,7 rtt:0.301/0.282 ato:40 mss:65483 cwnd:34 pmtu:65535 ssthresh:16 bytes_sent:349068015 bytes_acked:348908438 bytes_received:1737331568 segs_out:51994 segs_in:100170 send 59174006645bps lastsnd:609 lastrcv:609 lastack:609 pacing_rate 71008807968bps delivery_rate 104772800000bps rcv_space:245440
|
|
+tcp ESTAB 0 0 127.0.0.1:49798 127.0.0.1:3000 uid:0 inode:164815425 sk:17e9 cgroup:/system.slice/pmcd.service <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:5.821/8.743 ato:40 mss:65483 cwnd:10 pmtu:65535 ssthresh:0 bytes_sent:95302 bytes_acked:95303 bytes_received:3077768 segs_out:1880 segs_in:1389 send 899955334bps lastsnd:9970 lastrcv:9968 lastack:9968 pacing_rate 1799678784bps delivery_rate 40297230768bps rcv_space:65495
|
|
+udp ESTAB 0 0 10.0.0.10:36244 142.250.70.138:443 uid:1024 inode:165293889 sk:f231 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+udp ESTAB 0 0 10.0.0.10:35754 142.251.10.189:443 uid:1024 inode:165318004 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+udp ESTAB 0 0 10.0.0.10:49123 142.250.4.189:443 uid:1024 inode:165373416 sk:ef33 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:40218 142.250.70.142:443 uid:1024 inode:165413160 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d16) ts sack cubic wscale:8,7 rtt:10.371/0.673 ato:40 mss:1418 cwnd:3 pmtu:1500 ssthresh:2 bytes_sent:128059 bytes_acked:122619 bytes_received:60993 segs_out:493 segs_in:558 send 3281458bps lastsnd:48748 lastrcv:48749 lastack:48739 pacing_rate 3937552bps delivery_rate 2269480bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:43990 142.250.70.131:443 uid:1024 inode:165420073 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:9.654/0.506 ato:40 mss:1418 cwnd:4 pmtu:1500 ssthresh:4 bytes_sent:10189 bytes_acked:10000 bytes_received:16620 segs_out:246 segs_in:410 send 4700228bps lastsnd:17768 lastrcv:17783 lastack:17759 pacing_rate 5640272bps delivery_rate 2983168bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:44388 142.250.4.189:443 uid:1024 inode:165419510 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:96.696/2.871 ato:40 mss:1418 cwnd:7 pmtu:1500 ssthresh:7 bytes_sent:10276 bytes_acked:9774 bytes_received:14545 segs_out:207 segs_in:207 send 821213bps lastsnd:17146 lastrcv:17036 lastack:17036 pacing_rate 985448bps delivery_rate 467400bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:34914 142.250.70.234:443 uid:1024 inode:165418039 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f4096,w0,o0,bl0,d11) ts sack cubic wscale:8,7 rtt:10.278/0.678 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:22452 bytes_acked:22453 bytes_received:16959 segs_out:307 segs_in:321 send 11037167bps lastsnd:11065 lastrcv:10735 lastack:10735 pacing_rate 22073256bps delivery_rate 2827752bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:34916 142.250.70.234:443 uid:1024 inode:165418040 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d9) ts sack cubic wscale:8,7 rtt:10.081/1.167 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:19775 bytes_acked:19776 bytes_received:15769 segs_out:277 segs_in:301 send 11252852bps lastsnd:11066 lastrcv:11066 lastack:11056 pacing_rate 22505424bps delivery_rate 3209656bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:49594 142.250.70.165:443 timer(keepalive,6.621ms,0) uid:1024 inode:165410113 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb1074240,t0,tb87040,f0,w0,o0,bl0,d6) ts sack cubic wscale:8,7 rtt:11.987/1.417 ato:40 mss:1418 cwnd:18 pmtu:1500 ssthresh:0 bytes_sent:76222 bytes_acked:76223 bytes_received:199808 segs_out:342 segs_in:404 send 17034454bps lastsnd:218733 lastrcv:218735 lastack:38371 pacing_rate 34068192bps delivery_rate 8192584bps rcv_space:75339
|
|
+tcp ESTAB 0 0 10.0.0.10:57232 157.240.8.35:443 uid:1024 inode:165408121 sk:1781 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb46080,f8192,w0,o0,bl0,d4) ts sack cubic wscale:8,7 rtt:23.193/1.8 ato:40 mss:1380 cwnd:2 pmtu:1500 ssthresh:2 bytes_sent:69963 bytes_acked:68311 bytes_received:28389 segs_out:252 segs_in:206 send 952011bps lastsnd:6934 lastrcv:6458 lastack:6458 pacing_rate 1142400bps delivery_rate 371224bps rcv_space:14480
|
|
+udp ESTAB 0 0 10.0.0.10:44639 142.250.70.131:443 uid:1024 inode:165411837 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:46392 142.251.10.189:443 uid:1024 inode:165466671 sk:f23b cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f4096,w0,o0,bl0,d2) ts sack cubic wscale:8,7 rtt:111.69/24.888 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:8645 bytes_acked:8646 bytes_received:12267 segs_out:135 segs_in:139 send 1015668bps lastsnd:52309 lastrcv:25403 lastack:50572 pacing_rate 2031320bps delivery_rate 335272bps rcv_space:14480
|
|
+udp ESTAB 0 0 10.0.0.10:35983 142.250.70.142:443 uid:1024 inode:165466809 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:55532 140.82.114.26:443 timer(keepalive,9.693ms,0) uid:1024 inode:165515920 sk:17eb cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:10,7 rtt:251.743/35.839 ato:40 mss:1424 cwnd:20 pmtu:1500 ssthresh:0 bytes_sent:17930 bytes_acked:17931 bytes_received:4200 segs_out:49 segs_in:46 send 905050bps lastsnd:20795 lastrcv:20795 lastack:20571 pacing_rate 1810096bps delivery_rate 503048bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:55534 140.82.114.26:443 timer(keepalive,28sec,0) uid:1024 inode:165521771 sk:ef38 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:10,7 rtt:283.095/41.806 ato:40 mss:1424 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:2643 bytes_acked:2644 bytes_received:3981 segs_out:36 segs_in:38 send 402409bps lastsnd:2669 lastrcv:2669 lastack:2444 pacing_rate 804816bps delivery_rate 73400bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:55308 142.250.70.228:443 uid:1024 inode:165561257 sk:eb1c cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d3) ts sack cubic wscale:8,7 rtt:11.532/2.782 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:3051 bytes_acked:3052 bytes_received:4379 segs_out:38 segs_in:36 send 9836975bps lastsnd:46596 lastrcv:46586 lastack:46587 pacing_rate 19672664bps delivery_rate 1814168bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:44322 10.0.0.10:55122 timer(keepalive,44sec,0) uid:386 inode:165594717 sk:5 cgroup:/system.slice/pmproxy.service <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:5.315/10.43 ato:40 mss:65483 cwnd:17 pmtu:65535 ssthresh:17 bytes_sent:3498895 bytes_acked:3498895 bytes_received:8301 segs_out:65 segs_in:47 send 1675576294bps lastsnd:609 lastrcv:611 lastack:567 pacing_rate 2010691552bps delivery_rate 130966000000bps rcv_space:65483
|
|
+tcp ESTAB 0 0 10.0.0.10:55694 34.120.177.193:443 timer(keepalive,2.525ms,0) uid:1024 inode:165577700 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d1) ts sack cubic wscale:8,7 rtt:13.091/4.789 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:1234 bytes_acked:1235 bytes_received:5268 segs_out:21 segs_in:20 send 8665495bps lastsnd:224263 lastrcv:224265 lastack:42465 pacing_rate 17330160bps delivery_rate 2267288bps rcv_space:14480
|
|
+tcp ESTAB 0 0 [::1]:3000 [::1]:51232 timer(keepalive,4.425ms,0) uid:378 inode:165581925 sk:5 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.392/0.759 ato:40 mss:65464 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:10193629 bytes_acked:10160847 bytes_received:278360 segs_out:992 segs_in:851 send 13360000000bps lastsnd:607 lastrcv:760 lastack:607 pacing_rate 26677465768bps delivery_rate 174570666664bps rcv_space:65464
|
|
+tcp ESTAB 0 0 [::1]:51238 [::1]:3000 timer(keepalive,6.381ms,0) uid:1024 inode:165581951 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d1) ts sack cubic wscale:7,7 rtt:4.48/8.875 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:238787 bytes_acked:238788 bytes_received:6296966 segs_out:626 segs_in:849 send 585142857bps lastsnd:758 lastrcv:616 lastack:616 pacing_rate 1170122464bps delivery_rate 87381333328bps rcv_space:65476
|
|
+tcp ESTAB 0 0 [::1]:51240 [::1]:3000 timer(keepalive,10sec,0) uid:1024 inode:165583008 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:4.388/8.395 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:247338 bytes_acked:247339 bytes_received:6277019 segs_out:642 segs_in:867 send 597411121bps lastsnd:764 lastrcv:635 lastack:635 pacing_rate 1194686104bps delivery_rate 87381333328bps rcv_space:65476
|
|
+tcp ESTAB 0 0 [::1]:51236 [::1]:3000 timer(keepalive,40sec,0) uid:1024 inode:165575931 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb4585000,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.942/1.793 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:274730 bytes_acked:274731 bytes_received:12994135 segs_out:925 segs_in:1058 send 2782845011bps lastsnd:4761 lastrcv:4697 lastack:4697 pacing_rate 5564213312bps delivery_rate 65536000000bps rcv_space:98304
|
|
+tcp ESTAB 0 0 [::1]:51228 [::1]:3000 timer(keepalive,43sec,0) uid:1024 inode:165582929 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb4978000,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:2.415/4.642 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:266019 bytes_acked:266020 bytes_received:6994873 segs_out:842 segs_in:867 send 1085482402bps lastsnd:759 lastrcv:623 lastack:623 pacing_rate 2170964800bps delivery_rate 87381333328bps rcv_space:98304
|
|
+tcp ESTAB 0 0 [::1]:51232 [::1]:3000 timer(keepalive,43sec,0) uid:1024 inode:165552950 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb4978000,t0,tb2626560,f0,w0,o0,bl0,d3) ts sack cubic wscale:7,7 rtt:3.701/7.013 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:278360 bytes_acked:278361 bytes_received:10160847 segs_out:851 segs_in:993 send 708305863bps lastsnd:760 lastrcv:607 lastack:607 pacing_rate 1416324704bps delivery_rate 87381333328bps rcv_space:163840
|
|
+tcp ESTAB 0 0 10.0.0.10:57958 142.250.70.238:443 uid:1024 inode:165594185 sk:183a cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d1) ts sack cubic wscale:8,7 rtt:10.608/1.213 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:7836 bytes_acked:7837 bytes_received:3104 segs_out:27 segs_in:27 send 10693816bps lastsnd:18595 lastrcv:18584 lastack:18584 pacing_rate 21387376bps delivery_rate 5058864bps rcv_space:14480
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54774 10.0.0.10:44322 timer(timewait,,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54792 10.0.0.10:44322 timer(timewait,,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54794 10.0.0.10:44322 timer(timewait,2.383ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54796 10.0.0.10:44322 timer(timewait,350ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:46306 3.233.54.64:443 timer(keepalive,23sec,0) uid:1024 inode:165592357 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:12,7 rtt:246.45/50.358 ato:40 mss:1448 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:3814 bytes_acked:3815 bytes_received:4765 segs_out:12 segs_in:12 send 470034bps lastsnd:22071 lastrcv:21847 lastack:21848 pacing_rate 940064bps delivery_rate 120016bps rcv_space:14480
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54784 10.0.0.10:44322 timer(timewait,,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:49614 142.250.70.165:443 uid:1024 inode:165581235 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:10.118/1.177 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:3573 bytes_acked:3574 bytes_received:2558 segs_out:20 segs_in:19 send 11211702bps lastsnd:27596 lastrcv:27584 lastack:27584 pacing_rate 22423400bps delivery_rate 3963936bps rcv_space:14480
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54798 10.0.0.10:44322 timer(timewait,222ms,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54802 10.0.0.10:44322 timer(timewait,3.376ms,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54800 10.0.0.10:44322 timer(timewait,354ms,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+udp ESTAB 0 0 10.0.0.10:37128 142.250.70.138:443 uid:1024 inode:165585835 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+udp ESTAB 0 0 10.0.0.10:49113 142.250.70.131:443 uid:1024 inode:165606514 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54872 10.0.0.10:44322 timer(timewait,14sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55048 10.0.0.10:44322 timer(timewait,48sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55060 10.0.0.10:44322 timer(timewait,48sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55094 10.0.0.10:44322 timer(timewait,54sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54980 10.0.0.10:44322 timer(timewait,34sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54806 10.0.0.10:44322 timer(timewait,1.441ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55088 10.0.0.10:44322 timer(timewait,55sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55064 10.0.0.10:44322 timer(timewait,48sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54956 10.0.0.10:44322 timer(timewait,26sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54826 10.0.0.10:44322 timer(timewait,5.357ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54822 10.0.0.10:44322 timer(timewait,8.347ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54860 10.0.0.10:44322 timer(timewait,13sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55092 10.0.0.10:44322 timer(timewait,53sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55036 10.0.0.10:44322 timer(timewait,43sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55038 10.0.0.10:44322 timer(timewait,45sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55066 10.0.0.10:44322 timer(timewait,49sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55080 10.0.0.10:44322 timer(timewait,52sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54916 10.0.0.10:44322 timer(timewait,23sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55034 10.0.0.10:44322 timer(timewait,44sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54954 10.0.0.10:44322 timer(timewait,25sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54894 10.0.0.10:44322 timer(timewait,19sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54968 10.0.0.10:44322 timer(timewait,28sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54978 10.0.0.10:44322 timer(timewait,30sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54830 10.0.0.10:44322 timer(timewait,7.365ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55012 10.0.0.10:44322 timer(timewait,37sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55050 10.0.0.10:44322 timer(timewait,46sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54896 10.0.0.10:44322 timer(timewait,17sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54838 10.0.0.10:44322 timer(timewait,9.447ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55030 10.0.0.10:44322 timer(timewait,41sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55002 10.0.0.10:44322 timer(timewait,37sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55024 10.0.0.10:44322 timer(timewait,41sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55020 10.0.0.10:44322 timer(timewait,43sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55046 10.0.0.10:44322 timer(timewait,45sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54876 10.0.0.10:44322 timer(timewait,18sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55084 10.0.0.10:44322 timer(timewait,52sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54900 10.0.0.10:44322 timer(timewait,19sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55056 10.0.0.10:44322 timer(timewait,47sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54808 10.0.0.10:44322 timer(timewait,2.383ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54858 10.0.0.10:44322 timer(timewait,10sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55032 10.0.0.10:44322 timer(timewait,42sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55000 10.0.0.10:44322 timer(timewait,35sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54810 10.0.0.10:44322 timer(timewait,4.343ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54898 10.0.0.10:44322 timer(timewait,18sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54874 10.0.0.10:44322 timer(timewait,13sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55022 10.0.0.10:44322 timer(timewait,40sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54892 10.0.0.10:44322 timer(timewait,17sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54882 10.0.0.10:44322 timer(timewait,15sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54964 10.0.0.10:44322 timer(timewait,27sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54834 10.0.0.10:44322 timer(timewait,6.831ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54986 10.0.0.10:44322 timer(timewait,32sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54888 10.0.0.10:44322 timer(timewait,16sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55090 10.0.0.10:44322 timer(timewait,53sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54906 10.0.0.10:44322 timer(timewait,23sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54816 10.0.0.10:44322 timer(timewait,4.219ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54974 10.0.0.10:44322 timer(timewait,30sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55004 10.0.0.10:44322 timer(timewait,36sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54972 10.0.0.10:44322 timer(timewait,28sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54966 10.0.0.10:44322 timer(timewait,27sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55070 10.0.0.10:44322 timer(timewait,49sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55006 10.0.0.10:44322 timer(timewait,38sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54904 10.0.0.10:44322 timer(timewait,20sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54836 10.0.0.10:44322 timer(timewait,7.364ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54988 10.0.0.10:44322 timer(timewait,32sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54902 10.0.0.10:44322 timer(timewait,18sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54914 10.0.0.10:44322 timer(timewait,20sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54976 10.0.0.10:44322 timer(timewait,31sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55096 10.0.0.10:44322 timer(timewait,54sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54824 10.0.0.10:44322 timer(timewait,5.225ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54958 10.0.0.10:44322 timer(timewait,26sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54930 10.0.0.10:44322 timer(timewait,22sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54984 10.0.0.10:44322 timer(timewait,31sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54996 10.0.0.10:44322 timer(timewait,36sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54866 10.0.0.10:44322 timer(timewait,12sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54962 10.0.0.10:44322 timer(timewait,29sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54942 10.0.0.10:44322 timer(timewait,24sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54910 10.0.0.10:44322 timer(timewait,19sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55074 10.0.0.10:44322 timer(timewait,56sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54998 10.0.0.10:44322 timer(timewait,35sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54990 10.0.0.10:44322 timer(timewait,34sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55028 10.0.0.10:44322 timer(timewait,42sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55044 10.0.0.10:44322 timer(timewait,50sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55008 10.0.0.10:44322 timer(timewait,38sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54842 10.0.0.10:44322 timer(timewait,12sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54920 10.0.0.10:44322 timer(timewait,21sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54982 10.0.0.10:44322 timer(timewait,30sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54862 10.0.0.10:44322 timer(timewait,11sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54868 10.0.0.10:44322 timer(timewait,12sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54926 10.0.0.10:44322 timer(timewait,22sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55026 10.0.0.10:44322 timer(timewait,41sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54870 10.0.0.10:44322 timer(timewait,13sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54864 10.0.0.10:44322 timer(timewait,15sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54818 10.0.0.10:44322 timer(timewait,6.800ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54812 10.0.0.10:44322 timer(timewait,5.358ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54992 10.0.0.10:44322 timer(timewait,33sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55018 10.0.0.10:44322 timer(timewait,39sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54960 10.0.0.10:44322 timer(timewait,29sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55054 10.0.0.10:44322 timer(timewait,47sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54928 10.0.0.10:44322 timer(timewait,22sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55042 10.0.0.10:44322 timer(timewait,46sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54852 10.0.0.10:44322 timer(timewait,9.426ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54936 10.0.0.10:44322 timer(timewait,23sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54948 10.0.0.10:44322 timer(timewait,26sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55062 10.0.0.10:44322 timer(timewait,49sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54944 10.0.0.10:44322 timer(timewait,27sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54846 10.0.0.10:44322 timer(timewait,9.223ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55040 10.0.0.10:44322 timer(timewait,44sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54804 10.0.0.10:44322 timer(timewait,1.440ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54850 10.0.0.10:44322 timer(timewait,10sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54884 10.0.0.10:44322 timer(timewait,15sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54938 10.0.0.10:44322 timer(timewait,25sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55086 10.0.0.10:44322 timer(timewait,53sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54840 10.0.0.10:44322 timer(timewait,8.342ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55072 10.0.0.10:44322 timer(timewait,50sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54922 10.0.0.10:44322 timer(timewait,21sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54878 10.0.0.10:44322 timer(timewait,14sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55078 10.0.0.10:44322 timer(timewait,51sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55052 10.0.0.10:44322 timer(timewait,46sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54932 10.0.0.10:44322 timer(timewait,24sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54832 10.0.0.10:44322 timer(timewait,6.800ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54880 10.0.0.10:44322 timer(timewait,16sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54854 10.0.0.10:44322 timer(timewait,11sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55082 10.0.0.10:44322 timer(timewait,51sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54856 10.0.0.10:44322 timer(timewait,10sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54994 10.0.0.10:44322 timer(timewait,33sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55068 10.0.0.10:44322 timer(timewait,51sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55014 10.0.0.10:44322 timer(timewait,40sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55016 10.0.0.10:44322 timer(timewait,39sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54814 10.0.0.10:44322 timer(timewait,3.380ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54820 10.0.0.10:44322 timer(timewait,4.339ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54886 10.0.0.10:44322 timer(timewait,17sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54890 10.0.0.10:44322 timer(timewait,16sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55058 10.0.0.10:44322 timer(timewait,47sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54952 10.0.0.10:44322 timer(timewait,25sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:55104 10.0.0.10:44322 timer(keepalive,26sec,0) uid:378 inode:165606577 sk:5 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb6291456,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:8.43/11.76 ato:40 mss:32768 cwnd:10 pmtu:65535 ssthresh:0 bytes_sent:8327 bytes_acked:8328 bytes_received:3510941 segs_out:178 segs_in:356 send 310965599bps lastsnd:756 lastrcv:637 lastack:639 pacing_rate 621875864bps delivery_rate 20164923072bps rcv_space:469929
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55116 10.0.0.10:44322 timer(timewait,58sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55112 10.0.0.10:44322 timer(timewait,59sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55114 10.0.0.10:44322 timer(timewait,58sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55102 10.0.0.10:44322 timer(timewait,56sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55118 10.0.0.10:44322 timer(timewait,59sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55100 10.0.0.10:44322 timer(timewait,58sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55108 10.0.0.10:44322 timer(timewait,57sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55110 10.0.0.10:44322 timer(timewait,57sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55106 10.0.0.10:44322 timer(timewait,56sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:55122 10.0.0.10:44322 timer(keepalive,29sec,0) uid:378 inode:165608516 sk:5 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb3013437,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.236/0.425 ato:40 mss:32768 cwnd:10 pmtu:65535 ssthresh:0 bytes_sent:16 bytes_acked:16 bytes_received:6325 segs_out:47 segs_in:66 send 11107796610bps lastsnd:611 lastrcv:609 lastack:609 pacing_rate 22145216472bps delivery_rate 32768000000bps rcv_space:81920
|
|
|
|
pcp-ss output, at specific start time
|
|
# Time: 2021-06-18 13:33:39 Filter: state connected
|
|
Netid State Recv-Q Send-Q Local Address:Port Peer Address:Port Process
|
|
-tcp ESTAB 0 0 [::ffff:127.0.0.1]:3000 [::ffff:127.0.0.1]:49798 timer(keepalive,5.031ms,0) uid:378 inode:164821548 sk:17e9 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb2358342,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.029/0.019 ato:40 mss:32768 cwnd:10 pmtu:65535 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:1388 segs_in:1880 send 90394482759bps lastsnd:9969 lastrcv:9971 lastack:9969 pacing_rate 178481021272bps delivery_rate 65536000000bps rcv_space:65664
|
|
-tcp ESTAB 0 0 127.0.0.1:6379 127.0.0.1:34526 timer(keepalive,40sec,0) uid:379 inode:164789635 sk:17e9 cgroup:/system.slice/redis.service <-> skmem(r0,rb6291456,t0,tb4194304,f0,w0,o0,bl0,d191) ts sack cubic wscale:7,7 rtt:5.308/10.357 ato:40 mss:65483 cwnd:37 pmtu:65535 ssthresh:27 bytes_acked:0 bytes_received:0 segs_out:100169 segs_in:51994 send 3651651846bps lastsnd:609 lastrcv:609 lastack:568 pacing_rate 4381982208bps delivery_rate 69848533328bps rcv_space:1379162
|
|
-tcp ESTAB 23 0 10.40.192.134:47862 10.0.15.20:6667 timer(on,614ms,0) uid:1024 inode:143267906 sk:39 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb181972,t0,tb46080,f2793,w1303,o0,bl0,d56) ts sack cubic wscale:8,7 rtt:453.799/37.471 ato:40 mss:1308 cwnd:2 pmtu:1360 ssthresh:2 bytes_acked:0 bytes_received:0 segs_out:117097 segs_in:108401 send 46117bps lastsnd:40 lastrcv:6050 lastack:22432 pacing_rate 55336bps delivery_rate 24936bps rcv_space:19026
|
|
-tcp ESTAB 0 0 10.0.0.10:58310 52.88.142.33:443 timer(keepalive,2min33sec,0) uid:1024 inode:143231822 sk:39 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d4) ts sack cubic wscale:8,7 rtt:211.152/22.951 ato:40 mss:1448 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:2072 segs_in:2598 send 548610bps lastsnd:146234 lastrcv:146236 lastack:146029 pacing_rate 1097216bps delivery_rate 120648bps rcv_space:14480
|
|
-tcp ESTAB 0 0 10.0.0.10:44852 202.58.9.228:443 timer(keepalive,43sec,0) uid:1024 inode:143675936 sk:39 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d1769) sack cubic wscale:9,7 rtt:98.707/11.472 ato:40 mss:1460 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:8675 segs_in:8669 send 1183300bps lastsnd:8818069 lastrcv:8817969 lastack:1340 pacing_rate 2366592bps delivery_rate 480352bps rcv_space:14600
|
|
-tcp ESTAB 23 0 10.0.0.10:37330 217.182.79.119:6667 timer(on,543ms,0) uid:1024 inode:147037462 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2467768,t0,tb87040,f2793,w1303,o0,bl0,d15) ts sack cubic wscale:7,7 rtt:377.613/33.401 ato:40 mss:1448 cwnd:2 pmtu:1500 ssthresh:2 bytes_acked:0 bytes_received:0 segs_out:13042 segs_in:6567 send 61354bps lastsnd:39 lastrcv:29806 lastack:29806 pacing_rate 73624bps delivery_rate 36280bps rcv_space:64371
|
|
-tcp ESTAB 0 0 192.168.122.1:53100 192.168.122.54:22 timer(keepalive,2min22sec,0) uid:1024 inode:152890200 sk:3a cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d11) ts sack cubic wscale:7,7 rtt:6.415/11.95 ato:40 mss:1448 cwnd:20 pmtu:1500 ssthresh:20 bytes_acked:0 bytes_received:0 segs_out:2145 segs_in:1352 send 36115355bps lastsnd:6216424 lastrcv:6216231 lastack:157163 pacing_rate 43332512bps delivery_rate 1079864400bps rcv_space:14480
|
|
-tcp ESTAB 0 0 10.0.0.10:52874 199.127.207.181:443 timer(keepalive,23sec,0) uid:1024 inode:154981923 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d433) sack cubic wscale:9,7 rtt:231.99/42.333 ato:40 mss:1460 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:2107 segs_in:2102 send 503470bps lastsnd:78116165 lastrcv:78116159 lastack:21772 pacing_rate 1006936bps delivery_rate 206000bps rcv_space:14600
|
|
-tcp ESTAB 0 0 10.0.0.10:33256 10.0.0.6:8009 timer(keepalive,14sec,0) uid:1024 inode:161634072 sk:3a cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2554304,t0,tb87040,f0,w0,o0,bl0,d1) ts sack cubic wscale:6,7 rtt:7.135/1.044 ato:40 mss:1448 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:13349 segs_in:6686 send 16235459bps lastsnd:524 lastrcv:516 lastack:516 pacing_rate 32468640bps delivery_rate 7613536bps rcv_space:65491
|
|
-tcp ESTAB 0 0 10.0.0.10:45164 173.194.202.125:443 timer(keepalive,23sec,0) uid:1024 inode:161888302 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:228.663/49.231 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:890 segs_in:895 send 496101bps lastsnd:207468 lastrcv:207250 lastack:21813 pacing_rate 992200bps delivery_rate 103864bps rcv_space:14480
|
|
-tcp ESTAB 0 0 10.0.0.10:37256 157.240.8.18:443 timer(keepalive,2min53sec,0) uid:1024 inode:163353710 sk:262 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb1623296,t0,tb46080,f0,w0,o0,bl0,d37) ts sack cubic wscale:8,7 rtt:21.5/0.94 ato:40 mss:1380 cwnd:22 pmtu:1500 ssthresh:22 bytes_acked:0 bytes_received:0 segs_out:4414 segs_in:4458 send 11296744bps lastsnd:1471 lastrcv:1255 lastack:1449 pacing_rate 13556008bps delivery_rate 9819152bps rcv_space:87463
|
|
-tcp ESTAB 0 0 10.0.0.10:40226 13.54.123.156:443 timer(keepalive,8.158ms,0) uid:1024 inode:163971400 sk:3b cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2673664,t0,tb46080,f0,w0,o0,bl0,d0) ts sack cubic wscale:12,7 rtt:23.038/1.11 ato:46 mss:1288 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:671 segs_in:482 send 4472610bps lastsnd:22123 lastrcv:22098 lastack:22098 pacing_rate 8945216bps delivery_rate 1318208bps rcv_space:67012
|
|
-tcp ESTAB 0 0 10.0.0.10:40232 13.54.123.156:443 timer(keepalive,15sec,0) uid:1024 inode:164254779 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2730360,t0,tb46080,f0,w0,o0,bl0,d0) ts sack cubic wscale:12,7 rtt:21.965/0.395 ato:42 mss:1288 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:842 segs_in:526 send 4691099bps lastsnd:9624 lastrcv:9601 lastack:9601 pacing_rate 9381984bps delivery_rate 1362840bps rcv_space:67755
|
|
-tcp ESTAB 0 0 10.0.0.10:39906 172.217.194.188:5228 timer(keepalive,6.702ms,0) uid:1024 inode:164287111 sk:eacd cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:94.893/7.701 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:187 segs_in:187 send 1195452bps lastsnd:1336001 lastrcv:1335906 lastack:38204 pacing_rate 2390880bps delivery_rate 229032bps rcv_space:14480
|
|
-tcp ESTAB 0 0 127.0.0.1:34526 127.0.0.1:6379 timer(keepalive,10sec,0) uid:386 inode:164791620 sk:ef22 cgroup:/system.slice/pmproxy.service <-> skmem(r0,rb4978722,t0,tb4194304,f0,w0,o0,bl0,d352) ts sack cubic wscale:7,7 rtt:0.301/0.282 ato:40 mss:65483 cwnd:34 pmtu:65535 ssthresh:16 bytes_acked:0 bytes_received:0 segs_out:51994 segs_in:100170 send 59174006645bps lastsnd:609 lastrcv:609 lastack:609 pacing_rate 71008807968bps delivery_rate 104772800000bps rcv_space:245440
|
|
-tcp ESTAB 0 0 127.0.0.1:49798 127.0.0.1:3000 uid:0 inode:164815425 sk:17e9 cgroup:/system.slice/pmcd.service <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:5.821/8.743 ato:40 mss:65483 cwnd:10 pmtu:65535 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:1880 segs_in:1389 send 899955334bps lastsnd:9970 lastrcv:9968 lastack:9968 pacing_rate 1799678784bps delivery_rate 40297230768bps rcv_space:65495
|
|
-udp ESTAB 0 0 10.0.0.10:36244 142.250.70.138:443 uid:1024 inode:165293889 sk:f231 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-udp ESTAB 0 0 10.0.0.10:35754 142.251.10.189:443 uid:1024 inode:165318004 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-udp ESTAB 0 0 10.0.0.10:49123 142.250.4.189:443 uid:1024 inode:165373416 sk:ef33 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp ESTAB 0 0 10.0.0.10:40218 142.250.70.142:443 uid:1024 inode:165413160 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d16) ts sack cubic wscale:8,7 rtt:10.371/0.673 ato:40 mss:1418 cwnd:3 pmtu:1500 ssthresh:2 bytes_acked:0 bytes_received:0 segs_out:493 segs_in:558 send 3281458bps lastsnd:48748 lastrcv:48749 lastack:48739 pacing_rate 3937552bps delivery_rate 2269480bps rcv_space:14480
|
|
-tcp ESTAB 0 0 10.0.0.10:43990 142.250.70.131:443 uid:1024 inode:165420073 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:9.654/0.506 ato:40 mss:1418 cwnd:4 pmtu:1500 ssthresh:4 bytes_acked:0 bytes_received:0 segs_out:246 segs_in:410 send 4700228bps lastsnd:17768 lastrcv:17783 lastack:17759 pacing_rate 5640272bps delivery_rate 2983168bps rcv_space:14480
|
|
-tcp ESTAB 0 0 10.0.0.10:44388 142.250.4.189:443 uid:1024 inode:165419510 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:96.696/2.871 ato:40 mss:1418 cwnd:7 pmtu:1500 ssthresh:7 bytes_acked:0 bytes_received:0 segs_out:207 segs_in:207 send 821213bps lastsnd:17146 lastrcv:17036 lastack:17036 pacing_rate 985448bps delivery_rate 467400bps rcv_space:14480
|
|
-tcp ESTAB 0 0 10.0.0.10:34914 142.250.70.234:443 uid:1024 inode:165418039 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f4096,w0,o0,bl0,d11) ts sack cubic wscale:8,7 rtt:10.278/0.678 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:307 segs_in:321 send 11037167bps lastsnd:11065 lastrcv:10735 lastack:10735 pacing_rate 22073256bps delivery_rate 2827752bps rcv_space:14480
|
|
-tcp ESTAB 0 0 10.0.0.10:34916 142.250.70.234:443 uid:1024 inode:165418040 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d9) ts sack cubic wscale:8,7 rtt:10.081/1.167 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:277 segs_in:301 send 11252852bps lastsnd:11066 lastrcv:11066 lastack:11056 pacing_rate 22505424bps delivery_rate 3209656bps rcv_space:14480
|
|
-tcp ESTAB 0 0 10.0.0.10:49594 142.250.70.165:443 timer(keepalive,6.621ms,0) uid:1024 inode:165410113 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb1074240,t0,tb87040,f0,w0,o0,bl0,d6) ts sack cubic wscale:8,7 rtt:11.987/1.417 ato:40 mss:1418 cwnd:18 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:342 segs_in:404 send 17034454bps lastsnd:218733 lastrcv:218735 lastack:38371 pacing_rate 34068192bps delivery_rate 8192584bps rcv_space:75339
|
|
-tcp ESTAB 0 0 10.0.0.10:57232 157.240.8.35:443 uid:1024 inode:165408121 sk:1781 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb46080,f8192,w0,o0,bl0,d4) ts sack cubic wscale:8,7 rtt:23.193/1.8 ato:40 mss:1380 cwnd:2 pmtu:1500 ssthresh:2 bytes_acked:0 bytes_received:0 segs_out:252 segs_in:206 send 952011bps lastsnd:6934 lastrcv:6458 lastack:6458 pacing_rate 1142400bps delivery_rate 371224bps rcv_space:14480
|
|
-udp ESTAB 0 0 10.0.0.10:44639 142.250.70.131:443 uid:1024 inode:165411837 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp ESTAB 0 0 10.0.0.10:46392 142.251.10.189:443 uid:1024 inode:165466671 sk:f23b cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f4096,w0,o0,bl0,d2) ts sack cubic wscale:8,7 rtt:111.69/24.888 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:135 segs_in:139 send 1015668bps lastsnd:52309 lastrcv:25403 lastack:50572 pacing_rate 2031320bps delivery_rate 335272bps rcv_space:14480
|
|
-udp ESTAB 0 0 10.0.0.10:35983 142.250.70.142:443 uid:1024 inode:165466809 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp ESTAB 0 0 10.0.0.10:55532 140.82.114.26:443 timer(keepalive,9.693ms,0) uid:1024 inode:165515920 sk:17eb cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:10,7 rtt:251.743/35.839 ato:40 mss:1424 cwnd:20 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:49 segs_in:46 send 905050bps lastsnd:20795 lastrcv:20795 lastack:20571 pacing_rate 1810096bps delivery_rate 503048bps rcv_space:14480
|
|
-tcp ESTAB 0 0 10.0.0.10:55534 140.82.114.26:443 timer(keepalive,28sec,0) uid:1024 inode:165521771 sk:ef38 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:10,7 rtt:283.095/41.806 ato:40 mss:1424 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:36 segs_in:38 send 402409bps lastsnd:2669 lastrcv:2669 lastack:2444 pacing_rate 804816bps delivery_rate 73400bps rcv_space:14480
|
|
-tcp ESTAB 0 0 10.0.0.10:55308 142.250.70.228:443 uid:1024 inode:165561257 sk:eb1c cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d3) ts sack cubic wscale:8,7 rtt:11.532/2.782 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:38 segs_in:36 send 9836975bps lastsnd:46596 lastrcv:46586 lastack:46587 pacing_rate 19672664bps delivery_rate 1814168bps rcv_space:14480
|
|
-tcp ESTAB 0 0 10.0.0.10:44322 10.0.0.10:55122 timer(keepalive,44sec,0) uid:386 inode:165594717 sk:5 cgroup:/system.slice/pmproxy.service <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:5.315/10.43 ato:40 mss:65483 cwnd:17 pmtu:65535 ssthresh:17 bytes_acked:0 bytes_received:0 segs_out:65 segs_in:47 send 1675576294bps lastsnd:609 lastrcv:611 lastack:567 pacing_rate 2010691552bps delivery_rate 130966000000bps rcv_space:65483
|
|
-tcp ESTAB 0 0 10.0.0.10:55694 34.120.177.193:443 timer(keepalive,2.525ms,0) uid:1024 inode:165577700 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d1) ts sack cubic wscale:8,7 rtt:13.091/4.789 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:21 segs_in:20 send 8665495bps lastsnd:224263 lastrcv:224265 lastack:42465 pacing_rate 17330160bps delivery_rate 2267288bps rcv_space:14480
|
|
-tcp ESTAB 0 0 [::1]:3000 [::1]:51232 timer(keepalive,4.425ms,0) uid:378 inode:165581925 sk:5 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.392/0.759 ato:40 mss:65464 cwnd:10 pmtu:65536 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:992 segs_in:851 send 13360000000bps lastsnd:607 lastrcv:760 lastack:607 pacing_rate 26677465768bps delivery_rate 174570666664bps rcv_space:65464
|
|
-tcp ESTAB 0 0 [::1]:51238 [::1]:3000 timer(keepalive,6.381ms,0) uid:1024 inode:165581951 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d1) ts sack cubic wscale:7,7 rtt:4.48/8.875 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:626 segs_in:849 send 585142857bps lastsnd:758 lastrcv:616 lastack:616 pacing_rate 1170122464bps delivery_rate 87381333328bps rcv_space:65476
|
|
-tcp ESTAB 0 0 [::1]:51240 [::1]:3000 timer(keepalive,10sec,0) uid:1024 inode:165583008 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:4.388/8.395 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:642 segs_in:867 send 597411121bps lastsnd:764 lastrcv:635 lastack:635 pacing_rate 1194686104bps delivery_rate 87381333328bps rcv_space:65476
|
|
-tcp ESTAB 0 0 [::1]:51236 [::1]:3000 timer(keepalive,40sec,0) uid:1024 inode:165575931 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb4585000,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.942/1.793 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:925 segs_in:1058 send 2782845011bps lastsnd:4761 lastrcv:4697 lastack:4697 pacing_rate 5564213312bps delivery_rate 65536000000bps rcv_space:98304
|
|
-tcp ESTAB 0 0 [::1]:51228 [::1]:3000 timer(keepalive,43sec,0) uid:1024 inode:165582929 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb4978000,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:2.415/4.642 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:842 segs_in:867 send 1085482402bps lastsnd:759 lastrcv:623 lastack:623 pacing_rate 2170964800bps delivery_rate 87381333328bps rcv_space:98304
|
|
-tcp ESTAB 0 0 [::1]:51232 [::1]:3000 timer(keepalive,43sec,0) uid:1024 inode:165552950 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb4978000,t0,tb2626560,f0,w0,o0,bl0,d3) ts sack cubic wscale:7,7 rtt:3.701/7.013 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:851 segs_in:993 send 708305863bps lastsnd:760 lastrcv:607 lastack:607 pacing_rate 1416324704bps delivery_rate 87381333328bps rcv_space:163840
|
|
-tcp ESTAB 0 0 10.0.0.10:57958 142.250.70.238:443 uid:1024 inode:165594185 sk:183a cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d1) ts sack cubic wscale:8,7 rtt:10.608/1.213 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:27 segs_in:27 send 10693816bps lastsnd:18595 lastrcv:18584 lastack:18584 pacing_rate 21387376bps delivery_rate 5058864bps rcv_space:14480
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54774 10.0.0.10:44322 timer(timewait,,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54792 10.0.0.10:44322 timer(timewait,,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54794 10.0.0.10:44322 timer(timewait,2.383ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54796 10.0.0.10:44322 timer(timewait,350ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp ESTAB 0 0 10.0.0.10:46306 3.233.54.64:443 timer(keepalive,23sec,0) uid:1024 inode:165592357 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:12,7 rtt:246.45/50.358 ato:40 mss:1448 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:12 segs_in:12 send 470034bps lastsnd:22071 lastrcv:21847 lastack:21848 pacing_rate 940064bps delivery_rate 120016bps rcv_space:14480
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54784 10.0.0.10:44322 timer(timewait,,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp ESTAB 0 0 10.0.0.10:49614 142.250.70.165:443 uid:1024 inode:165581235 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:10.118/1.177 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:20 segs_in:19 send 11211702bps lastsnd:27596 lastrcv:27584 lastack:27584 pacing_rate 22423400bps delivery_rate 3963936bps rcv_space:14480
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54798 10.0.0.10:44322 timer(timewait,222ms,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54802 10.0.0.10:44322 timer(timewait,3.376ms,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54800 10.0.0.10:44322 timer(timewait,354ms,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-udp ESTAB 0 0 10.0.0.10:37128 142.250.70.138:443 uid:1024 inode:165585835 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-udp ESTAB 0 0 10.0.0.10:49113 142.250.70.131:443 uid:1024 inode:165606514 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54872 10.0.0.10:44322 timer(timewait,14sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55048 10.0.0.10:44322 timer(timewait,48sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55060 10.0.0.10:44322 timer(timewait,48sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55094 10.0.0.10:44322 timer(timewait,54sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54980 10.0.0.10:44322 timer(timewait,34sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54806 10.0.0.10:44322 timer(timewait,1.441ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55088 10.0.0.10:44322 timer(timewait,55sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55064 10.0.0.10:44322 timer(timewait,48sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54956 10.0.0.10:44322 timer(timewait,26sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54826 10.0.0.10:44322 timer(timewait,5.357ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54822 10.0.0.10:44322 timer(timewait,8.347ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54860 10.0.0.10:44322 timer(timewait,13sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55092 10.0.0.10:44322 timer(timewait,53sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55036 10.0.0.10:44322 timer(timewait,43sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55038 10.0.0.10:44322 timer(timewait,45sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55066 10.0.0.10:44322 timer(timewait,49sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55080 10.0.0.10:44322 timer(timewait,52sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54916 10.0.0.10:44322 timer(timewait,23sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55034 10.0.0.10:44322 timer(timewait,44sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54954 10.0.0.10:44322 timer(timewait,25sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54894 10.0.0.10:44322 timer(timewait,19sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54968 10.0.0.10:44322 timer(timewait,28sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54978 10.0.0.10:44322 timer(timewait,30sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54830 10.0.0.10:44322 timer(timewait,7.365ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55012 10.0.0.10:44322 timer(timewait,37sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55050 10.0.0.10:44322 timer(timewait,46sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54896 10.0.0.10:44322 timer(timewait,17sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54838 10.0.0.10:44322 timer(timewait,9.447ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55030 10.0.0.10:44322 timer(timewait,41sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55002 10.0.0.10:44322 timer(timewait,37sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55024 10.0.0.10:44322 timer(timewait,41sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55020 10.0.0.10:44322 timer(timewait,43sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55046 10.0.0.10:44322 timer(timewait,45sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54876 10.0.0.10:44322 timer(timewait,18sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55084 10.0.0.10:44322 timer(timewait,52sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54900 10.0.0.10:44322 timer(timewait,19sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55056 10.0.0.10:44322 timer(timewait,47sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54808 10.0.0.10:44322 timer(timewait,2.383ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54858 10.0.0.10:44322 timer(timewait,10sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55032 10.0.0.10:44322 timer(timewait,42sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55000 10.0.0.10:44322 timer(timewait,35sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54810 10.0.0.10:44322 timer(timewait,4.343ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54898 10.0.0.10:44322 timer(timewait,18sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54874 10.0.0.10:44322 timer(timewait,13sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55022 10.0.0.10:44322 timer(timewait,40sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54892 10.0.0.10:44322 timer(timewait,17sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54882 10.0.0.10:44322 timer(timewait,15sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54964 10.0.0.10:44322 timer(timewait,27sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54834 10.0.0.10:44322 timer(timewait,6.831ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54986 10.0.0.10:44322 timer(timewait,32sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54888 10.0.0.10:44322 timer(timewait,16sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55090 10.0.0.10:44322 timer(timewait,53sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54906 10.0.0.10:44322 timer(timewait,23sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54816 10.0.0.10:44322 timer(timewait,4.219ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54974 10.0.0.10:44322 timer(timewait,30sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55004 10.0.0.10:44322 timer(timewait,36sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54972 10.0.0.10:44322 timer(timewait,28sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54966 10.0.0.10:44322 timer(timewait,27sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55070 10.0.0.10:44322 timer(timewait,49sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55006 10.0.0.10:44322 timer(timewait,38sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54904 10.0.0.10:44322 timer(timewait,20sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54836 10.0.0.10:44322 timer(timewait,7.364ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54988 10.0.0.10:44322 timer(timewait,32sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54902 10.0.0.10:44322 timer(timewait,18sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54914 10.0.0.10:44322 timer(timewait,20sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54976 10.0.0.10:44322 timer(timewait,31sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55096 10.0.0.10:44322 timer(timewait,54sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54824 10.0.0.10:44322 timer(timewait,5.225ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54958 10.0.0.10:44322 timer(timewait,26sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54930 10.0.0.10:44322 timer(timewait,22sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54984 10.0.0.10:44322 timer(timewait,31sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54996 10.0.0.10:44322 timer(timewait,36sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54866 10.0.0.10:44322 timer(timewait,12sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54962 10.0.0.10:44322 timer(timewait,29sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54942 10.0.0.10:44322 timer(timewait,24sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54910 10.0.0.10:44322 timer(timewait,19sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55074 10.0.0.10:44322 timer(timewait,56sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54998 10.0.0.10:44322 timer(timewait,35sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54990 10.0.0.10:44322 timer(timewait,34sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55028 10.0.0.10:44322 timer(timewait,42sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55044 10.0.0.10:44322 timer(timewait,50sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55008 10.0.0.10:44322 timer(timewait,38sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54842 10.0.0.10:44322 timer(timewait,12sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54920 10.0.0.10:44322 timer(timewait,21sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54982 10.0.0.10:44322 timer(timewait,30sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54862 10.0.0.10:44322 timer(timewait,11sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54868 10.0.0.10:44322 timer(timewait,12sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54926 10.0.0.10:44322 timer(timewait,22sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55026 10.0.0.10:44322 timer(timewait,41sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54870 10.0.0.10:44322 timer(timewait,13sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54864 10.0.0.10:44322 timer(timewait,15sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54818 10.0.0.10:44322 timer(timewait,6.800ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54812 10.0.0.10:44322 timer(timewait,5.358ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54992 10.0.0.10:44322 timer(timewait,33sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55018 10.0.0.10:44322 timer(timewait,39sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54960 10.0.0.10:44322 timer(timewait,29sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55054 10.0.0.10:44322 timer(timewait,47sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54928 10.0.0.10:44322 timer(timewait,22sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55042 10.0.0.10:44322 timer(timewait,46sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54852 10.0.0.10:44322 timer(timewait,9.426ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54936 10.0.0.10:44322 timer(timewait,23sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54948 10.0.0.10:44322 timer(timewait,26sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55062 10.0.0.10:44322 timer(timewait,49sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54944 10.0.0.10:44322 timer(timewait,27sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54846 10.0.0.10:44322 timer(timewait,9.223ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55040 10.0.0.10:44322 timer(timewait,44sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54804 10.0.0.10:44322 timer(timewait,1.440ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54850 10.0.0.10:44322 timer(timewait,10sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54884 10.0.0.10:44322 timer(timewait,15sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54938 10.0.0.10:44322 timer(timewait,25sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55086 10.0.0.10:44322 timer(timewait,53sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54840 10.0.0.10:44322 timer(timewait,8.342ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55072 10.0.0.10:44322 timer(timewait,50sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54922 10.0.0.10:44322 timer(timewait,21sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54878 10.0.0.10:44322 timer(timewait,14sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55078 10.0.0.10:44322 timer(timewait,51sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55052 10.0.0.10:44322 timer(timewait,46sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54932 10.0.0.10:44322 timer(timewait,24sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54832 10.0.0.10:44322 timer(timewait,6.800ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54880 10.0.0.10:44322 timer(timewait,16sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54854 10.0.0.10:44322 timer(timewait,11sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55082 10.0.0.10:44322 timer(timewait,51sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54856 10.0.0.10:44322 timer(timewait,10sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54994 10.0.0.10:44322 timer(timewait,33sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55068 10.0.0.10:44322 timer(timewait,51sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55014 10.0.0.10:44322 timer(timewait,40sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55016 10.0.0.10:44322 timer(timewait,39sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54814 10.0.0.10:44322 timer(timewait,3.380ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54820 10.0.0.10:44322 timer(timewait,4.339ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54886 10.0.0.10:44322 timer(timewait,17sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54890 10.0.0.10:44322 timer(timewait,16sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55058 10.0.0.10:44322 timer(timewait,47sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54952 10.0.0.10:44322 timer(timewait,25sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp ESTAB 0 0 10.0.0.10:55104 10.0.0.10:44322 timer(keepalive,26sec,0) uid:378 inode:165606577 sk:5 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb6291456,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:8.43/11.76 ato:40 mss:32768 cwnd:10 pmtu:65535 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:178 segs_in:356 send 310965599bps lastsnd:756 lastrcv:637 lastack:639 pacing_rate 621875864bps delivery_rate 20164923072bps rcv_space:469929
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55116 10.0.0.10:44322 timer(timewait,58sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55112 10.0.0.10:44322 timer(timewait,59sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55114 10.0.0.10:44322 timer(timewait,58sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55102 10.0.0.10:44322 timer(timewait,56sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55118 10.0.0.10:44322 timer(timewait,59sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55100 10.0.0.10:44322 timer(timewait,58sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55108 10.0.0.10:44322 timer(timewait,57sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55110 10.0.0.10:44322 timer(timewait,57sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55106 10.0.0.10:44322 timer(timewait,56sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp ESTAB 0 0 10.0.0.10:55122 10.0.0.10:44322 timer(keepalive,29sec,0) uid:378 inode:165608516 sk:5 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb3013437,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.236/0.425 ato:40 mss:32768 cwnd:10 pmtu:65535 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:47 segs_in:66 send 11107796610bps lastsnd:611 lastrcv:609 lastack:609 pacing_rate 22145216472bps delivery_rate 32768000000bps rcv_space:81920
|
|
+tcp ESTAB 0 0 [::ffff:127.0.0.1]:3000 [::ffff:127.0.0.1]:49798 timer(keepalive,5.031ms,0) uid:378 inode:164821548 sk:17e9 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb2358342,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.029/0.019 ato:40 mss:32768 cwnd:10 pmtu:65535 ssthresh:0 bytes_sent:3077689 bytes_acked:3077689 bytes_received:95300 segs_out:1388 segs_in:1880 send 90394482759bps lastsnd:9969 lastrcv:9971 lastack:9969 pacing_rate 178481021272bps delivery_rate 65536000000bps rcv_space:65664
|
|
+tcp ESTAB 0 0 127.0.0.1:6379 127.0.0.1:34526 timer(keepalive,40sec,0) uid:379 inode:164789635 sk:17e9 cgroup:/system.slice/redis.service <-> skmem(r0,rb6291456,t0,tb4194304,f0,w0,o0,bl0,d191) ts sack cubic wscale:7,7 rtt:5.308/10.357 ato:40 mss:65483 cwnd:37 pmtu:65535 ssthresh:27 bytes_sent:1741543822 bytes_acked:1736716332 bytes_received:348902250 segs_out:100169 segs_in:51994 send 3651651846bps lastsnd:609 lastrcv:609 lastack:568 pacing_rate 4381982208bps delivery_rate 69848533328bps rcv_space:1379162
|
|
+tcp ESTAB 23 0 10.40.192.134:47862 10.0.15.20:6667 timer(on,614ms,0) uid:1024 inode:143267906 sk:39 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb181972,t0,tb46080,f2793,w1303,o0,bl0,d56) ts sack cubic wscale:8,7 rtt:453.799/37.471 ato:40 mss:1308 cwnd:2 pmtu:1360 ssthresh:2 bytes_sent:387993 bytes_acked:386591 bytes_received:72874141 segs_out:117097 segs_in:108401 send 46117bps lastsnd:40 lastrcv:6050 lastack:22432 pacing_rate 55336bps delivery_rate 24936bps rcv_space:19026
|
|
+tcp ESTAB 0 0 10.0.0.10:58310 52.88.142.33:443 timer(keepalive,2min33sec,0) uid:1024 inode:143231822 sk:39 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d4) ts sack cubic wscale:8,7 rtt:211.152/22.951 ato:40 mss:1448 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:46445 bytes_acked:46409 bytes_received:48039 segs_out:2072 segs_in:2598 send 548610bps lastsnd:146234 lastrcv:146236 lastack:146029 pacing_rate 1097216bps delivery_rate 120648bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:44852 202.58.9.228:443 timer(keepalive,43sec,0) uid:1024 inode:143675936 sk:39 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d1769) sack cubic wscale:9,7 rtt:98.707/11.472 ato:40 mss:1460 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:6723 bytes_acked:6724 bytes_received:9572 segs_out:8675 segs_in:8669 send 1183300bps lastsnd:8818069 lastrcv:8817969 lastack:1340 pacing_rate 2366592bps delivery_rate 480352bps rcv_space:14600
|
|
+tcp ESTAB 23 0 10.0.0.10:37330 217.182.79.119:6667 timer(on,543ms,0) uid:1024 inode:147037462 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2467768,t0,tb87040,f2793,w1303,o0,bl0,d15) ts sack cubic wscale:7,7 rtt:377.613/33.401 ato:40 mss:1448 cwnd:2 pmtu:1500 ssthresh:2 bytes_sent:149848 bytes_acked:149434 bytes_received:440821 segs_out:13042 segs_in:6567 send 61354bps lastsnd:39 lastrcv:29806 lastack:29806 pacing_rate 73624bps delivery_rate 36280bps rcv_space:64371
|
|
+tcp ESTAB 0 0 192.168.122.1:53100 192.168.122.54:22 timer(keepalive,2min22sec,0) uid:1024 inode:152890200 sk:3a cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d11) ts sack cubic wscale:7,7 rtt:6.415/11.95 ato:40 mss:1448 cwnd:20 pmtu:1500 ssthresh:20 bytes_sent:65329 bytes_acked:65330 bytes_received:138089 segs_out:2145 segs_in:1352 send 36115355bps lastsnd:6216424 lastrcv:6216231 lastack:157163 pacing_rate 43332512bps delivery_rate 1079864400bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:52874 199.127.207.181:443 timer(keepalive,23sec,0) uid:1024 inode:154981923 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d433) sack cubic wscale:9,7 rtt:231.99/42.333 ato:40 mss:1460 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:3792 bytes_acked:3793 bytes_received:6931 segs_out:2107 segs_in:2102 send 503470bps lastsnd:78116165 lastrcv:78116159 lastack:21772 pacing_rate 1006936bps delivery_rate 206000bps rcv_space:14600
|
|
+tcp ESTAB 0 0 10.0.0.10:33256 10.0.0.6:8009 timer(keepalive,14sec,0) uid:1024 inode:161634072 sk:3a cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2554304,t0,tb87040,f0,w0,o0,bl0,d1) ts sack cubic wscale:6,7 rtt:7.135/1.044 ato:40 mss:1448 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:734658 bytes_acked:734549 bytes_received:739568 segs_out:13349 segs_in:6686 send 16235459bps lastsnd:524 lastrcv:516 lastack:516 pacing_rate 32468640bps delivery_rate 7613536bps rcv_space:65491
|
|
+tcp ESTAB 0 0 10.0.0.10:45164 173.194.202.125:443 timer(keepalive,23sec,0) uid:1024 inode:161888302 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:228.663/49.231 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:11353 bytes_acked:11354 bytes_received:23756 segs_out:890 segs_in:895 send 496101bps lastsnd:207468 lastrcv:207250 lastack:21813 pacing_rate 992200bps delivery_rate 103864bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:37256 157.240.8.18:443 timer(keepalive,2min53sec,0) uid:1024 inode:163353710 sk:262 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb1623296,t0,tb46080,f0,w0,o0,bl0,d37) ts sack cubic wscale:8,7 rtt:21.5/0.94 ato:40 mss:1380 cwnd:22 pmtu:1500 ssthresh:22 bytes_sent:71046 bytes_acked:71015 bytes_received:222343 segs_out:4414 segs_in:4458 send 11296744bps lastsnd:1471 lastrcv:1255 lastack:1449 pacing_rate 13556008bps delivery_rate 9819152bps rcv_space:87463
|
|
+tcp ESTAB 0 0 10.0.0.10:40226 13.54.123.156:443 timer(keepalive,8.158ms,0) uid:1024 inode:163971400 sk:3b cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2673664,t0,tb46080,f0,w0,o0,bl0,d0) ts sack cubic wscale:12,7 rtt:23.038/1.11 ato:46 mss:1288 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:13434 bytes_acked:13435 bytes_received:76107 segs_out:671 segs_in:482 send 4472610bps lastsnd:22123 lastrcv:22098 lastack:22098 pacing_rate 8945216bps delivery_rate 1318208bps rcv_space:67012
|
|
+tcp ESTAB 0 0 10.0.0.10:40232 13.54.123.156:443 timer(keepalive,15sec,0) uid:1024 inode:164254779 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2730360,t0,tb46080,f0,w0,o0,bl0,d0) ts sack cubic wscale:12,7 rtt:21.965/0.395 ato:42 mss:1288 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:21565 bytes_acked:21566 bytes_received:71362 segs_out:842 segs_in:526 send 4691099bps lastsnd:9624 lastrcv:9601 lastack:9601 pacing_rate 9381984bps delivery_rate 1362840bps rcv_space:67755
|
|
+tcp ESTAB 0 0 10.0.0.10:39906 172.217.194.188:5228 timer(keepalive,6.702ms,0) uid:1024 inode:164287111 sk:eacd cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:94.893/7.701 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:893 bytes_acked:894 bytes_received:5528 segs_out:187 segs_in:187 send 1195452bps lastsnd:1336001 lastrcv:1335906 lastack:38204 pacing_rate 2390880bps delivery_rate 229032bps rcv_space:14480
|
|
+tcp ESTAB 0 0 127.0.0.1:34526 127.0.0.1:6379 timer(keepalive,10sec,0) uid:386 inode:164791620 sk:ef22 cgroup:/system.slice/pmproxy.service <-> skmem(r0,rb4978722,t0,tb4194304,f0,w0,o0,bl0,d352) ts sack cubic wscale:7,7 rtt:0.301/0.282 ato:40 mss:65483 cwnd:34 pmtu:65535 ssthresh:16 bytes_sent:349061810 bytes_acked:348902251 bytes_received:1736716332 segs_out:51994 segs_in:100170 send 59174006645bps lastsnd:609 lastrcv:609 lastack:609 pacing_rate 71008807968bps delivery_rate 104772800000bps rcv_space:245440
|
|
+tcp ESTAB 0 0 127.0.0.1:49798 127.0.0.1:3000 uid:0 inode:164815425 sk:17e9 cgroup:/system.slice/pmcd.service <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:5.821/8.743 ato:40 mss:65483 cwnd:10 pmtu:65535 ssthresh:0 bytes_sent:95300 bytes_acked:95301 bytes_received:3077689 segs_out:1880 segs_in:1389 send 899955334bps lastsnd:9970 lastrcv:9968 lastack:9968 pacing_rate 1799678784bps delivery_rate 40297230768bps rcv_space:65495
|
|
+udp ESTAB 0 0 10.0.0.10:36244 142.250.70.138:443 uid:1024 inode:165293889 sk:f231 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+udp ESTAB 0 0 10.0.0.10:35754 142.251.10.189:443 uid:1024 inode:165318004 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+udp ESTAB 0 0 10.0.0.10:49123 142.250.4.189:443 uid:1024 inode:165373416 sk:ef33 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:40218 142.250.70.142:443 uid:1024 inode:165413160 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d16) ts sack cubic wscale:8,7 rtt:10.371/0.673 ato:40 mss:1418 cwnd:3 pmtu:1500 ssthresh:2 bytes_sent:128059 bytes_acked:122619 bytes_received:60993 segs_out:493 segs_in:558 send 3281458bps lastsnd:48748 lastrcv:48749 lastack:48739 pacing_rate 3937552bps delivery_rate 2269480bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:43990 142.250.70.131:443 uid:1024 inode:165420073 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:9.654/0.506 ato:40 mss:1418 cwnd:4 pmtu:1500 ssthresh:4 bytes_sent:10189 bytes_acked:10000 bytes_received:16620 segs_out:246 segs_in:410 send 4700228bps lastsnd:17768 lastrcv:17783 lastack:17759 pacing_rate 5640272bps delivery_rate 2983168bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:44388 142.250.4.189:443 uid:1024 inode:165419510 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:96.696/2.871 ato:40 mss:1418 cwnd:7 pmtu:1500 ssthresh:7 bytes_sent:10276 bytes_acked:9774 bytes_received:14545 segs_out:207 segs_in:207 send 821213bps lastsnd:17146 lastrcv:17036 lastack:17036 pacing_rate 985448bps delivery_rate 467400bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:34914 142.250.70.234:443 uid:1024 inode:165418039 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f4096,w0,o0,bl0,d11) ts sack cubic wscale:8,7 rtt:10.278/0.678 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:22452 bytes_acked:22453 bytes_received:16959 segs_out:307 segs_in:321 send 11037167bps lastsnd:11065 lastrcv:10735 lastack:10735 pacing_rate 22073256bps delivery_rate 2827752bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:34916 142.250.70.234:443 uid:1024 inode:165418040 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d9) ts sack cubic wscale:8,7 rtt:10.081/1.167 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:19775 bytes_acked:19776 bytes_received:15769 segs_out:277 segs_in:301 send 11252852bps lastsnd:11066 lastrcv:11066 lastack:11056 pacing_rate 22505424bps delivery_rate 3209656bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:49594 142.250.70.165:443 timer(keepalive,6.621ms,0) uid:1024 inode:165410113 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb1074240,t0,tb87040,f0,w0,o0,bl0,d6) ts sack cubic wscale:8,7 rtt:11.987/1.417 ato:40 mss:1418 cwnd:18 pmtu:1500 ssthresh:0 bytes_sent:76222 bytes_acked:76223 bytes_received:199808 segs_out:342 segs_in:404 send 17034454bps lastsnd:218733 lastrcv:218735 lastack:38371 pacing_rate 34068192bps delivery_rate 8192584bps rcv_space:75339
|
|
+tcp ESTAB 0 0 10.0.0.10:57232 157.240.8.35:443 uid:1024 inode:165408121 sk:1781 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb46080,f8192,w0,o0,bl0,d4) ts sack cubic wscale:8,7 rtt:23.193/1.8 ato:40 mss:1380 cwnd:2 pmtu:1500 ssthresh:2 bytes_sent:69963 bytes_acked:68311 bytes_received:28389 segs_out:252 segs_in:206 send 952011bps lastsnd:6934 lastrcv:6458 lastack:6458 pacing_rate 1142400bps delivery_rate 371224bps rcv_space:14480
|
|
+udp ESTAB 0 0 10.0.0.10:44639 142.250.70.131:443 uid:1024 inode:165411837 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:46392 142.251.10.189:443 uid:1024 inode:165466671 sk:f23b cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f4096,w0,o0,bl0,d2) ts sack cubic wscale:8,7 rtt:111.69/24.888 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:8645 bytes_acked:8646 bytes_received:12265 segs_out:135 segs_in:139 send 1015668bps lastsnd:52309 lastrcv:25403 lastack:50572 pacing_rate 2031320bps delivery_rate 335272bps rcv_space:14480
|
|
+udp ESTAB 0 0 10.0.0.10:35983 142.250.70.142:443 uid:1024 inode:165466809 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:55532 140.82.114.26:443 timer(keepalive,9.693ms,0) uid:1024 inode:165515920 sk:17eb cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:10,7 rtt:251.743/35.839 ato:40 mss:1424 cwnd:20 pmtu:1500 ssthresh:0 bytes_sent:17930 bytes_acked:17931 bytes_received:4200 segs_out:49 segs_in:46 send 905050bps lastsnd:20795 lastrcv:20795 lastack:20571 pacing_rate 1810096bps delivery_rate 503048bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:55534 140.82.114.26:443 timer(keepalive,28sec,0) uid:1024 inode:165521771 sk:ef38 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:10,7 rtt:283.095/41.806 ato:40 mss:1424 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:2643 bytes_acked:2644 bytes_received:3981 segs_out:36 segs_in:38 send 402409bps lastsnd:2669 lastrcv:2669 lastack:2444 pacing_rate 804816bps delivery_rate 73400bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:55308 142.250.70.228:443 uid:1024 inode:165561257 sk:eb1c cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d3) ts sack cubic wscale:8,7 rtt:11.532/2.782 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:3051 bytes_acked:3052 bytes_received:4379 segs_out:38 segs_in:36 send 9836975bps lastsnd:46596 lastrcv:46586 lastack:46587 pacing_rate 19672664bps delivery_rate 1814168bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:44322 10.0.0.10:55122 timer(keepalive,44sec,0) uid:386 inode:165594717 sk:5 cgroup:/system.slice/pmproxy.service <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:5.315/10.43 ato:40 mss:65483 cwnd:17 pmtu:65535 ssthresh:17 bytes_sent:3451325 bytes_acked:3451325 bytes_received:8189 segs_out:65 segs_in:47 send 1675576294bps lastsnd:609 lastrcv:611 lastack:567 pacing_rate 2010691552bps delivery_rate 130966000000bps rcv_space:65483
|
|
+tcp ESTAB 0 0 10.0.0.10:55694 34.120.177.193:443 timer(keepalive,2.525ms,0) uid:1024 inode:165577700 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d1) ts sack cubic wscale:8,7 rtt:13.091/4.789 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:1234 bytes_acked:1235 bytes_received:5268 segs_out:21 segs_in:20 send 8665495bps lastsnd:224263 lastrcv:224265 lastack:42465 pacing_rate 17330160bps delivery_rate 2267288bps rcv_space:14480
|
|
+tcp ESTAB 0 0 [::1]:3000 [::1]:51232 timer(keepalive,4.425ms,0) uid:378 inode:165581925 sk:5 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.392/0.759 ato:40 mss:65464 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:10191280 bytes_acked:10158498 bytes_received:278267 segs_out:992 segs_in:851 send 13360000000bps lastsnd:607 lastrcv:760 lastack:607 pacing_rate 26677465768bps delivery_rate 174570666664bps rcv_space:65464
|
|
+tcp ESTAB 0 0 [::1]:51238 [::1]:3000 timer(keepalive,6.381ms,0) uid:1024 inode:165581951 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d1) ts sack cubic wscale:7,7 rtt:4.48/8.875 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:238691 bytes_acked:238692 bytes_received:6294114 segs_out:626 segs_in:849 send 585142857bps lastsnd:758 lastrcv:616 lastack:616 pacing_rate 1170122464bps delivery_rate 87381333328bps rcv_space:65476
|
|
+tcp ESTAB 0 0 [::1]:51240 [::1]:3000 timer(keepalive,10sec,0) uid:1024 inode:165583008 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:4.388/8.395 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:247230 bytes_acked:247231 bytes_received:6274312 segs_out:642 segs_in:867 send 597411121bps lastsnd:764 lastrcv:635 lastack:635 pacing_rate 1194686104bps delivery_rate 87381333328bps rcv_space:65476
|
|
+tcp ESTAB 0 0 [::1]:51236 [::1]:3000 timer(keepalive,40sec,0) uid:1024 inode:165575931 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb4585000,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.942/1.793 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:274616 bytes_acked:274617 bytes_received:12991541 segs_out:925 segs_in:1058 send 2782845011bps lastsnd:4761 lastrcv:4697 lastack:4697 pacing_rate 5564213312bps delivery_rate 65536000000bps rcv_space:98304
|
|
+tcp ESTAB 0 0 [::1]:51228 [::1]:3000 timer(keepalive,43sec,0) uid:1024 inode:165582929 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb4978000,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:2.415/4.642 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:265964 bytes_acked:265965 bytes_received:6993639 segs_out:842 segs_in:867 send 1085482402bps lastsnd:759 lastrcv:623 lastack:623 pacing_rate 2170964800bps delivery_rate 87381333328bps rcv_space:98304
|
|
+tcp ESTAB 0 0 [::1]:51232 [::1]:3000 timer(keepalive,43sec,0) uid:1024 inode:165552950 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb4978000,t0,tb2626560,f0,w0,o0,bl0,d3) ts sack cubic wscale:7,7 rtt:3.701/7.013 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:278267 bytes_acked:278268 bytes_received:10158498 segs_out:851 segs_in:993 send 708305863bps lastsnd:760 lastrcv:607 lastack:607 pacing_rate 1416324704bps delivery_rate 87381333328bps rcv_space:163840
|
|
+tcp ESTAB 0 0 10.0.0.10:57958 142.250.70.238:443 uid:1024 inode:165594185 sk:183a cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d1) ts sack cubic wscale:8,7 rtt:10.608/1.213 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:7836 bytes_acked:7837 bytes_received:3104 segs_out:27 segs_in:27 send 10693816bps lastsnd:18595 lastrcv:18584 lastack:18584 pacing_rate 21387376bps delivery_rate 5058864bps rcv_space:14480
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54774 10.0.0.10:44322 timer(timewait,,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54792 10.0.0.10:44322 timer(timewait,,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54794 10.0.0.10:44322 timer(timewait,2.383ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54796 10.0.0.10:44322 timer(timewait,350ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:46306 3.233.54.64:443 timer(keepalive,23sec,0) uid:1024 inode:165592357 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:12,7 rtt:246.45/50.358 ato:40 mss:1448 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:3814 bytes_acked:3815 bytes_received:4765 segs_out:12 segs_in:12 send 470034bps lastsnd:22071 lastrcv:21847 lastack:21848 pacing_rate 940064bps delivery_rate 120016bps rcv_space:14480
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54784 10.0.0.10:44322 timer(timewait,,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:49614 142.250.70.165:443 uid:1024 inode:165581235 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:10.118/1.177 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:3573 bytes_acked:3574 bytes_received:2558 segs_out:20 segs_in:19 send 11211702bps lastsnd:27596 lastrcv:27584 lastack:27584 pacing_rate 22423400bps delivery_rate 3963936bps rcv_space:14480
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54798 10.0.0.10:44322 timer(timewait,222ms,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54802 10.0.0.10:44322 timer(timewait,3.376ms,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54800 10.0.0.10:44322 timer(timewait,354ms,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+udp ESTAB 0 0 10.0.0.10:37128 142.250.70.138:443 uid:1024 inode:165585835 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+udp ESTAB 0 0 10.0.0.10:49113 142.250.70.131:443 uid:1024 inode:165606514 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54872 10.0.0.10:44322 timer(timewait,14sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55048 10.0.0.10:44322 timer(timewait,48sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55060 10.0.0.10:44322 timer(timewait,48sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55094 10.0.0.10:44322 timer(timewait,54sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54980 10.0.0.10:44322 timer(timewait,34sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54806 10.0.0.10:44322 timer(timewait,1.441ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55088 10.0.0.10:44322 timer(timewait,55sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55064 10.0.0.10:44322 timer(timewait,48sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54956 10.0.0.10:44322 timer(timewait,26sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54826 10.0.0.10:44322 timer(timewait,5.357ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54822 10.0.0.10:44322 timer(timewait,8.347ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54860 10.0.0.10:44322 timer(timewait,13sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55092 10.0.0.10:44322 timer(timewait,53sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55036 10.0.0.10:44322 timer(timewait,43sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55038 10.0.0.10:44322 timer(timewait,45sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55066 10.0.0.10:44322 timer(timewait,49sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55080 10.0.0.10:44322 timer(timewait,52sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54916 10.0.0.10:44322 timer(timewait,23sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55034 10.0.0.10:44322 timer(timewait,44sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54954 10.0.0.10:44322 timer(timewait,25sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54894 10.0.0.10:44322 timer(timewait,19sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54968 10.0.0.10:44322 timer(timewait,28sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54978 10.0.0.10:44322 timer(timewait,30sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54830 10.0.0.10:44322 timer(timewait,7.365ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55012 10.0.0.10:44322 timer(timewait,37sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55050 10.0.0.10:44322 timer(timewait,46sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54896 10.0.0.10:44322 timer(timewait,17sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54838 10.0.0.10:44322 timer(timewait,9.447ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55030 10.0.0.10:44322 timer(timewait,41sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55002 10.0.0.10:44322 timer(timewait,37sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55024 10.0.0.10:44322 timer(timewait,41sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55020 10.0.0.10:44322 timer(timewait,43sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55046 10.0.0.10:44322 timer(timewait,45sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54876 10.0.0.10:44322 timer(timewait,18sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55084 10.0.0.10:44322 timer(timewait,52sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54900 10.0.0.10:44322 timer(timewait,19sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55056 10.0.0.10:44322 timer(timewait,47sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54808 10.0.0.10:44322 timer(timewait,2.383ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54858 10.0.0.10:44322 timer(timewait,10sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55032 10.0.0.10:44322 timer(timewait,42sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55000 10.0.0.10:44322 timer(timewait,35sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54810 10.0.0.10:44322 timer(timewait,4.343ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54898 10.0.0.10:44322 timer(timewait,18sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54874 10.0.0.10:44322 timer(timewait,13sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55022 10.0.0.10:44322 timer(timewait,40sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54892 10.0.0.10:44322 timer(timewait,17sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54882 10.0.0.10:44322 timer(timewait,15sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54964 10.0.0.10:44322 timer(timewait,27sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54834 10.0.0.10:44322 timer(timewait,6.831ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54986 10.0.0.10:44322 timer(timewait,32sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54888 10.0.0.10:44322 timer(timewait,16sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55090 10.0.0.10:44322 timer(timewait,53sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54906 10.0.0.10:44322 timer(timewait,23sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54816 10.0.0.10:44322 timer(timewait,4.219ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54974 10.0.0.10:44322 timer(timewait,30sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55004 10.0.0.10:44322 timer(timewait,36sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54972 10.0.0.10:44322 timer(timewait,28sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54966 10.0.0.10:44322 timer(timewait,27sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55070 10.0.0.10:44322 timer(timewait,49sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55006 10.0.0.10:44322 timer(timewait,38sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54904 10.0.0.10:44322 timer(timewait,20sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54836 10.0.0.10:44322 timer(timewait,7.364ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54988 10.0.0.10:44322 timer(timewait,32sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54902 10.0.0.10:44322 timer(timewait,18sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54914 10.0.0.10:44322 timer(timewait,20sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54976 10.0.0.10:44322 timer(timewait,31sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55096 10.0.0.10:44322 timer(timewait,54sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54824 10.0.0.10:44322 timer(timewait,5.225ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54958 10.0.0.10:44322 timer(timewait,26sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54930 10.0.0.10:44322 timer(timewait,22sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54984 10.0.0.10:44322 timer(timewait,31sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54996 10.0.0.10:44322 timer(timewait,36sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54866 10.0.0.10:44322 timer(timewait,12sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54962 10.0.0.10:44322 timer(timewait,29sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54942 10.0.0.10:44322 timer(timewait,24sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54910 10.0.0.10:44322 timer(timewait,19sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55074 10.0.0.10:44322 timer(timewait,56sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54998 10.0.0.10:44322 timer(timewait,35sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54990 10.0.0.10:44322 timer(timewait,34sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55028 10.0.0.10:44322 timer(timewait,42sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55044 10.0.0.10:44322 timer(timewait,50sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55008 10.0.0.10:44322 timer(timewait,38sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54842 10.0.0.10:44322 timer(timewait,12sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54920 10.0.0.10:44322 timer(timewait,21sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54982 10.0.0.10:44322 timer(timewait,30sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54862 10.0.0.10:44322 timer(timewait,11sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54868 10.0.0.10:44322 timer(timewait,12sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54926 10.0.0.10:44322 timer(timewait,22sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55026 10.0.0.10:44322 timer(timewait,41sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54870 10.0.0.10:44322 timer(timewait,13sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54864 10.0.0.10:44322 timer(timewait,15sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54818 10.0.0.10:44322 timer(timewait,6.800ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54812 10.0.0.10:44322 timer(timewait,5.358ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54992 10.0.0.10:44322 timer(timewait,33sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55018 10.0.0.10:44322 timer(timewait,39sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54960 10.0.0.10:44322 timer(timewait,29sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55054 10.0.0.10:44322 timer(timewait,47sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54928 10.0.0.10:44322 timer(timewait,22sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55042 10.0.0.10:44322 timer(timewait,46sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54852 10.0.0.10:44322 timer(timewait,9.426ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54936 10.0.0.10:44322 timer(timewait,23sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54948 10.0.0.10:44322 timer(timewait,26sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55062 10.0.0.10:44322 timer(timewait,49sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54944 10.0.0.10:44322 timer(timewait,27sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54846 10.0.0.10:44322 timer(timewait,9.223ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55040 10.0.0.10:44322 timer(timewait,44sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54804 10.0.0.10:44322 timer(timewait,1.440ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54850 10.0.0.10:44322 timer(timewait,10sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54884 10.0.0.10:44322 timer(timewait,15sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54938 10.0.0.10:44322 timer(timewait,25sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55086 10.0.0.10:44322 timer(timewait,53sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54840 10.0.0.10:44322 timer(timewait,8.342ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55072 10.0.0.10:44322 timer(timewait,50sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54922 10.0.0.10:44322 timer(timewait,21sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54878 10.0.0.10:44322 timer(timewait,14sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55078 10.0.0.10:44322 timer(timewait,51sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55052 10.0.0.10:44322 timer(timewait,46sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54932 10.0.0.10:44322 timer(timewait,24sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54832 10.0.0.10:44322 timer(timewait,6.800ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54880 10.0.0.10:44322 timer(timewait,16sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54854 10.0.0.10:44322 timer(timewait,11sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55082 10.0.0.10:44322 timer(timewait,51sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54856 10.0.0.10:44322 timer(timewait,10sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54994 10.0.0.10:44322 timer(timewait,33sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55068 10.0.0.10:44322 timer(timewait,51sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55014 10.0.0.10:44322 timer(timewait,40sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55016 10.0.0.10:44322 timer(timewait,39sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54814 10.0.0.10:44322 timer(timewait,3.380ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54820 10.0.0.10:44322 timer(timewait,4.339ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54886 10.0.0.10:44322 timer(timewait,17sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54890 10.0.0.10:44322 timer(timewait,16sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55058 10.0.0.10:44322 timer(timewait,47sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54952 10.0.0.10:44322 timer(timewait,25sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:55104 10.0.0.10:44322 timer(keepalive,26sec,0) uid:378 inode:165606577 sk:5 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb6291456,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:8.43/11.76 ato:40 mss:32768 cwnd:10 pmtu:65535 ssthresh:0 bytes_sent:8252 bytes_acked:8253 bytes_received:3480217 segs_out:178 segs_in:356 send 310965599bps lastsnd:756 lastrcv:637 lastack:639 pacing_rate 621875864bps delivery_rate 20164923072bps rcv_space:469929
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55116 10.0.0.10:44322 timer(timewait,58sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55112 10.0.0.10:44322 timer(timewait,59sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55114 10.0.0.10:44322 timer(timewait,58sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55102 10.0.0.10:44322 timer(timewait,56sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55118 10.0.0.10:44322 timer(timewait,59sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55100 10.0.0.10:44322 timer(timewait,58sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55108 10.0.0.10:44322 timer(timewait,57sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55110 10.0.0.10:44322 timer(timewait,57sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55106 10.0.0.10:44322 timer(timewait,56sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:55122 10.0.0.10:44322 timer(keepalive,29sec,0) uid:378 inode:165608516 sk:5 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb3013437,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.236/0.425 ato:40 mss:32768 cwnd:10 pmtu:65535 ssthresh:0 bytes_sent:37 bytes_acked:37 bytes_received:15171 segs_out:47 segs_in:66 send 11107796610bps lastsnd:611 lastrcv:609 lastack:609 pacing_rate 22145216472bps delivery_rate 32768000000bps rcv_space:81920
|
|
|
|
pcp-ss output, at archive end
|
|
# Time: 2021-06-18 13:34:14.168998 Filter: state connected
|
|
Netid State Recv-Q Send-Q Local Address:Port Peer Address:Port Process
|
|
-tcp ESTAB 0 0 [::ffff:127.0.0.1]:3000 [::ffff:127.0.0.1]:49798 timer(keepalive,5.265ms,0) uid:378 inode:164821548 sk:17e9 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb2358342,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.033/0.018 ato:40 mss:32768 cwnd:10 pmtu:65535 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:65664
|
|
-tcp ESTAB 0 0 127.0.0.1:6379 127.0.0.1:34526 timer(keepalive,299ms,0) uid:379 inode:164789635 sk:17e9 cgroup:/system.slice/redis.service <-> skmem(r0,rb6291456,t0,tb4194304,f0,w0,o0,bl0,d226) ts sack cubic wscale:7,7 rtt:5.268/10.344 ato:40 mss:65483 cwnd:51 pmtu:65535 ssthresh:27 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:1379162
|
|
-tcp ESTAB 0 0 10.40.192.134:47862 10.0.15.20:6667 timer(keepalive,2min48sec,0) uid:1024 inode:143267906 sk:39 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb181972,t0,tb46080,f0,w0,o0,bl0,d56) ts sack cubic wscale:8,7 rtt:456.275/44.255 ato:40 mss:1308 cwnd:2 pmtu:1360 ssthresh:2 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:19026
|
|
-tcp ESTAB 0 0 10.0.0.10:58310 52.88.142.33:443 timer(keepalive,1min53sec,0) uid:1024 inode:143231822 sk:39 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d4) ts sack cubic wscale:8,7 rtt:211.152/22.951 ato:40 mss:1448 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
-tcp ESTAB 0 0 10.0.0.10:44852 202.58.9.228:443 timer(keepalive,3.777ms,0) uid:1024 inode:143675936 sk:39 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d1770) sack cubic wscale:9,7 rtt:98.707/11.472 ato:40 mss:1460 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14600
|
|
-tcp ESTAB 0 0 10.0.0.10:37330 217.182.79.119:6667 timer(keepalive,3min20sec,0) uid:1024 inode:147037462 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2467768,t0,tb87040,f0,w0,o0,bl0,d15) ts sack cubic wscale:7,7 rtt:381.926/27.664 ato:40 mss:1448 cwnd:2 pmtu:1500 ssthresh:2 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:64371
|
|
-tcp ESTAB 0 0 192.168.122.1:53100 192.168.122.54:22 timer(keepalive,1min43sec,0) uid:1024 inode:152890200 sk:3a cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d11) ts sack cubic wscale:7,7 rtt:6.415/11.95 ato:40 mss:1448 cwnd:20 pmtu:1500 ssthresh:20 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
-tcp ESTAB 0 0 10.0.0.10:52874 199.127.207.181:443 timer(keepalive,28sec,0) uid:1024 inode:154981923 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d433) sack cubic wscale:9,7 rtt:231.99/42.333 ato:40 mss:1460 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14600
|
|
-tcp ESTAB 0 0 10.0.0.10:33256 10.0.0.6:8009 timer(keepalive,19sec,0) uid:1024 inode:161634072 sk:3a cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2554304,t0,tb87040,f0,w0,o0,bl0,d1) ts sack cubic wscale:6,7 rtt:7.326/1.581 ato:40 mss:1448 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:65491
|
|
-tcp ESTAB 0 0 10.0.0.10:45164 173.194.202.125:443 timer(keepalive,28sec,0) uid:1024 inode:161888302 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f4096,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:228.663/49.231 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
-tcp ESTAB 0 0 10.0.0.10:37256 157.240.8.18:443 timer(keepalive,2min13sec,0) uid:1024 inode:163353710 sk:262 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb1623296,t0,tb46080,f4096,w0,o0,bl0,d37) ts sack cubic wscale:8,7 rtt:21.667/1.031 ato:40 mss:1380 cwnd:22 pmtu:1500 ssthresh:22 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:87463
|
|
-tcp ESTAB 0 0 10.0.0.10:40226 13.54.123.156:443 timer(keepalive,28sec,0) uid:1024 inode:163971400 sk:3b cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2673664,t0,tb46080,f0,w0,o0,bl0,d0) ts sack cubic wscale:12,7 rtt:23.063/0.882 ato:46 mss:1288 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:67012
|
|
-tcp ESTAB 0 0 10.0.0.10:40232 13.54.123.156:443 timer(keepalive,15sec,0) uid:1024 inode:164254779 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2730360,t0,tb46080,f0,w0,o0,bl0,d0) ts sack cubic wscale:12,7 rtt:21.7/0.326 ato:42 mss:1288 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:67755
|
|
-tcp ESTAB 0 0 10.0.0.10:39906 172.217.194.188:5228 timer(keepalive,15sec,0) uid:1024 inode:164287111 sk:eacd cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:94.893/7.701 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
-tcp ESTAB 0 0 127.0.0.1:34526 127.0.0.1:6379 timer(keepalive,646ms,0) uid:386 inode:164791620 sk:ef22 cgroup:/system.slice/pmproxy.service <-> skmem(r0,rb4978722,t0,tb4194304,f0,w0,o0,bl0,d397) ts sack cubic wscale:7,7 rtt:0.217/0.167 ato:40 mss:65483 cwnd:36 pmtu:65535 ssthresh:16 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:245440
|
|
-tcp ESTAB 0 0 127.0.0.1:49798 127.0.0.1:3000 uid:0 inode:164815425 sk:17e9 cgroup:/system.slice/pmcd.service <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:6.023/4.348 ato:40 mss:65483 cwnd:10 pmtu:65535 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:65495
|
|
-udp ESTAB 0 0 10.0.0.10:36244 142.250.70.138:443 uid:1024 inode:165293889 sk:f231 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-udp ESTAB 0 0 10.0.0.10:35754 142.251.10.189:443 uid:1024 inode:165318004 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-udp ESTAB 0 0 10.0.0.10:49123 142.250.4.189:443 uid:1024 inode:165373416 sk:ef33 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp ESTAB 0 0 10.0.0.10:40218 142.250.70.142:443 uid:1024 inode:165413160 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d16) ts sack cubic wscale:8,7 rtt:10.194/0.696 ato:40 mss:1418 cwnd:3 pmtu:1500 ssthresh:2 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
-tcp ESTAB 0 0 10.0.0.10:43990 142.250.70.131:443 uid:1024 inode:165420073 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:9.826/0.515 ato:40 mss:1418 cwnd:4 pmtu:1500 ssthresh:4 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
-tcp ESTAB 0 0 10.0.0.10:44388 142.250.4.189:443 uid:1024 inode:165419510 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f4096,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:96.696/2.871 ato:40 mss:1418 cwnd:7 pmtu:1500 ssthresh:7 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
-tcp ESTAB 0 0 10.0.0.10:34914 142.250.70.234:443 uid:1024 inode:165418039 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f4096,w0,o0,bl0,d11) ts sack cubic wscale:8,7 rtt:10.278/0.678 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
-tcp ESTAB 0 0 10.0.0.10:34916 142.250.70.234:443 uid:1024 inode:165418040 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d9) ts sack cubic wscale:8,7 rtt:10.081/1.167 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:49594 142.250.70.165:443 timer(timewait,41sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp ESTAB 0 0 10.0.0.10:57232 157.240.8.35:443 uid:1024 inode:165408121 sk:1781 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb46080,f8192,w0,o0,bl0,d4) ts sack cubic wscale:8,7 rtt:23.193/1.8 ato:40 mss:1380 cwnd:2 pmtu:1500 ssthresh:2 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
-udp ESTAB 0 0 10.0.0.10:44639 142.250.70.131:443 uid:1024 inode:165411837 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp ESTAB 0 0 10.0.0.10:46392 142.251.10.189:443 uid:1024 inode:165466671 sk:f23b cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f4096,w0,o0,bl0,d3) ts sack cubic wscale:8,7 rtt:111.69/24.888 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
-udp ESTAB 0 0 10.0.0.10:35983 142.250.70.142:443 uid:1024 inode:165466809 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp ESTAB 0 0 10.0.0.10:55532 140.82.114.26:443 timer(keepalive,29sec,0) uid:1024 inode:165515920 sk:17eb cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:10,7 rtt:248.861/32.644 ato:40 mss:1424 cwnd:20 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
-tcp ESTAB 0 0 10.0.0.10:55534 140.82.114.26:443 timer(keepalive,2.767ms,0) uid:1024 inode:165521771 sk:ef38 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:10,7 rtt:283.095/41.806 ato:40 mss:1424 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55304 10.0.0.10:44322 timer(timewait,53sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55306 10.0.0.10:44322 timer(timewait,53sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55308 10.0.0.10:44322 timer(timewait,58sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp ESTAB 0 0 10.0.0.10:44322 10.0.0.10:55342 timer(keepalive,44sec,0) uid:386 inode:165594871 sk:5 cgroup:/system.slice/pmproxy.service <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.05/0.056 ato:40 mss:65483 cwnd:20 pmtu:65535 ssthresh:20 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:65483
|
|
-tcp ESTAB 0 0 10.0.0.10:55694 34.120.177.193:443 timer(keepalive,7.793ms,0) uid:1024 inode:165577700 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d1) ts sack cubic wscale:8,7 rtt:13.091/4.789 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
-tcp ESTAB 0 0 [::1]:3000 [::1]:51232 timer(keepalive,8.488ms,0) uid:378 inode:165581925 sk:5 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.014/0.011 ato:40 mss:65464 cwnd:10 pmtu:65536 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:65464
|
|
-tcp ESTAB 0 0 [::1]:51238 [::1]:3000 timer(keepalive,11sec,0) uid:1024 inode:165581951 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d1) ts sack cubic wscale:7,7 rtt:4.802/9.371 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:65476
|
|
-tcp ESTAB 0 0 [::1]:51240 [::1]:3000 timer(keepalive,15sec,0) uid:1024 inode:165583008 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.783/1.488 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:65476
|
|
-tcp ESTAB 0 0 [::1]:51236 [::1]:3000 timer(keepalive,514ms,0) uid:1024 inode:165575931 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb4585000,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:5.713/10.966 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:98304
|
|
-tcp ESTAB 0 0 [::1]:51228 [::1]:3000 timer(keepalive,3.596ms,0) uid:1024 inode:165582929 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb4978000,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.422/0.763 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:98304
|
|
-tcp ESTAB 0 0 [::1]:51232 [::1]:3000 timer(keepalive,3.596ms,0) uid:1024 inode:165552950 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb4978000,t0,tb2626560,f0,w0,o0,bl0,d3) ts sack cubic wscale:7,7 rtt:8.219/14.257 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:163840
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:57958 142.250.70.238:443 timer(timewait,54sec,0) uid:0 inode:0 sk:183a cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp ESTAB 0 0 10.0.0.10:46306 3.233.54.64:443 timer(keepalive,28sec,0) uid:1024 inode:165592357 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:12,7 rtt:246.45/50.358 ato:40 mss:1448 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
-tcp ESTAB 0 0 10.0.0.10:49614 142.250.70.165:443 uid:1024 inode:165581235 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:10.2/1.047 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55048 10.0.0.10:44322 timer(timewait,8.579ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55060 10.0.0.10:44322 timer(timewait,8.449ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55094 10.0.0.10:44322 timer(timewait,14sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55088 10.0.0.10:44322 timer(timewait,15sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55064 10.0.0.10:44322 timer(timewait,8.577ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55092 10.0.0.10:44322 timer(timewait,13sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55036 10.0.0.10:44322 timer(timewait,3.608ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55038 10.0.0.10:44322 timer(timewait,5.580ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55066 10.0.0.10:44322 timer(timewait,9.605ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55080 10.0.0.10:44322 timer(timewait,12sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55034 10.0.0.10:44322 timer(timewait,4.636ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55050 10.0.0.10:44322 timer(timewait,6.570ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55030 10.0.0.10:44322 timer(timewait,1.618ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55024 10.0.0.10:44322 timer(timewait,1.623ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55020 10.0.0.10:44322 timer(timewait,3.571ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55046 10.0.0.10:44322 timer(timewait,5.577ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55084 10.0.0.10:44322 timer(timewait,12sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55056 10.0.0.10:44322 timer(timewait,7.623ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55032 10.0.0.10:44322 timer(timewait,2.607ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55022 10.0.0.10:44322 timer(timewait,586ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55090 10.0.0.10:44322 timer(timewait,13sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55070 10.0.0.10:44322 timer(timewait,9.625ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55096 10.0.0.10:44322 timer(timewait,14sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55074 10.0.0.10:44322 timer(timewait,16sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55028 10.0.0.10:44322 timer(timewait,2.601ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55044 10.0.0.10:44322 timer(timewait,10sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55026 10.0.0.10:44322 timer(timewait,1.601ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55054 10.0.0.10:44322 timer(timewait,7.474ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55042 10.0.0.10:44322 timer(timewait,6.447ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55062 10.0.0.10:44322 timer(timewait,9.618ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55040 10.0.0.10:44322 timer(timewait,4.635ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55086 10.0.0.10:44322 timer(timewait,13sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55072 10.0.0.10:44322 timer(timewait,10sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55078 10.0.0.10:44322 timer(timewait,11sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55052 10.0.0.10:44322 timer(timewait,6.568ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55082 10.0.0.10:44322 timer(timewait,11sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55068 10.0.0.10:44322 timer(timewait,11sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55014 10.0.0.10:44322 timer(timewait,581ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55058 10.0.0.10:44322 timer(timewait,7.617ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55104 10.0.0.10:44322 timer(timewait,25sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55116 10.0.0.10:44322 timer(timewait,18sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55112 10.0.0.10:44322 timer(timewait,19sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55114 10.0.0.10:44322 timer(timewait,18sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55102 10.0.0.10:44322 timer(timewait,16sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55118 10.0.0.10:44322 timer(timewait,19sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55100 10.0.0.10:44322 timer(timewait,18sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55108 10.0.0.10:44322 timer(timewait,17sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55110 10.0.0.10:44322 timer(timewait,17sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55106 10.0.0.10:44322 timer(timewait,16sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55122 10.0.0.10:44322 timer(timewait,20sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55150 10.0.0.10:44322 timer(timewait,24sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55130 10.0.0.10:44322 timer(timewait,20sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55134 10.0.0.10:44322 timer(timewait,21sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55146 10.0.0.10:44322 timer(timewait,24sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55144 10.0.0.10:44322 timer(timewait,23sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55148 10.0.0.10:44322 timer(timewait,31sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55126 10.0.0.10:44322 timer(timewait,22sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55132 10.0.0.10:44322 timer(timewait,21sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55124 10.0.0.10:44322 timer(timewait,20sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55140 10.0.0.10:44322 timer(timewait,24sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55138 10.0.0.10:44322 timer(timewait,22sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55136 10.0.0.10:44322 timer(timewait,22sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55142 10.0.0.10:44322 timer(timewait,23sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55154 10.0.0.10:44322 timer(timewait,25sec,0) uid:0 inode:0 sk:ef49 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55162 10.0.0.10:44322 timer(timewait,29sec,0) uid:0 inode:0 sk:ef4a cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55156 10.0.0.10:44322 timer(timewait,26sec,0) uid:0 inode:0 sk:ef4b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55164 10.0.0.10:44322 timer(timewait,27sec,0) uid:0 inode:0 sk:17ed cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55174 10.0.0.10:44322 timer(timewait,32sec,0) uid:0 inode:0 sk:17ed cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55176 10.0.0.10:44322 timer(timewait,29sec,0) uid:0 inode:0 sk:17ed cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55172 10.0.0.10:44322 timer(timewait,29sec,0) uid:0 inode:0 sk:17ed cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55152 10.0.0.10:44322 timer(timewait,27sec,0) uid:0 inode:0 sk:17ed cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55168 10.0.0.10:44322 timer(timewait,28sec,0) uid:0 inode:0 sk:ef4c cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55160 10.0.0.10:44322 timer(timewait,26sec,0) uid:0 inode:0 sk:ef4d cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55158 10.0.0.10:44322 timer(timewait,26sec,0) uid:0 inode:0 sk:ef4e cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55166 10.0.0.10:44322 timer(timewait,28sec,0) uid:0 inode:0 sk:ef50 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55200 10.0.0.10:44322 timer(timewait,33sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55178 10.0.0.10:44322 timer(timewait,30sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55186 10.0.0.10:44322 timer(timewait,31sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55190 10.0.0.10:44322 timer(timewait,33sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55184 10.0.0.10:44322 timer(timewait,40sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55206 10.0.0.10:44322 timer(timewait,34sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55182 10.0.0.10:44322 timer(timewait,31sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55194 10.0.0.10:44322 timer(timewait,33sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55204 10.0.0.10:44322 timer(timewait,34sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55210 10.0.0.10:44322 timer(timewait,34sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55188 10.0.0.10:44322 timer(timewait,32sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55196 10.0.0.10:44322 timer(timewait,35sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55180 10.0.0.10:44322 timer(timewait,30sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55232 10.0.0.10:44322 timer(timewait,39sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55216 10.0.0.10:44322 timer(timewait,37sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55218 10.0.0.10:44322 timer(timewait,36sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55222 10.0.0.10:44322 timer(timewait,38sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55224 10.0.0.10:44322 timer(timewait,37sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55226 10.0.0.10:44322 timer(timewait,38sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55228 10.0.0.10:44322 timer(timewait,44sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55220 10.0.0.10:44322 timer(timewait,37sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55214 10.0.0.10:44322 timer(timewait,36sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55230 10.0.0.10:44322 timer(timewait,39sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55212 10.0.0.10:44322 timer(timewait,35sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55260 10.0.0.10:44322 timer(timewait,46sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55238 10.0.0.10:44322 timer(timewait,41sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55240 10.0.0.10:44322 timer(timewait,42sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55248 10.0.0.10:44322 timer(timewait,42sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55244 10.0.0.10:44322 timer(timewait,42sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55234 10.0.0.10:44322 timer(timewait,40sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55250 10.0.0.10:44322 timer(timewait,43sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55262 10.0.0.10:44322 timer(timewait,45sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55242 10.0.0.10:44322 timer(timewait,41sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55256 10.0.0.10:44322 timer(timewait,43sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55236 10.0.0.10:44322 timer(timewait,41sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55254 10.0.0.10:44322 timer(timewait,44sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55286 10.0.0.10:44322 timer(timewait,48sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55272 10.0.0.10:44322 timer(timewait,48sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55268 10.0.0.10:44322 timer(timewait,47sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55288 10.0.0.10:44322 timer(timewait,49sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55274 10.0.0.10:44322 timer(timewait,47sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55276 10.0.0.10:44322 timer(timewait,47sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55266 10.0.0.10:44322 timer(timewait,45sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55278 10.0.0.10:44322 timer(timewait,49sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55282 10.0.0.10:44322 timer(timewait,48sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55270 10.0.0.10:44322 timer(timewait,46sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55280 10.0.0.10:44322 timer(timewait,47sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55284 10.0.0.10:44322 timer(timewait,50sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55292 10.0.0.10:44322 timer(timewait,51sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55298 10.0.0.10:44322 timer(timewait,51sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55300 10.0.0.10:44322 timer(timewait,54sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55302 10.0.0.10:44322 timer(timewait,52sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55310 10.0.0.10:44322 timer(timewait,55sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55296 10.0.0.10:44322 timer(timewait,52sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55294 10.0.0.10:44322 timer(timewait,50sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55312 10.0.0.10:44322 timer(timewait,54sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55334 10.0.0.10:44322 timer(timewait,58sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55320 10.0.0.10:44322 timer(timewait,55sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55326 10.0.0.10:44322 timer(timewait,57sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55330 10.0.0.10:44322 timer(timewait,59sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55322 10.0.0.10:44322 timer(timewait,56sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55340 10.0.0.10:44322 timer(timewait,59sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55318 10.0.0.10:44322 timer(timewait,56sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55338 10.0.0.10:44322 timer(timewait,58sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55328 10.0.0.10:44322 timer(timewait,57sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp ESTAB 0 0 10.0.0.10:55342 10.0.0.10:44322 timer(keepalive,29sec,0) uid:378 inode:165616642 sk:5 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb2882418,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.041/0.024 ato:40 mss:32768 cwnd:10 pmtu:65535 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:73728
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55316 10.0.0.10:44322 timer(timewait,55sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp ESTAB 0 0 10.0.0.10:55332 10.0.0.10:44322 timer(keepalive,28sec,0) uid:378 inode:165581545 sk:5 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb4454646,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:3.728/6.7 ato:40 mss:32768 cwnd:10 pmtu:65535 ssthresh:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:105770
|
|
+tcp ESTAB 0 0 [::ffff:127.0.0.1]:3000 [::ffff:127.0.0.1]:49798 timer(keepalive,5.265ms,0) uid:378 inode:164821548 sk:17e9 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb2358342,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.033/0.018 ato:40 mss:32768 cwnd:10 pmtu:65535 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:65664
|
|
+tcp ESTAB 0 0 127.0.0.1:6379 127.0.0.1:34526 timer(keepalive,299ms,0) uid:379 inode:164789635 sk:17e9 cgroup:/system.slice/redis.service <-> skmem(r0,rb6291456,t0,tb4194304,f0,w0,o0,bl0,d226) ts sack cubic wscale:7,7 rtt:5.268/10.344 ato:40 mss:65483 cwnd:51 pmtu:65535 ssthresh:27 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:1379162
|
|
+tcp ESTAB 0 0 10.40.192.134:47862 10.0.15.20:6667 timer(keepalive,2min48sec,0) uid:1024 inode:143267906 sk:39 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb181972,t0,tb46080,f0,w0,o0,bl0,d56) ts sack cubic wscale:8,7 rtt:456.275/44.255 ato:40 mss:1308 cwnd:2 pmtu:1360 ssthresh:2 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:19026
|
|
+tcp ESTAB 0 0 10.0.0.10:58310 52.88.142.33:443 timer(keepalive,1min53sec,0) uid:1024 inode:143231822 sk:39 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d4) ts sack cubic wscale:8,7 rtt:211.152/22.951 ato:40 mss:1448 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:44852 202.58.9.228:443 timer(keepalive,3.777ms,0) uid:1024 inode:143675936 sk:39 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d1770) sack cubic wscale:9,7 rtt:98.707/11.472 ato:40 mss:1460 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14600
|
|
+tcp ESTAB 0 0 10.0.0.10:37330 217.182.79.119:6667 timer(keepalive,3min20sec,0) uid:1024 inode:147037462 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2467768,t0,tb87040,f0,w0,o0,bl0,d15) ts sack cubic wscale:7,7 rtt:381.926/27.664 ato:40 mss:1448 cwnd:2 pmtu:1500 ssthresh:2 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:64371
|
|
+tcp ESTAB 0 0 192.168.122.1:53100 192.168.122.54:22 timer(keepalive,1min43sec,0) uid:1024 inode:152890200 sk:3a cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d11) ts sack cubic wscale:7,7 rtt:6.415/11.95 ato:40 mss:1448 cwnd:20 pmtu:1500 ssthresh:20 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:52874 199.127.207.181:443 timer(keepalive,28sec,0) uid:1024 inode:154981923 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d433) sack cubic wscale:9,7 rtt:231.99/42.333 ato:40 mss:1460 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14600
|
|
+tcp ESTAB 0 0 10.0.0.10:33256 10.0.0.6:8009 timer(keepalive,19sec,0) uid:1024 inode:161634072 sk:3a cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2554304,t0,tb87040,f0,w0,o0,bl0,d1) ts sack cubic wscale:6,7 rtt:7.326/1.581 ato:40 mss:1448 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:65491
|
|
+tcp ESTAB 0 0 10.0.0.10:45164 173.194.202.125:443 timer(keepalive,28sec,0) uid:1024 inode:161888302 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f4096,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:228.663/49.231 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:37256 157.240.8.18:443 timer(keepalive,2min13sec,0) uid:1024 inode:163353710 sk:262 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb1623296,t0,tb46080,f4096,w0,o0,bl0,d37) ts sack cubic wscale:8,7 rtt:21.667/1.031 ato:40 mss:1380 cwnd:22 pmtu:1500 ssthresh:22 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:87463
|
|
+tcp ESTAB 0 0 10.0.0.10:40226 13.54.123.156:443 timer(keepalive,28sec,0) uid:1024 inode:163971400 sk:3b cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2673664,t0,tb46080,f0,w0,o0,bl0,d0) ts sack cubic wscale:12,7 rtt:23.063/0.882 ato:46 mss:1288 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:67012
|
|
+tcp ESTAB 0 0 10.0.0.10:40232 13.54.123.156:443 timer(keepalive,15sec,0) uid:1024 inode:164254779 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2730360,t0,tb46080,f0,w0,o0,bl0,d0) ts sack cubic wscale:12,7 rtt:21.7/0.326 ato:42 mss:1288 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:67755
|
|
+tcp ESTAB 0 0 10.0.0.10:39906 172.217.194.188:5228 timer(keepalive,15sec,0) uid:1024 inode:164287111 sk:eacd cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:94.893/7.701 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp ESTAB 0 0 127.0.0.1:34526 127.0.0.1:6379 timer(keepalive,646ms,0) uid:386 inode:164791620 sk:ef22 cgroup:/system.slice/pmproxy.service <-> skmem(r0,rb4978722,t0,tb4194304,f0,w0,o0,bl0,d397) ts sack cubic wscale:7,7 rtt:0.217/0.167 ato:40 mss:65483 cwnd:36 pmtu:65535 ssthresh:16 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:245440
|
|
+tcp ESTAB 0 0 127.0.0.1:49798 127.0.0.1:3000 uid:0 inode:164815425 sk:17e9 cgroup:/system.slice/pmcd.service <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:6.023/4.348 ato:40 mss:65483 cwnd:10 pmtu:65535 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:65495
|
|
+udp ESTAB 0 0 10.0.0.10:36244 142.250.70.138:443 uid:1024 inode:165293889 sk:f231 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+udp ESTAB 0 0 10.0.0.10:35754 142.251.10.189:443 uid:1024 inode:165318004 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+udp ESTAB 0 0 10.0.0.10:49123 142.250.4.189:443 uid:1024 inode:165373416 sk:ef33 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:40218 142.250.70.142:443 uid:1024 inode:165413160 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d16) ts sack cubic wscale:8,7 rtt:10.194/0.696 ato:40 mss:1418 cwnd:3 pmtu:1500 ssthresh:2 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:43990 142.250.70.131:443 uid:1024 inode:165420073 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:9.826/0.515 ato:40 mss:1418 cwnd:4 pmtu:1500 ssthresh:4 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:44388 142.250.4.189:443 uid:1024 inode:165419510 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f4096,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:96.696/2.871 ato:40 mss:1418 cwnd:7 pmtu:1500 ssthresh:7 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:34914 142.250.70.234:443 uid:1024 inode:165418039 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f4096,w0,o0,bl0,d11) ts sack cubic wscale:8,7 rtt:10.278/0.678 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:34916 142.250.70.234:443 uid:1024 inode:165418040 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d9) ts sack cubic wscale:8,7 rtt:10.081/1.167 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:49594 142.250.70.165:443 timer(timewait,41sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:57232 157.240.8.35:443 uid:1024 inode:165408121 sk:1781 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb46080,f8192,w0,o0,bl0,d4) ts sack cubic wscale:8,7 rtt:23.193/1.8 ato:40 mss:1380 cwnd:2 pmtu:1500 ssthresh:2 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+udp ESTAB 0 0 10.0.0.10:44639 142.250.70.131:443 uid:1024 inode:165411837 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:46392 142.251.10.189:443 uid:1024 inode:165466671 sk:f23b cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f4096,w0,o0,bl0,d3) ts sack cubic wscale:8,7 rtt:111.69/24.888 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+udp ESTAB 0 0 10.0.0.10:35983 142.250.70.142:443 uid:1024 inode:165466809 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:55532 140.82.114.26:443 timer(keepalive,29sec,0) uid:1024 inode:165515920 sk:17eb cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:10,7 rtt:248.861/32.644 ato:40 mss:1424 cwnd:20 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:55534 140.82.114.26:443 timer(keepalive,2.767ms,0) uid:1024 inode:165521771 sk:ef38 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:10,7 rtt:283.095/41.806 ato:40 mss:1424 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55304 10.0.0.10:44322 timer(timewait,53sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55306 10.0.0.10:44322 timer(timewait,53sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55308 10.0.0.10:44322 timer(timewait,58sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:44322 10.0.0.10:55342 timer(keepalive,44sec,0) uid:386 inode:165594871 sk:5 cgroup:/system.slice/pmproxy.service <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.05/0.056 ato:40 mss:65483 cwnd:20 pmtu:65535 ssthresh:20 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:65483
|
|
+tcp ESTAB 0 0 10.0.0.10:55694 34.120.177.193:443 timer(keepalive,7.793ms,0) uid:1024 inode:165577700 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d1) ts sack cubic wscale:8,7 rtt:13.091/4.789 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp ESTAB 0 0 [::1]:3000 [::1]:51232 timer(keepalive,8.488ms,0) uid:378 inode:165581925 sk:5 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.014/0.011 ato:40 mss:65464 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:65464
|
|
+tcp ESTAB 0 0 [::1]:51238 [::1]:3000 timer(keepalive,11sec,0) uid:1024 inode:165581951 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d1) ts sack cubic wscale:7,7 rtt:4.802/9.371 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:65476
|
|
+tcp ESTAB 0 0 [::1]:51240 [::1]:3000 timer(keepalive,15sec,0) uid:1024 inode:165583008 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.783/1.488 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:65476
|
|
+tcp ESTAB 0 0 [::1]:51236 [::1]:3000 timer(keepalive,514ms,0) uid:1024 inode:165575931 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb4585000,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:5.713/10.966 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:98304
|
|
+tcp ESTAB 0 0 [::1]:51228 [::1]:3000 timer(keepalive,3.596ms,0) uid:1024 inode:165582929 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb4978000,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.422/0.763 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:98304
|
|
+tcp ESTAB 0 0 [::1]:51232 [::1]:3000 timer(keepalive,3.596ms,0) uid:1024 inode:165552950 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb4978000,t0,tb2626560,f0,w0,o0,bl0,d3) ts sack cubic wscale:7,7 rtt:8.219/14.257 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:163840
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:57958 142.250.70.238:443 timer(timewait,54sec,0) uid:0 inode:0 sk:183a cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:46306 3.233.54.64:443 timer(keepalive,28sec,0) uid:1024 inode:165592357 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:12,7 rtt:246.45/50.358 ato:40 mss:1448 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:49614 142.250.70.165:443 uid:1024 inode:165581235 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:10.2/1.047 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55048 10.0.0.10:44322 timer(timewait,8.579ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55060 10.0.0.10:44322 timer(timewait,8.449ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55094 10.0.0.10:44322 timer(timewait,14sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55088 10.0.0.10:44322 timer(timewait,15sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55064 10.0.0.10:44322 timer(timewait,8.577ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55092 10.0.0.10:44322 timer(timewait,13sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55036 10.0.0.10:44322 timer(timewait,3.608ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55038 10.0.0.10:44322 timer(timewait,5.580ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55066 10.0.0.10:44322 timer(timewait,9.605ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55080 10.0.0.10:44322 timer(timewait,12sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55034 10.0.0.10:44322 timer(timewait,4.636ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55050 10.0.0.10:44322 timer(timewait,6.570ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55030 10.0.0.10:44322 timer(timewait,1.618ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55024 10.0.0.10:44322 timer(timewait,1.623ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55020 10.0.0.10:44322 timer(timewait,3.571ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55046 10.0.0.10:44322 timer(timewait,5.577ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55084 10.0.0.10:44322 timer(timewait,12sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55056 10.0.0.10:44322 timer(timewait,7.623ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55032 10.0.0.10:44322 timer(timewait,2.607ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55022 10.0.0.10:44322 timer(timewait,586ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55090 10.0.0.10:44322 timer(timewait,13sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55070 10.0.0.10:44322 timer(timewait,9.625ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55096 10.0.0.10:44322 timer(timewait,14sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55074 10.0.0.10:44322 timer(timewait,16sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55028 10.0.0.10:44322 timer(timewait,2.601ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55044 10.0.0.10:44322 timer(timewait,10sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55026 10.0.0.10:44322 timer(timewait,1.601ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55054 10.0.0.10:44322 timer(timewait,7.474ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55042 10.0.0.10:44322 timer(timewait,6.447ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55062 10.0.0.10:44322 timer(timewait,9.618ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55040 10.0.0.10:44322 timer(timewait,4.635ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55086 10.0.0.10:44322 timer(timewait,13sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55072 10.0.0.10:44322 timer(timewait,10sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55078 10.0.0.10:44322 timer(timewait,11sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55052 10.0.0.10:44322 timer(timewait,6.568ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55082 10.0.0.10:44322 timer(timewait,11sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55068 10.0.0.10:44322 timer(timewait,11sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55014 10.0.0.10:44322 timer(timewait,581ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55058 10.0.0.10:44322 timer(timewait,7.617ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55104 10.0.0.10:44322 timer(timewait,25sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55116 10.0.0.10:44322 timer(timewait,18sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55112 10.0.0.10:44322 timer(timewait,19sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55114 10.0.0.10:44322 timer(timewait,18sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55102 10.0.0.10:44322 timer(timewait,16sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55118 10.0.0.10:44322 timer(timewait,19sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55100 10.0.0.10:44322 timer(timewait,18sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55108 10.0.0.10:44322 timer(timewait,17sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55110 10.0.0.10:44322 timer(timewait,17sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55106 10.0.0.10:44322 timer(timewait,16sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55122 10.0.0.10:44322 timer(timewait,20sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55150 10.0.0.10:44322 timer(timewait,24sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55130 10.0.0.10:44322 timer(timewait,20sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55134 10.0.0.10:44322 timer(timewait,21sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55146 10.0.0.10:44322 timer(timewait,24sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55144 10.0.0.10:44322 timer(timewait,23sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55148 10.0.0.10:44322 timer(timewait,31sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55126 10.0.0.10:44322 timer(timewait,22sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55132 10.0.0.10:44322 timer(timewait,21sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55124 10.0.0.10:44322 timer(timewait,20sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55140 10.0.0.10:44322 timer(timewait,24sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55138 10.0.0.10:44322 timer(timewait,22sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55136 10.0.0.10:44322 timer(timewait,22sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55142 10.0.0.10:44322 timer(timewait,23sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55154 10.0.0.10:44322 timer(timewait,25sec,0) uid:0 inode:0 sk:ef49 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55162 10.0.0.10:44322 timer(timewait,29sec,0) uid:0 inode:0 sk:ef4a cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55156 10.0.0.10:44322 timer(timewait,26sec,0) uid:0 inode:0 sk:ef4b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55164 10.0.0.10:44322 timer(timewait,27sec,0) uid:0 inode:0 sk:17ed cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55174 10.0.0.10:44322 timer(timewait,32sec,0) uid:0 inode:0 sk:17ed cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55176 10.0.0.10:44322 timer(timewait,29sec,0) uid:0 inode:0 sk:17ed cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55172 10.0.0.10:44322 timer(timewait,29sec,0) uid:0 inode:0 sk:17ed cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55152 10.0.0.10:44322 timer(timewait,27sec,0) uid:0 inode:0 sk:17ed cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55168 10.0.0.10:44322 timer(timewait,28sec,0) uid:0 inode:0 sk:ef4c cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55160 10.0.0.10:44322 timer(timewait,26sec,0) uid:0 inode:0 sk:ef4d cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55158 10.0.0.10:44322 timer(timewait,26sec,0) uid:0 inode:0 sk:ef4e cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55166 10.0.0.10:44322 timer(timewait,28sec,0) uid:0 inode:0 sk:ef50 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55200 10.0.0.10:44322 timer(timewait,33sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55178 10.0.0.10:44322 timer(timewait,30sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55186 10.0.0.10:44322 timer(timewait,31sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55190 10.0.0.10:44322 timer(timewait,33sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55184 10.0.0.10:44322 timer(timewait,40sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55206 10.0.0.10:44322 timer(timewait,34sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55182 10.0.0.10:44322 timer(timewait,31sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55194 10.0.0.10:44322 timer(timewait,33sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55204 10.0.0.10:44322 timer(timewait,34sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55210 10.0.0.10:44322 timer(timewait,34sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55188 10.0.0.10:44322 timer(timewait,32sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55196 10.0.0.10:44322 timer(timewait,35sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55180 10.0.0.10:44322 timer(timewait,30sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55232 10.0.0.10:44322 timer(timewait,39sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55216 10.0.0.10:44322 timer(timewait,37sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55218 10.0.0.10:44322 timer(timewait,36sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55222 10.0.0.10:44322 timer(timewait,38sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55224 10.0.0.10:44322 timer(timewait,37sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55226 10.0.0.10:44322 timer(timewait,38sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55228 10.0.0.10:44322 timer(timewait,44sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55220 10.0.0.10:44322 timer(timewait,37sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55214 10.0.0.10:44322 timer(timewait,36sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55230 10.0.0.10:44322 timer(timewait,39sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55212 10.0.0.10:44322 timer(timewait,35sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55260 10.0.0.10:44322 timer(timewait,46sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55238 10.0.0.10:44322 timer(timewait,41sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55240 10.0.0.10:44322 timer(timewait,42sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55248 10.0.0.10:44322 timer(timewait,42sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55244 10.0.0.10:44322 timer(timewait,42sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55234 10.0.0.10:44322 timer(timewait,40sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55250 10.0.0.10:44322 timer(timewait,43sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55262 10.0.0.10:44322 timer(timewait,45sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55242 10.0.0.10:44322 timer(timewait,41sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55256 10.0.0.10:44322 timer(timewait,43sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55236 10.0.0.10:44322 timer(timewait,41sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55254 10.0.0.10:44322 timer(timewait,44sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55286 10.0.0.10:44322 timer(timewait,48sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55272 10.0.0.10:44322 timer(timewait,48sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55268 10.0.0.10:44322 timer(timewait,47sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55288 10.0.0.10:44322 timer(timewait,49sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55274 10.0.0.10:44322 timer(timewait,47sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55276 10.0.0.10:44322 timer(timewait,47sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55266 10.0.0.10:44322 timer(timewait,45sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55278 10.0.0.10:44322 timer(timewait,49sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55282 10.0.0.10:44322 timer(timewait,48sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55270 10.0.0.10:44322 timer(timewait,46sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55280 10.0.0.10:44322 timer(timewait,47sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55284 10.0.0.10:44322 timer(timewait,50sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55292 10.0.0.10:44322 timer(timewait,51sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55298 10.0.0.10:44322 timer(timewait,51sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55300 10.0.0.10:44322 timer(timewait,54sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55302 10.0.0.10:44322 timer(timewait,52sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55310 10.0.0.10:44322 timer(timewait,55sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55296 10.0.0.10:44322 timer(timewait,52sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55294 10.0.0.10:44322 timer(timewait,50sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55312 10.0.0.10:44322 timer(timewait,54sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55334 10.0.0.10:44322 timer(timewait,58sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55320 10.0.0.10:44322 timer(timewait,55sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55326 10.0.0.10:44322 timer(timewait,57sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55330 10.0.0.10:44322 timer(timewait,59sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55322 10.0.0.10:44322 timer(timewait,56sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55340 10.0.0.10:44322 timer(timewait,59sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55318 10.0.0.10:44322 timer(timewait,56sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55338 10.0.0.10:44322 timer(timewait,58sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55328 10.0.0.10:44322 timer(timewait,57sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:55342 10.0.0.10:44322 timer(keepalive,29sec,0) uid:378 inode:165616642 sk:5 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb2882418,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.041/0.024 ato:40 mss:32768 cwnd:10 pmtu:65535 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:73728
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55316 10.0.0.10:44322 timer(timewait,55sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:55332 10.0.0.10:44322 timer(keepalive,28sec,0) uid:378 inode:165581545 sk:5 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb4454646,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:3.728/6.7 ato:40 mss:32768 cwnd:10 pmtu:65535 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:105770
|
|
|
|
check error handling when metrics not present. Note error is expected
|
|
Error: metrics for 'network.persocket' not found in archive archives/pcp-mpstat
|
|
diff --git a/src/pcp/ss/pcp-ss.py b/src/pcp/ss/pcp-ss.py
|
|
index 8b29d2b21..9b225555c 100755
|
|
--- a/src/pcp/ss/pcp-ss.py
|
|
+++ b/src/pcp/ss/pcp-ss.py
|
|
@@ -45,7 +45,9 @@ class SS(object):
|
|
self.speclocal = None
|
|
self.metrics = []
|
|
self.instD = {} # { instid: instname }
|
|
- self.metricsD = {} # { name: [fetchgroup, {instid: value}] }
|
|
+ self.metricsD = {} # { name: fetchgroup }
|
|
+ self.descsD = {} # { name: pmDesc }
|
|
+ self.valuesD = {} # { name: {instid: value} }
|
|
self.context = None
|
|
self.pmfg = None
|
|
|
|
@@ -185,13 +187,18 @@ class SS(object):
|
|
|
|
self.context.pmTraversePMNS(pmns, self.traverseCB)
|
|
self.pmids = self.context.pmLookupName(self.metrics)
|
|
+ descs = self.context.pmLookupDescs(self.pmids)
|
|
|
|
# Create metrics dict keyed by metric name (without pmns prefix).
|
|
- # Each metricsD item is a list of [fetchgroup, dict of inst vals]
|
|
- for pmnsname in self.metrics:
|
|
+ nmetrics = len(self.metrics)
|
|
+ for i in range (0, nmetrics):
|
|
+ pmnsname = self.metrics[i]
|
|
name = remove_prefix(pmnsname, pmns + ".")
|
|
try:
|
|
- self.metricsD[name] = [self.pmfg.extend_indom(pmnsname, maxnum=1000)]
|
|
+ # do not want rate conversion, so use "instant" scale and only one fetch
|
|
+ self.descsD[name] = descs[i]
|
|
+ self.metricsD[name] = self.pmfg.extend_indom(pmnsname,
|
|
+ descs[i].contents.type, scale="instant", maxnum=10000)
|
|
except Exception as e:
|
|
print("Warning: Failed to add %s to fetch group: %s" % (name, e))
|
|
|
|
@@ -202,28 +209,25 @@ class SS(object):
|
|
print("Error: fetch failed: %s" % e)
|
|
sys.exit(1)
|
|
|
|
- # extract instances
|
|
- for name, metricL in self.metricsD.items():
|
|
+ # extract instances and values
|
|
+ for name in self.metricsD:
|
|
try:
|
|
instvalsD = {}
|
|
# walk the instances in the fetch group for this metric
|
|
- fg = metricL[0]
|
|
- for inst, iname, value in fg():
|
|
+ for inst, iname, value in self.metricsD[name]():
|
|
self.instD[inst] = iname
|
|
try:
|
|
instvalsD[inst] = value()
|
|
except Exception as e:
|
|
- # print("Error: value() failed for metric %s, inst ID %d: %s" % (name, inst, e.message()))
|
|
- pass
|
|
- self.metricsD[name].append(instvalsD) # [1] is dict of instid:value
|
|
+ print("Error: value() failed for metric %s, inst %d, iname %s: %s" % (name, inst, iname, e))
|
|
+ self.valuesD[name] = instvalsD
|
|
except Exception as e:
|
|
- print("Warning: failed to extract instances for metric %s, inst %d, iname %s, value %s: %s" %
|
|
- (name, inst, iname, value(), e))
|
|
+ pass # instance went away, socket probably closed
|
|
|
|
def strfield(self, fmt, metric, inst, default=""):
|
|
""" return formatted field, if metric and inst are available else default string """
|
|
try:
|
|
- s = self.metricsD[metric][1][inst]
|
|
+ s = self.valuesD[metric][inst]
|
|
if s is not None:
|
|
return fmt % s
|
|
except:
|
|
@@ -233,7 +237,7 @@ class SS(object):
|
|
def intfield(self, fmt, metric, inst, default=0):
|
|
""" return formatted field, if metric and inst are available else default """
|
|
try:
|
|
- s = self.metricsD[metric][1][inst]
|
|
+ s = self.valuesD[metric][inst]
|
|
if s is not None:
|
|
return fmt % s
|
|
except:
|
|
@@ -243,7 +247,7 @@ class SS(object):
|
|
def boolfield(self, field, metric, inst, default=""):
|
|
""" return field if metric and inst are available and non-zero """
|
|
try:
|
|
- s = self.metricsD[metric][1][inst]
|
|
+ s = self.valuesD[metric][inst]
|
|
if s is not None and s != 0:
|
|
return field
|
|
except:
|
|
@@ -253,7 +257,7 @@ class SS(object):
|
|
def filter_netid(self, inst):
|
|
""" filter on netid and -t, -u and -x cmdline options """
|
|
ret = False
|
|
- netid = self.metricsD["netid"][1][inst]
|
|
+ netid = self.valuesD["netid"][inst]
|
|
if self.args.tcp and netid == "tcp":
|
|
ret = True
|
|
elif self.args.udp and netid == "udp":
|
|
@@ -268,8 +272,8 @@ class SS(object):
|
|
""" filter on tcp state """
|
|
if self.args.all:
|
|
return True
|
|
- netid = self.metricsD["netid"][1][inst]
|
|
- state = self.metricsD["state"][1][inst]
|
|
+ netid = self.valuesD["netid"][inst]
|
|
+ state = self.valuesD["state"][inst]
|
|
if self.args.listening:
|
|
if state != "LISTEN" and netid in ("tcp", "tcp6"):
|
|
return False
|
|
@@ -292,7 +296,7 @@ class SS(object):
|
|
out += self.strfield("%-26s", "dst", inst)
|
|
|
|
if self.args.options: # -o --options flag
|
|
- m = self.metricsD["timer.str"][1][inst]
|
|
+ m = self.valuesD["timer.str"][inst]
|
|
if m is not None and len(m) > 0:
|
|
out += " timer(%s)" % m
|
|
|
|
@@ -301,15 +305,15 @@ class SS(object):
|
|
out += self.strfield(" inode:%lu", "inode", inst, 0)
|
|
out += self.strfield(" sk:%x", "sk", inst, 0)
|
|
out += self.strfield(" cgroup:%s", "cgroup", inst)
|
|
- if self.metricsD["v6only"][1][inst] != 0:
|
|
- out += " v6only:%d" % self.metricsD["v6only"][1][inst]
|
|
+ if self.valuesD["v6only"][inst] != 0:
|
|
+ out += " v6only:%d" % self.valuesD["v6only"][inst]
|
|
out += " <->"
|
|
|
|
if not self.args.oneline and (self.args.memory or self.args.info):
|
|
out += "\n"
|
|
|
|
if self.args.memory: # -m --memory flag
|
|
- m = self.metricsD["skmem.str"][1][inst]
|
|
+ m = self.valuesD["skmem.str"][inst]
|
|
if m is not None and len(m) > 0:
|
|
out += " skmem(%s)" % m
|
|
|
|
@@ -326,6 +330,7 @@ class SS(object):
|
|
out += self.strfield(" cwnd:%d", "cwnd", inst, 0)
|
|
out += self.strfield(" pmtu:%d", "pmtu", inst, 0)
|
|
out += self.strfield(" ssthresh:%d", "ssthresh", inst, 0)
|
|
+ out += self.strfield(" bytes_sent:%lu", "bytes_sent", inst, 0)
|
|
out += self.strfield(" bytes_acked:%lu", "bytes_acked", inst, 0)
|
|
out += self.strfield(" bytes_received:%lu", "bytes_received", inst, 0)
|
|
out += self.strfield(" segs_out:%lu", "segs_out", inst, 0)
|
|
|
|
commit a2a4527d328b6c737c744f3b58fd6012616bd9bc
|
|
Author: Mark Goodwin <mgoodwin@redhat.com>
|
|
Date: Tue Jun 29 14:00:28 2021 +1000
|
|
|
|
pmdasockets: fix resource leak coverity CID371684
|
|
|
|
Plug leak in error handling path:
|
|
|
|
*** CID 371684: Resource leaks (RESOURCE_LEAK)
|
|
/src/pmdas/linux_sockets/ss_refresh.c: 72 in ss_refresh()
|
|
66 sts = pmdaCacheLookupName(indom, instname, &inst, (void **)&ss);
|
|
67 if (sts < 0 || ss == NULL) {
|
|
68 /* new entry */
|
|
69 if (ss == NULL)
|
|
70 ss = (ss_stats_t *)malloc(sizeof(ss_stats_t));
|
|
71 if (ss == NULL)
|
|
>>> CID 371684: Resource leaks (RESOURCE_LEAK)
|
|
>>> Variable "fp" going out of scope leaks the storage it points to.
|
|
72 return -ENOMEM;
|
|
73 sts = 0;
|
|
74 }
|
|
|
|
diff --git a/src/pmdas/linux_sockets/ss_refresh.c b/src/pmdas/linux_sockets/ss_refresh.c
|
|
index 76e222cd5..fc73ce4dc 100644
|
|
--- a/src/pmdas/linux_sockets/ss_refresh.c
|
|
+++ b/src/pmdas/linux_sockets/ss_refresh.c
|
|
@@ -68,8 +68,10 @@ ss_refresh(int indom)
|
|
/* new entry */
|
|
if (ss == NULL)
|
|
ss = (ss_stats_t *)malloc(sizeof(ss_stats_t));
|
|
- if (ss == NULL)
|
|
+ if (ss == NULL) {
|
|
+ ss_close_stream(fp);
|
|
return -ENOMEM;
|
|
+ }
|
|
sts = 0;
|
|
}
|
|
*ss = parsed_ss;
|
|
|
|
commit 1ff17fc3220a5d4bf3980f0fe5bef44ba29be7bc
|
|
Author: Mark Goodwin <mgoodwin@redhat.com>
|
|
Date: Tue Jun 29 14:24:57 2021 +1000
|
|
|
|
docs: document pmdasockets filter config file
|
|
|
|
Updated pmdasockets(1) man page.
|
|
|
|
diff --git a/src/pmdas/linux_sockets/pmdasockets.1 b/src/pmdas/linux_sockets/pmdasockets.1
|
|
index 865be4de1..e7997202e 100644
|
|
--- a/src/pmdas/linux_sockets/pmdasockets.1
|
|
+++ b/src/pmdas/linux_sockets/pmdasockets.1
|
|
@@ -65,12 +65,19 @@ filter to be applied to optionally select socket states,
|
|
IP addresses and other options that
|
|
.B pmdasockets
|
|
will collect (to populate it's instance domain).
|
|
-By default, this is
|
|
+This is loaded on PMDA startup from the file
|
|
+.B $(PCP_SYSCONF_DIR)/sockets/filter.conf
|
|
+(typically
|
|
+.BR /etc/pcp/sockets/filter.conf )
|
|
+and defaults to
|
|
.B state connected
|
|
meaning only sockets in the
|
|
.B connected
|
|
state will be included.
|
|
-This can be changed dynamically by using
|
|
+This can be changed persistently by editing
|
|
+.BR filter.conf
|
|
+as the root user.
|
|
+The filter can also be changed dynamically after the PMDA has started by using
|
|
.BR pmstore (1)
|
|
to store a new filter string in the
|
|
.B network.persocket.filter
|
|
@@ -87,8 +94,8 @@ E.g.
|
|
.RE
|
|
.sp 1
|
|
will change the filter to include sockets in all states.
|
|
-Note that the filter string is not persisted across PMDA restarts or reboots
|
|
-(this may change in the future).
|
|
+Note a dynamically stored filter is not persisted across PMDA restarts or reboots
|
|
+(edit the config file for a persistent change).
|
|
For further details of the filter syntax and options, consult
|
|
.BR ss (8).
|
|
.SH LOGGING CONFIGURATION
|
|
|
|
commit 1174dcc3d934d25750b5ac6ced3f67141388af34
|
|
Author: Mark Goodwin <mgoodwin@redhat.com>
|
|
Date: Wed Jun 30 10:21:02 2021 +1000
|
|
|
|
qa/1634: fix for when sockets PMDA isn't enabled
|
|
|
|
diff --git a/qa/1634 b/qa/1634
|
|
index 742fac0b9..ef52c3070 100755
|
|
--- a/qa/1634
|
|
+++ b/qa/1634
|
|
@@ -26,15 +26,14 @@ fi
|
|
|
|
# Override the pmda's filter.conf
|
|
[ -f $PCP_PMDAS_DIR/sockets/filter.conf ] && \
|
|
-_save_config $PCP_PMDAS_DIR/sockets/filter.conf
|
|
+_save_config $PCP_SYSCONF_DIR/sockets/filter.conf
|
|
echo "state connected" >$tmp.filter
|
|
-$sudo cp $tmp.filter $PCP_PMDAS_DIR/sockets/filter.conf
|
|
+$sudo cp $tmp.filter $PCP_SYSCONF_DIR/sockets/filter.conf
|
|
|
|
_cleanup()
|
|
{
|
|
cd $here
|
|
- [ -f $PCP_VAR_DIR/config/pmda/$domain.0.$seq ] && \
|
|
- _restore_config $PCP_PMDAS_DIR/sockets/filter.conf
|
|
+ _restore_config $PCP_SYSCONF_DIR/sockets/filter.conf
|
|
|
|
$sudo rm -rf $tmp $tmp.*
|
|
}
|
|
@@ -45,7 +44,7 @@ trap "_cleanup; exit \$status" 0 1 2 3 15
|
|
|
|
_filter()
|
|
{
|
|
- sed -e "s;$tmp;TMP;g"
|
|
+ sed -e "s;$tmp;TMP;g" -e '/Unable to open help text file/d'
|
|
}
|
|
|
|
# real QA test starts here
|
|
|
|
commit 488ec284812ce3fa6cfea4bedf503fe7f7495b51
|
|
Author: Ken McDonell <kenj@kenj.id.au>
|
|
Date: Thu Jul 1 06:00:07 2021 +1000
|
|
|
|
src/pmdas/linux_sockets: fix #! for Install and Remove
|
|
|
|
For portability reasons the shell lives in /bin/sh not /usr/bin/sh.
|
|
|
|
diff --git a/src/pmdas/linux_sockets/Install b/src/pmdas/linux_sockets/Install
|
|
index 28d7c7f9e..09d07d2b9 100755
|
|
--- a/src/pmdas/linux_sockets/Install
|
|
+++ b/src/pmdas/linux_sockets/Install
|
|
@@ -1,4 +1,4 @@
|
|
-#!/usr/bin/sh
|
|
+#!/bin/sh
|
|
#
|
|
# Copyright (c) 2021 Red Hat.
|
|
#
|
|
diff --git a/src/pmdas/linux_sockets/Remove b/src/pmdas/linux_sockets/Remove
|
|
index 3fee6a0e6..8f380016f 100755
|
|
--- a/src/pmdas/linux_sockets/Remove
|
|
+++ b/src/pmdas/linux_sockets/Remove
|
|
@@ -1,4 +1,4 @@
|
|
-#!/usr/bin/sh
|
|
+#!/bin/sh
|
|
#
|
|
# Copyright (c) 2021 Red Hat.
|
|
#
|
|
|
|
commit c0ff11472c93dc4cee47cd87bea20f90b59527c5
|
|
Author: Mark Goodwin <mgoodwin@redhat.com>
|
|
Date: Thu Jul 1 10:40:23 2021 +1000
|
|
|
|
pmdasockets: add missing help text for reord_seen and delivered
|
|
|
|
Added missing help text for two of the TCP Info metrics, gleaned from
|
|
The M-Lab TCP INFO Data Set, https://measurementlab.net/tests/tcp-info
|
|
|
|
diff --git a/src/pmdas/linux_sockets/help b/src/pmdas/linux_sockets/help
|
|
index 97b05eeaa..4250738fe 100644
|
|
--- a/src/pmdas/linux_sockets/help
|
|
+++ b/src/pmdas/linux_sockets/help
|
|
@@ -120,11 +120,15 @@ The recent effective delivery bandwidth of the connection to the client. This gi
|
|
an estimate of current connection performance by excluding periods when the connection
|
|
was idle due to lack of application data to send.
|
|
|
|
-@ network.persocket.delivered
|
|
+@ network.persocket.delivered data segments and retransmits delivered to the receiver
|
|
+Data segments delivered to the receiver including retransmits, as reported by
|
|
+returning ACKs, used by ECN. Kernel: delivered in include/linux/tcp.h
|
|
|
|
@ network.persocket.app_limited TCP flows are limited with application-limiting
|
|
|
|
-@ network.persocket.reord_seen
|
|
+@ network.persocket.reord_seen received ACKs that were out of order
|
|
+Received ACKs that were out of order. Estimates reordering on the
|
|
+return path. Kernel: reord_seen
|
|
|
|
@ network.persocket.busy TCP connection is busy??
|
|
|
|
|
|
commit 4fdda037dfeeea8929219170b7d0234d8216101e
|
|
Author: Ken McDonell <kenj@kenj.id.au>
|
|
Date: Fri Jul 2 07:34:36 2021 +1000
|
|
|
|
qa/1633: pcp-ss output order is non-deterministic
|
|
|
|
May be a Python-version thing, but we're seeing test failures where
|
|
the _order_ of the output lines in the body of the report is different
|
|
on different platforms.
|
|
|
|
Add _filter() to sort the output and remake .out.
|
|
|
|
diff --git a/qa/1633 b/qa/1633
|
|
index 8ce2fc3ba..e6cac503b 100755
|
|
--- a/qa/1633
|
|
+++ b/qa/1633
|
|
@@ -14,6 +14,21 @@ status=1 # failure is the default!
|
|
$sudo rm -rf $tmp.* $seq.full
|
|
trap "cd $here; rm -rf $tmp.*; exit \$status" 0 1 2 3 15
|
|
|
|
+# Something in pcp-ss is non-deterministic about how the
|
|
+# output lines are ordered, so we have to sort 'em here.
|
|
+# The first 2 lines are "heading", so keep them out of
|
|
+# the sort.
|
|
+#
|
|
+_filter()
|
|
+{
|
|
+ $PCP_AWK_PROG '
|
|
+BEGIN { out = "head" }
|
|
+NR == 3 { out = "body" }
|
|
+ { print >"'$tmp'." out }'
|
|
+ cat $tmp.head
|
|
+ LC_COLLATE=POSIX sort $tmp.body
|
|
+}
|
|
+
|
|
pcp_ss="$PCP_BINADM_DIR/pcp-ss"
|
|
test -x $pcp_ss || _notrun "No pcp-ss(1) installed"
|
|
|
|
@@ -21,16 +36,20 @@ test -x $pcp_ss || _notrun "No pcp-ss(1) installed"
|
|
archive=$here/archives/pcp-ss
|
|
|
|
echo && echo pcp-ss output, at default offset
|
|
-pcp -z -a $archive ss -oemitauO
|
|
+pcp -z -a $archive ss -oemitauO \
|
|
+| _filter
|
|
|
|
echo && echo pcp-ss output, at 10s offset
|
|
-pcp -z -S10s -a $archive ss -oemitauO
|
|
+pcp -z -S10s -a $archive ss -oemitauO \
|
|
+| _filter
|
|
|
|
echo && echo pcp-ss output, at specific start time
|
|
-pcp -z -S'@Fri Jun 18 13:33:39 2021' -a $archive ss -oemitauO
|
|
+pcp -z -S'@Fri Jun 18 13:33:39 2021' -a $archive ss -oemitauO \
|
|
+| _filter
|
|
|
|
echo && echo pcp-ss output, at archive end
|
|
-pcp -z -O-0 -a $archive ss -oemitauO
|
|
+pcp -z -O-0 -a $archive ss -oemitauO \
|
|
+| _filter
|
|
|
|
echo && echo check error handling when metrics not present. Note error is expected
|
|
pcp -z -O-0 -a $here/archives/pcp-mpstat ss 2>&1 | sed -e "s;$here/;;"
|
|
diff --git a/qa/1633.out b/qa/1633.out
|
|
index c1ba33d69..b1c3ff824 100644
|
|
--- a/qa/1633.out
|
|
+++ b/qa/1633.out
|
|
@@ -3,788 +3,788 @@ QA output created by 1633
|
|
pcp-ss output, at default offset
|
|
# Time: 2021-06-18 13:34:14.168998 Filter: state connected
|
|
Netid State Recv-Q Send-Q Local Address:Port Peer Address:Port Process
|
|
-tcp ESTAB 0 0 [::ffff:127.0.0.1]:3000 [::ffff:127.0.0.1]:49798 timer(keepalive,5.265ms,0) uid:378 inode:164821548 sk:17e9 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb2358342,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.033/0.018 ato:40 mss:32768 cwnd:10 pmtu:65535 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:65664
|
|
+tcp ESTAB 0 0 [::1]:3000 [::1]:51232 timer(keepalive,8.488ms,0) uid:378 inode:165581925 sk:5 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.014/0.011 ato:40 mss:65464 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:65464
|
|
+tcp ESTAB 0 0 [::1]:51228 [::1]:3000 timer(keepalive,3.596ms,0) uid:1024 inode:165582929 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb4978000,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.422/0.763 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:98304
|
|
+tcp ESTAB 0 0 [::1]:51232 [::1]:3000 timer(keepalive,3.596ms,0) uid:1024 inode:165552950 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb4978000,t0,tb2626560,f0,w0,o0,bl0,d3) ts sack cubic wscale:7,7 rtt:8.219/14.257 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:163840
|
|
+tcp ESTAB 0 0 [::1]:51236 [::1]:3000 timer(keepalive,514ms,0) uid:1024 inode:165575931 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb4585000,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:5.713/10.966 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:98304
|
|
+tcp ESTAB 0 0 [::1]:51238 [::1]:3000 timer(keepalive,11sec,0) uid:1024 inode:165581951 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d1) ts sack cubic wscale:7,7 rtt:4.802/9.371 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:65476
|
|
+tcp ESTAB 0 0 [::1]:51240 [::1]:3000 timer(keepalive,15sec,0) uid:1024 inode:165583008 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.783/1.488 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:65476
|
|
tcp ESTAB 0 0 127.0.0.1:6379 127.0.0.1:34526 timer(keepalive,299ms,0) uid:379 inode:164789635 sk:17e9 cgroup:/system.slice/redis.service <-> skmem(r0,rb6291456,t0,tb4194304,f0,w0,o0,bl0,d226) ts sack cubic wscale:7,7 rtt:5.268/10.344 ato:40 mss:65483 cwnd:51 pmtu:65535 ssthresh:27 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:1379162
|
|
-tcp ESTAB 0 0 10.40.192.134:47862 10.0.15.20:6667 timer(keepalive,2min48sec,0) uid:1024 inode:143267906 sk:39 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb181972,t0,tb46080,f0,w0,o0,bl0,d56) ts sack cubic wscale:8,7 rtt:456.275/44.255 ato:40 mss:1308 cwnd:2 pmtu:1360 ssthresh:2 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:19026
|
|
-tcp ESTAB 0 0 10.0.0.10:58310 52.88.142.33:443 timer(keepalive,1min53sec,0) uid:1024 inode:143231822 sk:39 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d4) ts sack cubic wscale:8,7 rtt:211.152/22.951 ato:40 mss:1448 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
-tcp ESTAB 0 0 10.0.0.10:44852 202.58.9.228:443 timer(keepalive,3.777ms,0) uid:1024 inode:143675936 sk:39 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d1770) sack cubic wscale:9,7 rtt:98.707/11.472 ato:40 mss:1460 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14600
|
|
-tcp ESTAB 0 0 10.0.0.10:37330 217.182.79.119:6667 timer(keepalive,3min20sec,0) uid:1024 inode:147037462 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2467768,t0,tb87040,f0,w0,o0,bl0,d15) ts sack cubic wscale:7,7 rtt:381.926/27.664 ato:40 mss:1448 cwnd:2 pmtu:1500 ssthresh:2 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:64371
|
|
-tcp ESTAB 0 0 192.168.122.1:53100 192.168.122.54:22 timer(keepalive,1min43sec,0) uid:1024 inode:152890200 sk:3a cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d11) ts sack cubic wscale:7,7 rtt:6.415/11.95 ato:40 mss:1448 cwnd:20 pmtu:1500 ssthresh:20 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
-tcp ESTAB 0 0 10.0.0.10:52874 199.127.207.181:443 timer(keepalive,28sec,0) uid:1024 inode:154981923 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d433) sack cubic wscale:9,7 rtt:231.99/42.333 ato:40 mss:1460 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14600
|
|
tcp ESTAB 0 0 10.0.0.10:33256 10.0.0.6:8009 timer(keepalive,19sec,0) uid:1024 inode:161634072 sk:3a cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2554304,t0,tb87040,f0,w0,o0,bl0,d1) ts sack cubic wscale:6,7 rtt:7.326/1.581 ato:40 mss:1448 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:65491
|
|
-tcp ESTAB 0 0 10.0.0.10:45164 173.194.202.125:443 timer(keepalive,28sec,0) uid:1024 inode:161888302 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f4096,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:228.663/49.231 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:34914 142.250.70.234:443 uid:1024 inode:165418039 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f4096,w0,o0,bl0,d11) ts sack cubic wscale:8,7 rtt:10.278/0.678 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:34916 142.250.70.234:443 uid:1024 inode:165418040 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d9) ts sack cubic wscale:8,7 rtt:10.081/1.167 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
tcp ESTAB 0 0 10.0.0.10:37256 157.240.8.18:443 timer(keepalive,2min13sec,0) uid:1024 inode:163353710 sk:262 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb1623296,t0,tb46080,f4096,w0,o0,bl0,d37) ts sack cubic wscale:8,7 rtt:21.667/1.031 ato:40 mss:1380 cwnd:22 pmtu:1500 ssthresh:22 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:87463
|
|
-tcp ESTAB 0 0 10.0.0.10:40226 13.54.123.156:443 timer(keepalive,28sec,0) uid:1024 inode:163971400 sk:3b cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2673664,t0,tb46080,f0,w0,o0,bl0,d0) ts sack cubic wscale:12,7 rtt:23.063/0.882 ato:46 mss:1288 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:67012
|
|
-tcp ESTAB 0 0 10.0.0.10:40232 13.54.123.156:443 timer(keepalive,15sec,0) uid:1024 inode:164254779 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2730360,t0,tb46080,f0,w0,o0,bl0,d0) ts sack cubic wscale:12,7 rtt:21.7/0.326 ato:42 mss:1288 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:67755
|
|
+tcp ESTAB 0 0 10.0.0.10:37330 217.182.79.119:6667 timer(keepalive,3min20sec,0) uid:1024 inode:147037462 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2467768,t0,tb87040,f0,w0,o0,bl0,d15) ts sack cubic wscale:7,7 rtt:381.926/27.664 ato:40 mss:1448 cwnd:2 pmtu:1500 ssthresh:2 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:64371
|
|
tcp ESTAB 0 0 10.0.0.10:39906 172.217.194.188:5228 timer(keepalive,15sec,0) uid:1024 inode:164287111 sk:eacd cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:94.893/7.701 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
-tcp ESTAB 0 0 127.0.0.1:34526 127.0.0.1:6379 timer(keepalive,646ms,0) uid:386 inode:164791620 sk:ef22 cgroup:/system.slice/pmproxy.service <-> skmem(r0,rb4978722,t0,tb4194304,f0,w0,o0,bl0,d397) ts sack cubic wscale:7,7 rtt:0.217/0.167 ato:40 mss:65483 cwnd:36 pmtu:65535 ssthresh:16 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:245440
|
|
-tcp ESTAB 0 0 127.0.0.1:49798 127.0.0.1:3000 uid:0 inode:164815425 sk:17e9 cgroup:/system.slice/pmcd.service <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:6.023/4.348 ato:40 mss:65483 cwnd:10 pmtu:65535 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:65495
|
|
-udp ESTAB 0 0 10.0.0.10:36244 142.250.70.138:443 uid:1024 inode:165293889 sk:f231 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-udp ESTAB 0 0 10.0.0.10:35754 142.251.10.189:443 uid:1024 inode:165318004 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-udp ESTAB 0 0 10.0.0.10:49123 142.250.4.189:443 uid:1024 inode:165373416 sk:ef33 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp ESTAB 0 0 10.0.0.10:40218 142.250.70.142:443 uid:1024 inode:165413160 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d16) ts sack cubic wscale:8,7 rtt:10.194/0.696 ato:40 mss:1418 cwnd:3 pmtu:1500 ssthresh:2 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:40226 13.54.123.156:443 timer(keepalive,28sec,0) uid:1024 inode:163971400 sk:3b cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2673664,t0,tb46080,f0,w0,o0,bl0,d0) ts sack cubic wscale:12,7 rtt:23.063/0.882 ato:46 mss:1288 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:67012
|
|
+tcp ESTAB 0 0 10.0.0.10:40232 13.54.123.156:443 timer(keepalive,15sec,0) uid:1024 inode:164254779 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2730360,t0,tb46080,f0,w0,o0,bl0,d0) ts sack cubic wscale:12,7 rtt:21.7/0.326 ato:42 mss:1288 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:67755
|
|
tcp ESTAB 0 0 10.0.0.10:43990 142.250.70.131:443 uid:1024 inode:165420073 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:9.826/0.515 ato:40 mss:1418 cwnd:4 pmtu:1500 ssthresh:4 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:44322 10.0.0.10:55342 timer(keepalive,44sec,0) uid:386 inode:165594871 sk:5 cgroup:/system.slice/pmproxy.service <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.05/0.056 ato:40 mss:65483 cwnd:20 pmtu:65535 ssthresh:20 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:65483
|
|
tcp ESTAB 0 0 10.0.0.10:44388 142.250.4.189:443 uid:1024 inode:165419510 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f4096,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:96.696/2.871 ato:40 mss:1418 cwnd:7 pmtu:1500 ssthresh:7 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
-tcp ESTAB 0 0 10.0.0.10:34914 142.250.70.234:443 uid:1024 inode:165418039 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f4096,w0,o0,bl0,d11) ts sack cubic wscale:8,7 rtt:10.278/0.678 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
-tcp ESTAB 0 0 10.0.0.10:34916 142.250.70.234:443 uid:1024 inode:165418040 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d9) ts sack cubic wscale:8,7 rtt:10.081/1.167 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:49594 142.250.70.165:443 timer(timewait,41sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp ESTAB 0 0 10.0.0.10:57232 157.240.8.35:443 uid:1024 inode:165408121 sk:1781 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb46080,f8192,w0,o0,bl0,d4) ts sack cubic wscale:8,7 rtt:23.193/1.8 ato:40 mss:1380 cwnd:2 pmtu:1500 ssthresh:2 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
-udp ESTAB 0 0 10.0.0.10:44639 142.250.70.131:443 uid:1024 inode:165411837 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:44852 202.58.9.228:443 timer(keepalive,3.777ms,0) uid:1024 inode:143675936 sk:39 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d1770) sack cubic wscale:9,7 rtt:98.707/11.472 ato:40 mss:1460 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14600
|
|
+tcp ESTAB 0 0 10.0.0.10:45164 173.194.202.125:443 timer(keepalive,28sec,0) uid:1024 inode:161888302 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f4096,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:228.663/49.231 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:46306 3.233.54.64:443 timer(keepalive,28sec,0) uid:1024 inode:165592357 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:12,7 rtt:246.45/50.358 ato:40 mss:1448 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
tcp ESTAB 0 0 10.0.0.10:46392 142.251.10.189:443 uid:1024 inode:165466671 sk:f23b cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f4096,w0,o0,bl0,d3) ts sack cubic wscale:8,7 rtt:111.69/24.888 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
-udp ESTAB 0 0 10.0.0.10:35983 142.250.70.142:443 uid:1024 inode:165466809 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:49614 142.250.70.165:443 uid:1024 inode:165581235 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:10.2/1.047 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:52874 199.127.207.181:443 timer(keepalive,28sec,0) uid:1024 inode:154981923 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d433) sack cubic wscale:9,7 rtt:231.99/42.333 ato:40 mss:1460 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14600
|
|
+tcp ESTAB 0 0 10.0.0.10:55332 10.0.0.10:44322 timer(keepalive,28sec,0) uid:378 inode:165581545 sk:5 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb4454646,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:3.728/6.7 ato:40 mss:32768 cwnd:10 pmtu:65535 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:105770
|
|
+tcp ESTAB 0 0 10.0.0.10:55342 10.0.0.10:44322 timer(keepalive,29sec,0) uid:378 inode:165616642 sk:5 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb2882418,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.041/0.024 ato:40 mss:32768 cwnd:10 pmtu:65535 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:73728
|
|
tcp ESTAB 0 0 10.0.0.10:55532 140.82.114.26:443 timer(keepalive,29sec,0) uid:1024 inode:165515920 sk:17eb cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:10,7 rtt:248.861/32.644 ato:40 mss:1424 cwnd:20 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
tcp ESTAB 0 0 10.0.0.10:55534 140.82.114.26:443 timer(keepalive,2.767ms,0) uid:1024 inode:165521771 sk:ef38 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:10,7 rtt:283.095/41.806 ato:40 mss:1424 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55304 10.0.0.10:44322 timer(timewait,53sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55306 10.0.0.10:44322 timer(timewait,53sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55308 10.0.0.10:44322 timer(timewait,58sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp ESTAB 0 0 10.0.0.10:44322 10.0.0.10:55342 timer(keepalive,44sec,0) uid:386 inode:165594871 sk:5 cgroup:/system.slice/pmproxy.service <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.05/0.056 ato:40 mss:65483 cwnd:20 pmtu:65535 ssthresh:20 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:65483
|
|
tcp ESTAB 0 0 10.0.0.10:55694 34.120.177.193:443 timer(keepalive,7.793ms,0) uid:1024 inode:165577700 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d1) ts sack cubic wscale:8,7 rtt:13.091/4.789 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
-tcp ESTAB 0 0 [::1]:3000 [::1]:51232 timer(keepalive,8.488ms,0) uid:378 inode:165581925 sk:5 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.014/0.011 ato:40 mss:65464 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:65464
|
|
-tcp ESTAB 0 0 [::1]:51238 [::1]:3000 timer(keepalive,11sec,0) uid:1024 inode:165581951 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d1) ts sack cubic wscale:7,7 rtt:4.802/9.371 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:65476
|
|
-tcp ESTAB 0 0 [::1]:51240 [::1]:3000 timer(keepalive,15sec,0) uid:1024 inode:165583008 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.783/1.488 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:65476
|
|
-tcp ESTAB 0 0 [::1]:51236 [::1]:3000 timer(keepalive,514ms,0) uid:1024 inode:165575931 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb4585000,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:5.713/10.966 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:98304
|
|
-tcp ESTAB 0 0 [::1]:51228 [::1]:3000 timer(keepalive,3.596ms,0) uid:1024 inode:165582929 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb4978000,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.422/0.763 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:98304
|
|
-tcp ESTAB 0 0 [::1]:51232 [::1]:3000 timer(keepalive,3.596ms,0) uid:1024 inode:165552950 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb4978000,t0,tb2626560,f0,w0,o0,bl0,d3) ts sack cubic wscale:7,7 rtt:8.219/14.257 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:163840
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:57958 142.250.70.238:443 timer(timewait,54sec,0) uid:0 inode:0 sk:183a cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp ESTAB 0 0 10.0.0.10:46306 3.233.54.64:443 timer(keepalive,28sec,0) uid:1024 inode:165592357 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:12,7 rtt:246.45/50.358 ato:40 mss:1448 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
-tcp ESTAB 0 0 10.0.0.10:49614 142.250.70.165:443 uid:1024 inode:165581235 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:10.2/1.047 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55048 10.0.0.10:44322 timer(timewait,8.579ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55060 10.0.0.10:44322 timer(timewait,8.449ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55094 10.0.0.10:44322 timer(timewait,14sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55088 10.0.0.10:44322 timer(timewait,15sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55064 10.0.0.10:44322 timer(timewait,8.577ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55092 10.0.0.10:44322 timer(timewait,13sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55036 10.0.0.10:44322 timer(timewait,3.608ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55038 10.0.0.10:44322 timer(timewait,5.580ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55066 10.0.0.10:44322 timer(timewait,9.605ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55080 10.0.0.10:44322 timer(timewait,12sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55034 10.0.0.10:44322 timer(timewait,4.636ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55050 10.0.0.10:44322 timer(timewait,6.570ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55030 10.0.0.10:44322 timer(timewait,1.618ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55024 10.0.0.10:44322 timer(timewait,1.623ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:57232 157.240.8.35:443 uid:1024 inode:165408121 sk:1781 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb46080,f8192,w0,o0,bl0,d4) ts sack cubic wscale:8,7 rtt:23.193/1.8 ato:40 mss:1380 cwnd:2 pmtu:1500 ssthresh:2 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:58310 52.88.142.33:443 timer(keepalive,1min53sec,0) uid:1024 inode:143231822 sk:39 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d4) ts sack cubic wscale:8,7 rtt:211.152/22.951 ato:40 mss:1448 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp ESTAB 0 0 127.0.0.1:34526 127.0.0.1:6379 timer(keepalive,646ms,0) uid:386 inode:164791620 sk:ef22 cgroup:/system.slice/pmproxy.service <-> skmem(r0,rb4978722,t0,tb4194304,f0,w0,o0,bl0,d397) ts sack cubic wscale:7,7 rtt:0.217/0.167 ato:40 mss:65483 cwnd:36 pmtu:65535 ssthresh:16 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:245440
|
|
+tcp ESTAB 0 0 127.0.0.1:49798 127.0.0.1:3000 uid:0 inode:164815425 sk:17e9 cgroup:/system.slice/pmcd.service <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:6.023/4.348 ato:40 mss:65483 cwnd:10 pmtu:65535 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:65495
|
|
+tcp ESTAB 0 0 10.40.192.134:47862 10.0.15.20:6667 timer(keepalive,2min48sec,0) uid:1024 inode:143267906 sk:39 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb181972,t0,tb46080,f0,w0,o0,bl0,d56) ts sack cubic wscale:8,7 rtt:456.275/44.255 ato:40 mss:1308 cwnd:2 pmtu:1360 ssthresh:2 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:19026
|
|
+tcp ESTAB 0 0 192.168.122.1:53100 192.168.122.54:22 timer(keepalive,1min43sec,0) uid:1024 inode:152890200 sk:3a cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d11) ts sack cubic wscale:7,7 rtt:6.415/11.95 ato:40 mss:1448 cwnd:20 pmtu:1500 ssthresh:20 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp ESTAB 0 0 [::ffff:127.0.0.1]:3000 [::ffff:127.0.0.1]:49798 timer(keepalive,5.265ms,0) uid:378 inode:164821548 sk:17e9 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb2358342,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.033/0.018 ato:40 mss:32768 cwnd:10 pmtu:65535 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:65664
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:49594 142.250.70.165:443 timer(timewait,41sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55014 10.0.0.10:44322 timer(timewait,581ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55020 10.0.0.10:44322 timer(timewait,3.571ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55046 10.0.0.10:44322 timer(timewait,5.577ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55084 10.0.0.10:44322 timer(timewait,12sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55056 10.0.0.10:44322 timer(timewait,7.623ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55032 10.0.0.10:44322 timer(timewait,2.607ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55022 10.0.0.10:44322 timer(timewait,586ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55090 10.0.0.10:44322 timer(timewait,13sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55070 10.0.0.10:44322 timer(timewait,9.625ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55096 10.0.0.10:44322 timer(timewait,14sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55074 10.0.0.10:44322 timer(timewait,16sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55024 10.0.0.10:44322 timer(timewait,1.623ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55026 10.0.0.10:44322 timer(timewait,1.601ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55028 10.0.0.10:44322 timer(timewait,2.601ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55030 10.0.0.10:44322 timer(timewait,1.618ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55032 10.0.0.10:44322 timer(timewait,2.607ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55034 10.0.0.10:44322 timer(timewait,4.636ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55036 10.0.0.10:44322 timer(timewait,3.608ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55038 10.0.0.10:44322 timer(timewait,5.580ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55040 10.0.0.10:44322 timer(timewait,4.635ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55042 10.0.0.10:44322 timer(timewait,6.447ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55044 10.0.0.10:44322 timer(timewait,10sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55026 10.0.0.10:44322 timer(timewait,1.601ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55046 10.0.0.10:44322 timer(timewait,5.577ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55048 10.0.0.10:44322 timer(timewait,8.579ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55050 10.0.0.10:44322 timer(timewait,6.570ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55052 10.0.0.10:44322 timer(timewait,6.568ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55054 10.0.0.10:44322 timer(timewait,7.474ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55042 10.0.0.10:44322 timer(timewait,6.447ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55056 10.0.0.10:44322 timer(timewait,7.623ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55058 10.0.0.10:44322 timer(timewait,7.617ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55060 10.0.0.10:44322 timer(timewait,8.449ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55062 10.0.0.10:44322 timer(timewait,9.618ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55040 10.0.0.10:44322 timer(timewait,4.635ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55086 10.0.0.10:44322 timer(timewait,13sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55064 10.0.0.10:44322 timer(timewait,8.577ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55066 10.0.0.10:44322 timer(timewait,9.605ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55068 10.0.0.10:44322 timer(timewait,11sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55070 10.0.0.10:44322 timer(timewait,9.625ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55072 10.0.0.10:44322 timer(timewait,10sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55074 10.0.0.10:44322 timer(timewait,16sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55078 10.0.0.10:44322 timer(timewait,11sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55052 10.0.0.10:44322 timer(timewait,6.568ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55080 10.0.0.10:44322 timer(timewait,12sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55082 10.0.0.10:44322 timer(timewait,11sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55068 10.0.0.10:44322 timer(timewait,11sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55014 10.0.0.10:44322 timer(timewait,581ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55058 10.0.0.10:44322 timer(timewait,7.617ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55084 10.0.0.10:44322 timer(timewait,12sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55086 10.0.0.10:44322 timer(timewait,13sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55088 10.0.0.10:44322 timer(timewait,15sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55090 10.0.0.10:44322 timer(timewait,13sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55092 10.0.0.10:44322 timer(timewait,13sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55094 10.0.0.10:44322 timer(timewait,14sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55096 10.0.0.10:44322 timer(timewait,14sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55100 10.0.0.10:44322 timer(timewait,18sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55102 10.0.0.10:44322 timer(timewait,16sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55104 10.0.0.10:44322 timer(timewait,25sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55116 10.0.0.10:44322 timer(timewait,18sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55106 10.0.0.10:44322 timer(timewait,16sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55108 10.0.0.10:44322 timer(timewait,17sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55110 10.0.0.10:44322 timer(timewait,17sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55112 10.0.0.10:44322 timer(timewait,19sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55114 10.0.0.10:44322 timer(timewait,18sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55102 10.0.0.10:44322 timer(timewait,16sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55116 10.0.0.10:44322 timer(timewait,18sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55118 10.0.0.10:44322 timer(timewait,19sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55100 10.0.0.10:44322 timer(timewait,18sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55108 10.0.0.10:44322 timer(timewait,17sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55110 10.0.0.10:44322 timer(timewait,17sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55106 10.0.0.10:44322 timer(timewait,16sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55122 10.0.0.10:44322 timer(timewait,20sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55150 10.0.0.10:44322 timer(timewait,24sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55130 10.0.0.10:44322 timer(timewait,20sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55134 10.0.0.10:44322 timer(timewait,21sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55146 10.0.0.10:44322 timer(timewait,24sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55144 10.0.0.10:44322 timer(timewait,23sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55148 10.0.0.10:44322 timer(timewait,31sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55124 10.0.0.10:44322 timer(timewait,20sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55126 10.0.0.10:44322 timer(timewait,22sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55130 10.0.0.10:44322 timer(timewait,20sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55132 10.0.0.10:44322 timer(timewait,21sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55124 10.0.0.10:44322 timer(timewait,20sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55140 10.0.0.10:44322 timer(timewait,24sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55138 10.0.0.10:44322 timer(timewait,22sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55134 10.0.0.10:44322 timer(timewait,21sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55136 10.0.0.10:44322 timer(timewait,22sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55138 10.0.0.10:44322 timer(timewait,22sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55140 10.0.0.10:44322 timer(timewait,24sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55142 10.0.0.10:44322 timer(timewait,23sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55144 10.0.0.10:44322 timer(timewait,23sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55146 10.0.0.10:44322 timer(timewait,24sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55148 10.0.0.10:44322 timer(timewait,31sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55150 10.0.0.10:44322 timer(timewait,24sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55152 10.0.0.10:44322 timer(timewait,27sec,0) uid:0 inode:0 sk:17ed cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55154 10.0.0.10:44322 timer(timewait,25sec,0) uid:0 inode:0 sk:ef49 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55162 10.0.0.10:44322 timer(timewait,29sec,0) uid:0 inode:0 sk:ef4a cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55156 10.0.0.10:44322 timer(timewait,26sec,0) uid:0 inode:0 sk:ef4b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55158 10.0.0.10:44322 timer(timewait,26sec,0) uid:0 inode:0 sk:ef4e cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55160 10.0.0.10:44322 timer(timewait,26sec,0) uid:0 inode:0 sk:ef4d cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55162 10.0.0.10:44322 timer(timewait,29sec,0) uid:0 inode:0 sk:ef4a cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55164 10.0.0.10:44322 timer(timewait,27sec,0) uid:0 inode:0 sk:17ed cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55166 10.0.0.10:44322 timer(timewait,28sec,0) uid:0 inode:0 sk:ef50 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55168 10.0.0.10:44322 timer(timewait,28sec,0) uid:0 inode:0 sk:ef4c cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55172 10.0.0.10:44322 timer(timewait,29sec,0) uid:0 inode:0 sk:17ed cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55174 10.0.0.10:44322 timer(timewait,32sec,0) uid:0 inode:0 sk:17ed cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55176 10.0.0.10:44322 timer(timewait,29sec,0) uid:0 inode:0 sk:17ed cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55172 10.0.0.10:44322 timer(timewait,29sec,0) uid:0 inode:0 sk:17ed cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55152 10.0.0.10:44322 timer(timewait,27sec,0) uid:0 inode:0 sk:17ed cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55168 10.0.0.10:44322 timer(timewait,28sec,0) uid:0 inode:0 sk:ef4c cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55160 10.0.0.10:44322 timer(timewait,26sec,0) uid:0 inode:0 sk:ef4d cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55158 10.0.0.10:44322 timer(timewait,26sec,0) uid:0 inode:0 sk:ef4e cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55166 10.0.0.10:44322 timer(timewait,28sec,0) uid:0 inode:0 sk:ef50 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55200 10.0.0.10:44322 timer(timewait,33sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55178 10.0.0.10:44322 timer(timewait,30sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55180 10.0.0.10:44322 timer(timewait,30sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55182 10.0.0.10:44322 timer(timewait,31sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55184 10.0.0.10:44322 timer(timewait,40sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55186 10.0.0.10:44322 timer(timewait,31sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55188 10.0.0.10:44322 timer(timewait,32sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55190 10.0.0.10:44322 timer(timewait,33sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55184 10.0.0.10:44322 timer(timewait,40sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55206 10.0.0.10:44322 timer(timewait,34sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55182 10.0.0.10:44322 timer(timewait,31sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55194 10.0.0.10:44322 timer(timewait,33sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55196 10.0.0.10:44322 timer(timewait,35sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55200 10.0.0.10:44322 timer(timewait,33sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55204 10.0.0.10:44322 timer(timewait,34sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55206 10.0.0.10:44322 timer(timewait,34sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55210 10.0.0.10:44322 timer(timewait,34sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55188 10.0.0.10:44322 timer(timewait,32sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55196 10.0.0.10:44322 timer(timewait,35sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55180 10.0.0.10:44322 timer(timewait,30sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55232 10.0.0.10:44322 timer(timewait,39sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55212 10.0.0.10:44322 timer(timewait,35sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55214 10.0.0.10:44322 timer(timewait,36sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55216 10.0.0.10:44322 timer(timewait,37sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55218 10.0.0.10:44322 timer(timewait,36sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55220 10.0.0.10:44322 timer(timewait,37sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55222 10.0.0.10:44322 timer(timewait,38sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55224 10.0.0.10:44322 timer(timewait,37sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55226 10.0.0.10:44322 timer(timewait,38sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55228 10.0.0.10:44322 timer(timewait,44sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55220 10.0.0.10:44322 timer(timewait,37sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55214 10.0.0.10:44322 timer(timewait,36sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55230 10.0.0.10:44322 timer(timewait,39sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55212 10.0.0.10:44322 timer(timewait,35sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55260 10.0.0.10:44322 timer(timewait,46sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55232 10.0.0.10:44322 timer(timewait,39sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55234 10.0.0.10:44322 timer(timewait,40sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55236 10.0.0.10:44322 timer(timewait,41sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55238 10.0.0.10:44322 timer(timewait,41sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55240 10.0.0.10:44322 timer(timewait,42sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55248 10.0.0.10:44322 timer(timewait,42sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55242 10.0.0.10:44322 timer(timewait,41sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55244 10.0.0.10:44322 timer(timewait,42sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55234 10.0.0.10:44322 timer(timewait,40sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55248 10.0.0.10:44322 timer(timewait,42sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55250 10.0.0.10:44322 timer(timewait,43sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55262 10.0.0.10:44322 timer(timewait,45sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55242 10.0.0.10:44322 timer(timewait,41sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55256 10.0.0.10:44322 timer(timewait,43sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55236 10.0.0.10:44322 timer(timewait,41sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55254 10.0.0.10:44322 timer(timewait,44sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55286 10.0.0.10:44322 timer(timewait,48sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55272 10.0.0.10:44322 timer(timewait,48sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55256 10.0.0.10:44322 timer(timewait,43sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55260 10.0.0.10:44322 timer(timewait,46sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55262 10.0.0.10:44322 timer(timewait,45sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55266 10.0.0.10:44322 timer(timewait,45sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55268 10.0.0.10:44322 timer(timewait,47sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55288 10.0.0.10:44322 timer(timewait,49sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55270 10.0.0.10:44322 timer(timewait,46sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55272 10.0.0.10:44322 timer(timewait,48sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55274 10.0.0.10:44322 timer(timewait,47sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55276 10.0.0.10:44322 timer(timewait,47sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55266 10.0.0.10:44322 timer(timewait,45sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55278 10.0.0.10:44322 timer(timewait,49sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55282 10.0.0.10:44322 timer(timewait,48sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55270 10.0.0.10:44322 timer(timewait,46sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55280 10.0.0.10:44322 timer(timewait,47sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55282 10.0.0.10:44322 timer(timewait,48sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55284 10.0.0.10:44322 timer(timewait,50sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55286 10.0.0.10:44322 timer(timewait,48sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55288 10.0.0.10:44322 timer(timewait,49sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55292 10.0.0.10:44322 timer(timewait,51sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55294 10.0.0.10:44322 timer(timewait,50sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55296 10.0.0.10:44322 timer(timewait,52sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55298 10.0.0.10:44322 timer(timewait,51sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55300 10.0.0.10:44322 timer(timewait,54sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55302 10.0.0.10:44322 timer(timewait,52sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55304 10.0.0.10:44322 timer(timewait,53sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55306 10.0.0.10:44322 timer(timewait,53sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55308 10.0.0.10:44322 timer(timewait,58sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55310 10.0.0.10:44322 timer(timewait,55sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55296 10.0.0.10:44322 timer(timewait,52sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55294 10.0.0.10:44322 timer(timewait,50sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55312 10.0.0.10:44322 timer(timewait,54sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55334 10.0.0.10:44322 timer(timewait,58sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55316 10.0.0.10:44322 timer(timewait,55sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55318 10.0.0.10:44322 timer(timewait,56sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55320 10.0.0.10:44322 timer(timewait,55sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55322 10.0.0.10:44322 timer(timewait,56sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55326 10.0.0.10:44322 timer(timewait,57sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55328 10.0.0.10:44322 timer(timewait,57sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55330 10.0.0.10:44322 timer(timewait,59sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55322 10.0.0.10:44322 timer(timewait,56sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55340 10.0.0.10:44322 timer(timewait,59sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55318 10.0.0.10:44322 timer(timewait,56sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55334 10.0.0.10:44322 timer(timewait,58sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55338 10.0.0.10:44322 timer(timewait,58sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55328 10.0.0.10:44322 timer(timewait,57sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp ESTAB 0 0 10.0.0.10:55342 10.0.0.10:44322 timer(keepalive,29sec,0) uid:378 inode:165616642 sk:5 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb2882418,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.041/0.024 ato:40 mss:32768 cwnd:10 pmtu:65535 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:73728
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55316 10.0.0.10:44322 timer(timewait,55sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp ESTAB 0 0 10.0.0.10:55332 10.0.0.10:44322 timer(keepalive,28sec,0) uid:378 inode:165581545 sk:5 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb4454646,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:3.728/6.7 ato:40 mss:32768 cwnd:10 pmtu:65535 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:105770
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55340 10.0.0.10:44322 timer(timewait,59sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:57958 142.250.70.238:443 timer(timewait,54sec,0) uid:0 inode:0 sk:183a cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+udp ESTAB 0 0 10.0.0.10:35754 142.251.10.189:443 uid:1024 inode:165318004 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+udp ESTAB 0 0 10.0.0.10:35983 142.250.70.142:443 uid:1024 inode:165466809 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+udp ESTAB 0 0 10.0.0.10:36244 142.250.70.138:443 uid:1024 inode:165293889 sk:f231 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+udp ESTAB 0 0 10.0.0.10:44639 142.250.70.131:443 uid:1024 inode:165411837 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+udp ESTAB 0 0 10.0.0.10:49123 142.250.4.189:443 uid:1024 inode:165373416 sk:ef33 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
|
|
pcp-ss output, at 10s offset
|
|
# Time: 2021-06-18 13:33:39.076141 Filter: state connected
|
|
Netid State Recv-Q Send-Q Local Address:Port Peer Address:Port Process
|
|
-tcp ESTAB 0 0 [::ffff:127.0.0.1]:3000 [::ffff:127.0.0.1]:49798 timer(keepalive,5.031ms,0) uid:378 inode:164821548 sk:17e9 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb2358342,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.029/0.019 ato:40 mss:32768 cwnd:10 pmtu:65535 ssthresh:0 bytes_sent:3077768 bytes_acked:3077768 bytes_received:95302 segs_out:1388 segs_in:1880 send 90394482759bps lastsnd:9969 lastrcv:9971 lastack:9969 pacing_rate 178481021272bps delivery_rate 65536000000bps rcv_space:65664
|
|
+tcp ESTAB 0 0 [::1]:3000 [::1]:51232 timer(keepalive,4.425ms,0) uid:378 inode:165581925 sk:5 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.392/0.759 ato:40 mss:65464 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:10193629 bytes_acked:10160847 bytes_received:278360 segs_out:992 segs_in:851 send 13360000000bps lastsnd:607 lastrcv:760 lastack:607 pacing_rate 26677465768bps delivery_rate 174570666664bps rcv_space:65464
|
|
+tcp ESTAB 0 0 [::1]:51228 [::1]:3000 timer(keepalive,43sec,0) uid:1024 inode:165582929 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb4978000,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:2.415/4.642 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:266019 bytes_acked:266020 bytes_received:6994873 segs_out:842 segs_in:867 send 1085482402bps lastsnd:759 lastrcv:623 lastack:623 pacing_rate 2170964800bps delivery_rate 87381333328bps rcv_space:98304
|
|
+tcp ESTAB 0 0 [::1]:51232 [::1]:3000 timer(keepalive,43sec,0) uid:1024 inode:165552950 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb4978000,t0,tb2626560,f0,w0,o0,bl0,d3) ts sack cubic wscale:7,7 rtt:3.701/7.013 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:278360 bytes_acked:278361 bytes_received:10160847 segs_out:851 segs_in:993 send 708305863bps lastsnd:760 lastrcv:607 lastack:607 pacing_rate 1416324704bps delivery_rate 87381333328bps rcv_space:163840
|
|
+tcp ESTAB 0 0 [::1]:51236 [::1]:3000 timer(keepalive,40sec,0) uid:1024 inode:165575931 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb4585000,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.942/1.793 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:274730 bytes_acked:274731 bytes_received:12994135 segs_out:925 segs_in:1058 send 2782845011bps lastsnd:4761 lastrcv:4697 lastack:4697 pacing_rate 5564213312bps delivery_rate 65536000000bps rcv_space:98304
|
|
+tcp ESTAB 0 0 [::1]:51238 [::1]:3000 timer(keepalive,6.381ms,0) uid:1024 inode:165581951 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d1) ts sack cubic wscale:7,7 rtt:4.48/8.875 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:238787 bytes_acked:238788 bytes_received:6296966 segs_out:626 segs_in:849 send 585142857bps lastsnd:758 lastrcv:616 lastack:616 pacing_rate 1170122464bps delivery_rate 87381333328bps rcv_space:65476
|
|
+tcp ESTAB 0 0 [::1]:51240 [::1]:3000 timer(keepalive,10sec,0) uid:1024 inode:165583008 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:4.388/8.395 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:247338 bytes_acked:247339 bytes_received:6277019 segs_out:642 segs_in:867 send 597411121bps lastsnd:764 lastrcv:635 lastack:635 pacing_rate 1194686104bps delivery_rate 87381333328bps rcv_space:65476
|
|
tcp ESTAB 0 0 127.0.0.1:6379 127.0.0.1:34526 timer(keepalive,40sec,0) uid:379 inode:164789635 sk:17e9 cgroup:/system.slice/redis.service <-> skmem(r0,rb6291456,t0,tb4194304,f0,w0,o0,bl0,d191) ts sack cubic wscale:7,7 rtt:5.308/10.357 ato:40 mss:65483 cwnd:37 pmtu:65535 ssthresh:27 bytes_sent:1742159061 bytes_acked:1737331568 bytes_received:348908437 segs_out:100169 segs_in:51994 send 3651651846bps lastsnd:609 lastrcv:609 lastack:568 pacing_rate 4381982208bps delivery_rate 69848533328bps rcv_space:1379162
|
|
-tcp ESTAB 23 0 10.40.192.134:47862 10.0.15.20:6667 timer(on,614ms,0) uid:1024 inode:143267906 sk:39 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb181972,t0,tb46080,f2793,w1303,o0,bl0,d56) ts sack cubic wscale:8,7 rtt:453.799/37.471 ato:40 mss:1308 cwnd:2 pmtu:1360 ssthresh:2 bytes_sent:387993 bytes_acked:386592 bytes_received:72874142 segs_out:117097 segs_in:108401 send 46117bps lastsnd:40 lastrcv:6050 lastack:22432 pacing_rate 55336bps delivery_rate 24936bps rcv_space:19026
|
|
-tcp ESTAB 0 0 10.0.0.10:58310 52.88.142.33:443 timer(keepalive,2min33sec,0) uid:1024 inode:143231822 sk:39 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d4) ts sack cubic wscale:8,7 rtt:211.152/22.951 ato:40 mss:1448 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:46445 bytes_acked:46409 bytes_received:48039 segs_out:2072 segs_in:2598 send 548610bps lastsnd:146234 lastrcv:146236 lastack:146029 pacing_rate 1097216bps delivery_rate 120648bps rcv_space:14480
|
|
-tcp ESTAB 0 0 10.0.0.10:44852 202.58.9.228:443 timer(keepalive,43sec,0) uid:1024 inode:143675936 sk:39 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d1769) sack cubic wscale:9,7 rtt:98.707/11.472 ato:40 mss:1460 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:6723 bytes_acked:6724 bytes_received:9572 segs_out:8675 segs_in:8669 send 1183300bps lastsnd:8818069 lastrcv:8817969 lastack:1340 pacing_rate 2366592bps delivery_rate 480352bps rcv_space:14600
|
|
-tcp ESTAB 23 0 10.0.0.10:37330 217.182.79.119:6667 timer(on,543ms,0) uid:1024 inode:147037462 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2467768,t0,tb87040,f2793,w1303,o0,bl0,d15) ts sack cubic wscale:7,7 rtt:377.613/33.401 ato:40 mss:1448 cwnd:2 pmtu:1500 ssthresh:2 bytes_sent:149848 bytes_acked:149435 bytes_received:440822 segs_out:13042 segs_in:6567 send 61354bps lastsnd:39 lastrcv:29806 lastack:29806 pacing_rate 73624bps delivery_rate 36280bps rcv_space:64371
|
|
-tcp ESTAB 0 0 192.168.122.1:53100 192.168.122.54:22 timer(keepalive,2min22sec,0) uid:1024 inode:152890200 sk:3a cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d11) ts sack cubic wscale:7,7 rtt:6.415/11.95 ato:40 mss:1448 cwnd:20 pmtu:1500 ssthresh:20 bytes_sent:65329 bytes_acked:65330 bytes_received:138089 segs_out:2145 segs_in:1352 send 36115355bps lastsnd:6216424 lastrcv:6216231 lastack:157163 pacing_rate 43332512bps delivery_rate 1079864400bps rcv_space:14480
|
|
-tcp ESTAB 0 0 10.0.0.10:52874 199.127.207.181:443 timer(keepalive,23sec,0) uid:1024 inode:154981923 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d433) sack cubic wscale:9,7 rtt:231.99/42.333 ato:40 mss:1460 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:3792 bytes_acked:3793 bytes_received:6931 segs_out:2107 segs_in:2102 send 503470bps lastsnd:78116165 lastrcv:78116159 lastack:21772 pacing_rate 1006936bps delivery_rate 206000bps rcv_space:14600
|
|
tcp ESTAB 0 0 10.0.0.10:33256 10.0.0.6:8009 timer(keepalive,14sec,0) uid:1024 inode:161634072 sk:3a cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2554304,t0,tb87040,f0,w0,o0,bl0,d1) ts sack cubic wscale:6,7 rtt:7.135/1.044 ato:40 mss:1448 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:734660 bytes_acked:734551 bytes_received:739570 segs_out:13349 segs_in:6686 send 16235459bps lastsnd:524 lastrcv:516 lastack:516 pacing_rate 32468640bps delivery_rate 7613536bps rcv_space:65491
|
|
-tcp ESTAB 0 0 10.0.0.10:45164 173.194.202.125:443 timer(keepalive,23sec,0) uid:1024 inode:161888302 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:228.663/49.231 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:11353 bytes_acked:11354 bytes_received:23756 segs_out:890 segs_in:895 send 496101bps lastsnd:207468 lastrcv:207250 lastack:21813 pacing_rate 992200bps delivery_rate 103864bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:34914 142.250.70.234:443 uid:1024 inode:165418039 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f4096,w0,o0,bl0,d11) ts sack cubic wscale:8,7 rtt:10.278/0.678 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:22452 bytes_acked:22453 bytes_received:16959 segs_out:307 segs_in:321 send 11037167bps lastsnd:11065 lastrcv:10735 lastack:10735 pacing_rate 22073256bps delivery_rate 2827752bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:34916 142.250.70.234:443 uid:1024 inode:165418040 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d9) ts sack cubic wscale:8,7 rtt:10.081/1.167 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:19775 bytes_acked:19776 bytes_received:15769 segs_out:277 segs_in:301 send 11252852bps lastsnd:11066 lastrcv:11066 lastack:11056 pacing_rate 22505424bps delivery_rate 3209656bps rcv_space:14480
|
|
tcp ESTAB 0 0 10.0.0.10:37256 157.240.8.18:443 timer(keepalive,2min53sec,0) uid:1024 inode:163353710 sk:262 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb1623296,t0,tb46080,f0,w0,o0,bl0,d37) ts sack cubic wscale:8,7 rtt:21.5/0.94 ato:40 mss:1380 cwnd:22 pmtu:1500 ssthresh:22 bytes_sent:71046 bytes_acked:71015 bytes_received:222343 segs_out:4414 segs_in:4458 send 11296744bps lastsnd:1471 lastrcv:1255 lastack:1449 pacing_rate 13556008bps delivery_rate 9819152bps rcv_space:87463
|
|
-tcp ESTAB 0 0 10.0.0.10:40226 13.54.123.156:443 timer(keepalive,8.158ms,0) uid:1024 inode:163971400 sk:3b cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2673664,t0,tb46080,f0,w0,o0,bl0,d0) ts sack cubic wscale:12,7 rtt:23.038/1.11 ato:46 mss:1288 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:13434 bytes_acked:13435 bytes_received:76107 segs_out:671 segs_in:482 send 4472610bps lastsnd:22123 lastrcv:22098 lastack:22098 pacing_rate 8945216bps delivery_rate 1318208bps rcv_space:67012
|
|
-tcp ESTAB 0 0 10.0.0.10:40232 13.54.123.156:443 timer(keepalive,15sec,0) uid:1024 inode:164254779 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2730360,t0,tb46080,f0,w0,o0,bl0,d0) ts sack cubic wscale:12,7 rtt:21.965/0.395 ato:42 mss:1288 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:21565 bytes_acked:21566 bytes_received:71363 segs_out:842 segs_in:526 send 4691099bps lastsnd:9624 lastrcv:9601 lastack:9601 pacing_rate 9381984bps delivery_rate 1362840bps rcv_space:67755
|
|
tcp ESTAB 0 0 10.0.0.10:39906 172.217.194.188:5228 timer(keepalive,6.702ms,0) uid:1024 inode:164287111 sk:eacd cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:94.893/7.701 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:893 bytes_acked:894 bytes_received:5528 segs_out:187 segs_in:187 send 1195452bps lastsnd:1336001 lastrcv:1335906 lastack:38204 pacing_rate 2390880bps delivery_rate 229032bps rcv_space:14480
|
|
-tcp ESTAB 0 0 127.0.0.1:34526 127.0.0.1:6379 timer(keepalive,10sec,0) uid:386 inode:164791620 sk:ef22 cgroup:/system.slice/pmproxy.service <-> skmem(r0,rb4978722,t0,tb4194304,f0,w0,o0,bl0,d352) ts sack cubic wscale:7,7 rtt:0.301/0.282 ato:40 mss:65483 cwnd:34 pmtu:65535 ssthresh:16 bytes_sent:349068015 bytes_acked:348908438 bytes_received:1737331568 segs_out:51994 segs_in:100170 send 59174006645bps lastsnd:609 lastrcv:609 lastack:609 pacing_rate 71008807968bps delivery_rate 104772800000bps rcv_space:245440
|
|
-tcp ESTAB 0 0 127.0.0.1:49798 127.0.0.1:3000 uid:0 inode:164815425 sk:17e9 cgroup:/system.slice/pmcd.service <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:5.821/8.743 ato:40 mss:65483 cwnd:10 pmtu:65535 ssthresh:0 bytes_sent:95302 bytes_acked:95303 bytes_received:3077768 segs_out:1880 segs_in:1389 send 899955334bps lastsnd:9970 lastrcv:9968 lastack:9968 pacing_rate 1799678784bps delivery_rate 40297230768bps rcv_space:65495
|
|
-udp ESTAB 0 0 10.0.0.10:36244 142.250.70.138:443 uid:1024 inode:165293889 sk:f231 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-udp ESTAB 0 0 10.0.0.10:35754 142.251.10.189:443 uid:1024 inode:165318004 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-udp ESTAB 0 0 10.0.0.10:49123 142.250.4.189:443 uid:1024 inode:165373416 sk:ef33 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp ESTAB 0 0 10.0.0.10:40218 142.250.70.142:443 uid:1024 inode:165413160 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d16) ts sack cubic wscale:8,7 rtt:10.371/0.673 ato:40 mss:1418 cwnd:3 pmtu:1500 ssthresh:2 bytes_sent:128059 bytes_acked:122619 bytes_received:60993 segs_out:493 segs_in:558 send 3281458bps lastsnd:48748 lastrcv:48749 lastack:48739 pacing_rate 3937552bps delivery_rate 2269480bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:40226 13.54.123.156:443 timer(keepalive,8.158ms,0) uid:1024 inode:163971400 sk:3b cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2673664,t0,tb46080,f0,w0,o0,bl0,d0) ts sack cubic wscale:12,7 rtt:23.038/1.11 ato:46 mss:1288 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:13434 bytes_acked:13435 bytes_received:76107 segs_out:671 segs_in:482 send 4472610bps lastsnd:22123 lastrcv:22098 lastack:22098 pacing_rate 8945216bps delivery_rate 1318208bps rcv_space:67012
|
|
+tcp ESTAB 0 0 10.0.0.10:40232 13.54.123.156:443 timer(keepalive,15sec,0) uid:1024 inode:164254779 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2730360,t0,tb46080,f0,w0,o0,bl0,d0) ts sack cubic wscale:12,7 rtt:21.965/0.395 ato:42 mss:1288 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:21565 bytes_acked:21566 bytes_received:71363 segs_out:842 segs_in:526 send 4691099bps lastsnd:9624 lastrcv:9601 lastack:9601 pacing_rate 9381984bps delivery_rate 1362840bps rcv_space:67755
|
|
tcp ESTAB 0 0 10.0.0.10:43990 142.250.70.131:443 uid:1024 inode:165420073 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:9.654/0.506 ato:40 mss:1418 cwnd:4 pmtu:1500 ssthresh:4 bytes_sent:10189 bytes_acked:10000 bytes_received:16620 segs_out:246 segs_in:410 send 4700228bps lastsnd:17768 lastrcv:17783 lastack:17759 pacing_rate 5640272bps delivery_rate 2983168bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:44322 10.0.0.10:55122 timer(keepalive,44sec,0) uid:386 inode:165594717 sk:5 cgroup:/system.slice/pmproxy.service <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:5.315/10.43 ato:40 mss:65483 cwnd:17 pmtu:65535 ssthresh:17 bytes_sent:3498895 bytes_acked:3498895 bytes_received:8301 segs_out:65 segs_in:47 send 1675576294bps lastsnd:609 lastrcv:611 lastack:567 pacing_rate 2010691552bps delivery_rate 130966000000bps rcv_space:65483
|
|
tcp ESTAB 0 0 10.0.0.10:44388 142.250.4.189:443 uid:1024 inode:165419510 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:96.696/2.871 ato:40 mss:1418 cwnd:7 pmtu:1500 ssthresh:7 bytes_sent:10276 bytes_acked:9774 bytes_received:14545 segs_out:207 segs_in:207 send 821213bps lastsnd:17146 lastrcv:17036 lastack:17036 pacing_rate 985448bps delivery_rate 467400bps rcv_space:14480
|
|
-tcp ESTAB 0 0 10.0.0.10:34914 142.250.70.234:443 uid:1024 inode:165418039 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f4096,w0,o0,bl0,d11) ts sack cubic wscale:8,7 rtt:10.278/0.678 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:22452 bytes_acked:22453 bytes_received:16959 segs_out:307 segs_in:321 send 11037167bps lastsnd:11065 lastrcv:10735 lastack:10735 pacing_rate 22073256bps delivery_rate 2827752bps rcv_space:14480
|
|
-tcp ESTAB 0 0 10.0.0.10:34916 142.250.70.234:443 uid:1024 inode:165418040 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d9) ts sack cubic wscale:8,7 rtt:10.081/1.167 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:19775 bytes_acked:19776 bytes_received:15769 segs_out:277 segs_in:301 send 11252852bps lastsnd:11066 lastrcv:11066 lastack:11056 pacing_rate 22505424bps delivery_rate 3209656bps rcv_space:14480
|
|
-tcp ESTAB 0 0 10.0.0.10:49594 142.250.70.165:443 timer(keepalive,6.621ms,0) uid:1024 inode:165410113 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb1074240,t0,tb87040,f0,w0,o0,bl0,d6) ts sack cubic wscale:8,7 rtt:11.987/1.417 ato:40 mss:1418 cwnd:18 pmtu:1500 ssthresh:0 bytes_sent:76222 bytes_acked:76223 bytes_received:199808 segs_out:342 segs_in:404 send 17034454bps lastsnd:218733 lastrcv:218735 lastack:38371 pacing_rate 34068192bps delivery_rate 8192584bps rcv_space:75339
|
|
-tcp ESTAB 0 0 10.0.0.10:57232 157.240.8.35:443 uid:1024 inode:165408121 sk:1781 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb46080,f8192,w0,o0,bl0,d4) ts sack cubic wscale:8,7 rtt:23.193/1.8 ato:40 mss:1380 cwnd:2 pmtu:1500 ssthresh:2 bytes_sent:69963 bytes_acked:68311 bytes_received:28389 segs_out:252 segs_in:206 send 952011bps lastsnd:6934 lastrcv:6458 lastack:6458 pacing_rate 1142400bps delivery_rate 371224bps rcv_space:14480
|
|
-udp ESTAB 0 0 10.0.0.10:44639 142.250.70.131:443 uid:1024 inode:165411837 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:44852 202.58.9.228:443 timer(keepalive,43sec,0) uid:1024 inode:143675936 sk:39 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d1769) sack cubic wscale:9,7 rtt:98.707/11.472 ato:40 mss:1460 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:6723 bytes_acked:6724 bytes_received:9572 segs_out:8675 segs_in:8669 send 1183300bps lastsnd:8818069 lastrcv:8817969 lastack:1340 pacing_rate 2366592bps delivery_rate 480352bps rcv_space:14600
|
|
+tcp ESTAB 0 0 10.0.0.10:45164 173.194.202.125:443 timer(keepalive,23sec,0) uid:1024 inode:161888302 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:228.663/49.231 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:11353 bytes_acked:11354 bytes_received:23756 segs_out:890 segs_in:895 send 496101bps lastsnd:207468 lastrcv:207250 lastack:21813 pacing_rate 992200bps delivery_rate 103864bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:46306 3.233.54.64:443 timer(keepalive,23sec,0) uid:1024 inode:165592357 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:12,7 rtt:246.45/50.358 ato:40 mss:1448 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:3814 bytes_acked:3815 bytes_received:4765 segs_out:12 segs_in:12 send 470034bps lastsnd:22071 lastrcv:21847 lastack:21848 pacing_rate 940064bps delivery_rate 120016bps rcv_space:14480
|
|
tcp ESTAB 0 0 10.0.0.10:46392 142.251.10.189:443 uid:1024 inode:165466671 sk:f23b cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f4096,w0,o0,bl0,d2) ts sack cubic wscale:8,7 rtt:111.69/24.888 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:8645 bytes_acked:8646 bytes_received:12267 segs_out:135 segs_in:139 send 1015668bps lastsnd:52309 lastrcv:25403 lastack:50572 pacing_rate 2031320bps delivery_rate 335272bps rcv_space:14480
|
|
-udp ESTAB 0 0 10.0.0.10:35983 142.250.70.142:443 uid:1024 inode:165466809 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:49594 142.250.70.165:443 timer(keepalive,6.621ms,0) uid:1024 inode:165410113 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb1074240,t0,tb87040,f0,w0,o0,bl0,d6) ts sack cubic wscale:8,7 rtt:11.987/1.417 ato:40 mss:1418 cwnd:18 pmtu:1500 ssthresh:0 bytes_sent:76222 bytes_acked:76223 bytes_received:199808 segs_out:342 segs_in:404 send 17034454bps lastsnd:218733 lastrcv:218735 lastack:38371 pacing_rate 34068192bps delivery_rate 8192584bps rcv_space:75339
|
|
+tcp ESTAB 0 0 10.0.0.10:49614 142.250.70.165:443 uid:1024 inode:165581235 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:10.118/1.177 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:3573 bytes_acked:3574 bytes_received:2558 segs_out:20 segs_in:19 send 11211702bps lastsnd:27596 lastrcv:27584 lastack:27584 pacing_rate 22423400bps delivery_rate 3963936bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:52874 199.127.207.181:443 timer(keepalive,23sec,0) uid:1024 inode:154981923 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d433) sack cubic wscale:9,7 rtt:231.99/42.333 ato:40 mss:1460 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:3792 bytes_acked:3793 bytes_received:6931 segs_out:2107 segs_in:2102 send 503470bps lastsnd:78116165 lastrcv:78116159 lastack:21772 pacing_rate 1006936bps delivery_rate 206000bps rcv_space:14600
|
|
+tcp ESTAB 0 0 10.0.0.10:55104 10.0.0.10:44322 timer(keepalive,26sec,0) uid:378 inode:165606577 sk:5 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb6291456,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:8.43/11.76 ato:40 mss:32768 cwnd:10 pmtu:65535 ssthresh:0 bytes_sent:8327 bytes_acked:8328 bytes_received:3510941 segs_out:178 segs_in:356 send 310965599bps lastsnd:756 lastrcv:637 lastack:639 pacing_rate 621875864bps delivery_rate 20164923072bps rcv_space:469929
|
|
+tcp ESTAB 0 0 10.0.0.10:55122 10.0.0.10:44322 timer(keepalive,29sec,0) uid:378 inode:165608516 sk:5 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb3013437,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.236/0.425 ato:40 mss:32768 cwnd:10 pmtu:65535 ssthresh:0 bytes_sent:16 bytes_acked:16 bytes_received:6325 segs_out:47 segs_in:66 send 11107796610bps lastsnd:611 lastrcv:609 lastack:609 pacing_rate 22145216472bps delivery_rate 32768000000bps rcv_space:81920
|
|
+tcp ESTAB 0 0 10.0.0.10:55308 142.250.70.228:443 uid:1024 inode:165561257 sk:eb1c cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d3) ts sack cubic wscale:8,7 rtt:11.532/2.782 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:3051 bytes_acked:3052 bytes_received:4379 segs_out:38 segs_in:36 send 9836975bps lastsnd:46596 lastrcv:46586 lastack:46587 pacing_rate 19672664bps delivery_rate 1814168bps rcv_space:14480
|
|
tcp ESTAB 0 0 10.0.0.10:55532 140.82.114.26:443 timer(keepalive,9.693ms,0) uid:1024 inode:165515920 sk:17eb cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:10,7 rtt:251.743/35.839 ato:40 mss:1424 cwnd:20 pmtu:1500 ssthresh:0 bytes_sent:17930 bytes_acked:17931 bytes_received:4200 segs_out:49 segs_in:46 send 905050bps lastsnd:20795 lastrcv:20795 lastack:20571 pacing_rate 1810096bps delivery_rate 503048bps rcv_space:14480
|
|
tcp ESTAB 0 0 10.0.0.10:55534 140.82.114.26:443 timer(keepalive,28sec,0) uid:1024 inode:165521771 sk:ef38 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:10,7 rtt:283.095/41.806 ato:40 mss:1424 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:2643 bytes_acked:2644 bytes_received:3981 segs_out:36 segs_in:38 send 402409bps lastsnd:2669 lastrcv:2669 lastack:2444 pacing_rate 804816bps delivery_rate 73400bps rcv_space:14480
|
|
-tcp ESTAB 0 0 10.0.0.10:55308 142.250.70.228:443 uid:1024 inode:165561257 sk:eb1c cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d3) ts sack cubic wscale:8,7 rtt:11.532/2.782 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:3051 bytes_acked:3052 bytes_received:4379 segs_out:38 segs_in:36 send 9836975bps lastsnd:46596 lastrcv:46586 lastack:46587 pacing_rate 19672664bps delivery_rate 1814168bps rcv_space:14480
|
|
-tcp ESTAB 0 0 10.0.0.10:44322 10.0.0.10:55122 timer(keepalive,44sec,0) uid:386 inode:165594717 sk:5 cgroup:/system.slice/pmproxy.service <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:5.315/10.43 ato:40 mss:65483 cwnd:17 pmtu:65535 ssthresh:17 bytes_sent:3498895 bytes_acked:3498895 bytes_received:8301 segs_out:65 segs_in:47 send 1675576294bps lastsnd:609 lastrcv:611 lastack:567 pacing_rate 2010691552bps delivery_rate 130966000000bps rcv_space:65483
|
|
tcp ESTAB 0 0 10.0.0.10:55694 34.120.177.193:443 timer(keepalive,2.525ms,0) uid:1024 inode:165577700 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d1) ts sack cubic wscale:8,7 rtt:13.091/4.789 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:1234 bytes_acked:1235 bytes_received:5268 segs_out:21 segs_in:20 send 8665495bps lastsnd:224263 lastrcv:224265 lastack:42465 pacing_rate 17330160bps delivery_rate 2267288bps rcv_space:14480
|
|
-tcp ESTAB 0 0 [::1]:3000 [::1]:51232 timer(keepalive,4.425ms,0) uid:378 inode:165581925 sk:5 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.392/0.759 ato:40 mss:65464 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:10193629 bytes_acked:10160847 bytes_received:278360 segs_out:992 segs_in:851 send 13360000000bps lastsnd:607 lastrcv:760 lastack:607 pacing_rate 26677465768bps delivery_rate 174570666664bps rcv_space:65464
|
|
-tcp ESTAB 0 0 [::1]:51238 [::1]:3000 timer(keepalive,6.381ms,0) uid:1024 inode:165581951 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d1) ts sack cubic wscale:7,7 rtt:4.48/8.875 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:238787 bytes_acked:238788 bytes_received:6296966 segs_out:626 segs_in:849 send 585142857bps lastsnd:758 lastrcv:616 lastack:616 pacing_rate 1170122464bps delivery_rate 87381333328bps rcv_space:65476
|
|
-tcp ESTAB 0 0 [::1]:51240 [::1]:3000 timer(keepalive,10sec,0) uid:1024 inode:165583008 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:4.388/8.395 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:247338 bytes_acked:247339 bytes_received:6277019 segs_out:642 segs_in:867 send 597411121bps lastsnd:764 lastrcv:635 lastack:635 pacing_rate 1194686104bps delivery_rate 87381333328bps rcv_space:65476
|
|
-tcp ESTAB 0 0 [::1]:51236 [::1]:3000 timer(keepalive,40sec,0) uid:1024 inode:165575931 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb4585000,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.942/1.793 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:274730 bytes_acked:274731 bytes_received:12994135 segs_out:925 segs_in:1058 send 2782845011bps lastsnd:4761 lastrcv:4697 lastack:4697 pacing_rate 5564213312bps delivery_rate 65536000000bps rcv_space:98304
|
|
-tcp ESTAB 0 0 [::1]:51228 [::1]:3000 timer(keepalive,43sec,0) uid:1024 inode:165582929 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb4978000,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:2.415/4.642 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:266019 bytes_acked:266020 bytes_received:6994873 segs_out:842 segs_in:867 send 1085482402bps lastsnd:759 lastrcv:623 lastack:623 pacing_rate 2170964800bps delivery_rate 87381333328bps rcv_space:98304
|
|
-tcp ESTAB 0 0 [::1]:51232 [::1]:3000 timer(keepalive,43sec,0) uid:1024 inode:165552950 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb4978000,t0,tb2626560,f0,w0,o0,bl0,d3) ts sack cubic wscale:7,7 rtt:3.701/7.013 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:278360 bytes_acked:278361 bytes_received:10160847 segs_out:851 segs_in:993 send 708305863bps lastsnd:760 lastrcv:607 lastack:607 pacing_rate 1416324704bps delivery_rate 87381333328bps rcv_space:163840
|
|
+tcp ESTAB 0 0 10.0.0.10:57232 157.240.8.35:443 uid:1024 inode:165408121 sk:1781 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb46080,f8192,w0,o0,bl0,d4) ts sack cubic wscale:8,7 rtt:23.193/1.8 ato:40 mss:1380 cwnd:2 pmtu:1500 ssthresh:2 bytes_sent:69963 bytes_acked:68311 bytes_received:28389 segs_out:252 segs_in:206 send 952011bps lastsnd:6934 lastrcv:6458 lastack:6458 pacing_rate 1142400bps delivery_rate 371224bps rcv_space:14480
|
|
tcp ESTAB 0 0 10.0.0.10:57958 142.250.70.238:443 uid:1024 inode:165594185 sk:183a cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d1) ts sack cubic wscale:8,7 rtt:10.608/1.213 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:7836 bytes_acked:7837 bytes_received:3104 segs_out:27 segs_in:27 send 10693816bps lastsnd:18595 lastrcv:18584 lastack:18584 pacing_rate 21387376bps delivery_rate 5058864bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:58310 52.88.142.33:443 timer(keepalive,2min33sec,0) uid:1024 inode:143231822 sk:39 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d4) ts sack cubic wscale:8,7 rtt:211.152/22.951 ato:40 mss:1448 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:46445 bytes_acked:46409 bytes_received:48039 segs_out:2072 segs_in:2598 send 548610bps lastsnd:146234 lastrcv:146236 lastack:146029 pacing_rate 1097216bps delivery_rate 120648bps rcv_space:14480
|
|
+tcp ESTAB 0 0 127.0.0.1:34526 127.0.0.1:6379 timer(keepalive,10sec,0) uid:386 inode:164791620 sk:ef22 cgroup:/system.slice/pmproxy.service <-> skmem(r0,rb4978722,t0,tb4194304,f0,w0,o0,bl0,d352) ts sack cubic wscale:7,7 rtt:0.301/0.282 ato:40 mss:65483 cwnd:34 pmtu:65535 ssthresh:16 bytes_sent:349068015 bytes_acked:348908438 bytes_received:1737331568 segs_out:51994 segs_in:100170 send 59174006645bps lastsnd:609 lastrcv:609 lastack:609 pacing_rate 71008807968bps delivery_rate 104772800000bps rcv_space:245440
|
|
+tcp ESTAB 0 0 127.0.0.1:49798 127.0.0.1:3000 uid:0 inode:164815425 sk:17e9 cgroup:/system.slice/pmcd.service <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:5.821/8.743 ato:40 mss:65483 cwnd:10 pmtu:65535 ssthresh:0 bytes_sent:95302 bytes_acked:95303 bytes_received:3077768 segs_out:1880 segs_in:1389 send 899955334bps lastsnd:9970 lastrcv:9968 lastack:9968 pacing_rate 1799678784bps delivery_rate 40297230768bps rcv_space:65495
|
|
+tcp ESTAB 0 0 192.168.122.1:53100 192.168.122.54:22 timer(keepalive,2min22sec,0) uid:1024 inode:152890200 sk:3a cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d11) ts sack cubic wscale:7,7 rtt:6.415/11.95 ato:40 mss:1448 cwnd:20 pmtu:1500 ssthresh:20 bytes_sent:65329 bytes_acked:65330 bytes_received:138089 segs_out:2145 segs_in:1352 send 36115355bps lastsnd:6216424 lastrcv:6216231 lastack:157163 pacing_rate 43332512bps delivery_rate 1079864400bps rcv_space:14480
|
|
+tcp ESTAB 0 0 [::ffff:127.0.0.1]:3000 [::ffff:127.0.0.1]:49798 timer(keepalive,5.031ms,0) uid:378 inode:164821548 sk:17e9 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb2358342,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.029/0.019 ato:40 mss:32768 cwnd:10 pmtu:65535 ssthresh:0 bytes_sent:3077768 bytes_acked:3077768 bytes_received:95302 segs_out:1388 segs_in:1880 send 90394482759bps lastsnd:9969 lastrcv:9971 lastack:9969 pacing_rate 178481021272bps delivery_rate 65536000000bps rcv_space:65664
|
|
+tcp ESTAB 23 0 10.0.0.10:37330 217.182.79.119:6667 timer(on,543ms,0) uid:1024 inode:147037462 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2467768,t0,tb87040,f2793,w1303,o0,bl0,d15) ts sack cubic wscale:7,7 rtt:377.613/33.401 ato:40 mss:1448 cwnd:2 pmtu:1500 ssthresh:2 bytes_sent:149848 bytes_acked:149435 bytes_received:440822 segs_out:13042 segs_in:6567 send 61354bps lastsnd:39 lastrcv:29806 lastack:29806 pacing_rate 73624bps delivery_rate 36280bps rcv_space:64371
|
|
+tcp ESTAB 23 0 10.40.192.134:47862 10.0.15.20:6667 timer(on,614ms,0) uid:1024 inode:143267906 sk:39 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb181972,t0,tb46080,f2793,w1303,o0,bl0,d56) ts sack cubic wscale:8,7 rtt:453.799/37.471 ato:40 mss:1308 cwnd:2 pmtu:1360 ssthresh:2 bytes_sent:387993 bytes_acked:386592 bytes_received:72874142 segs_out:117097 segs_in:108401 send 46117bps lastsnd:40 lastrcv:6050 lastack:22432 pacing_rate 55336bps delivery_rate 24936bps rcv_space:19026
|
|
tcp TIME-WAIT 0 0 10.0.0.10:54774 10.0.0.10:44322 timer(timewait,,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54784 10.0.0.10:44322 timer(timewait,,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:54792 10.0.0.10:44322 timer(timewait,,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:54794 10.0.0.10:44322 timer(timewait,2.383ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:54796 10.0.0.10:44322 timer(timewait,350ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp ESTAB 0 0 10.0.0.10:46306 3.233.54.64:443 timer(keepalive,23sec,0) uid:1024 inode:165592357 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:12,7 rtt:246.45/50.358 ato:40 mss:1448 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:3814 bytes_acked:3815 bytes_received:4765 segs_out:12 segs_in:12 send 470034bps lastsnd:22071 lastrcv:21847 lastack:21848 pacing_rate 940064bps delivery_rate 120016bps rcv_space:14480
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54784 10.0.0.10:44322 timer(timewait,,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp ESTAB 0 0 10.0.0.10:49614 142.250.70.165:443 uid:1024 inode:165581235 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:10.118/1.177 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:3573 bytes_acked:3574 bytes_received:2558 segs_out:20 segs_in:19 send 11211702bps lastsnd:27596 lastrcv:27584 lastack:27584 pacing_rate 22423400bps delivery_rate 3963936bps rcv_space:14480
|
|
tcp TIME-WAIT 0 0 10.0.0.10:54798 10.0.0.10:44322 timer(timewait,222ms,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54802 10.0.0.10:44322 timer(timewait,3.376ms,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:54800 10.0.0.10:44322 timer(timewait,354ms,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-udp ESTAB 0 0 10.0.0.10:37128 142.250.70.138:443 uid:1024 inode:165585835 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-udp ESTAB 0 0 10.0.0.10:49113 142.250.70.131:443 uid:1024 inode:165606514 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54872 10.0.0.10:44322 timer(timewait,14sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55048 10.0.0.10:44322 timer(timewait,48sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55060 10.0.0.10:44322 timer(timewait,48sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55094 10.0.0.10:44322 timer(timewait,54sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54980 10.0.0.10:44322 timer(timewait,34sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54802 10.0.0.10:44322 timer(timewait,3.376ms,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54804 10.0.0.10:44322 timer(timewait,1.440ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:54806 10.0.0.10:44322 timer(timewait,1.441ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55088 10.0.0.10:44322 timer(timewait,55sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55064 10.0.0.10:44322 timer(timewait,48sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54956 10.0.0.10:44322 timer(timewait,26sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54826 10.0.0.10:44322 timer(timewait,5.357ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54808 10.0.0.10:44322 timer(timewait,2.383ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54810 10.0.0.10:44322 timer(timewait,4.343ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54812 10.0.0.10:44322 timer(timewait,5.358ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54814 10.0.0.10:44322 timer(timewait,3.380ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54816 10.0.0.10:44322 timer(timewait,4.219ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54818 10.0.0.10:44322 timer(timewait,6.800ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54820 10.0.0.10:44322 timer(timewait,4.339ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:54822 10.0.0.10:44322 timer(timewait,8.347ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54860 10.0.0.10:44322 timer(timewait,13sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55092 10.0.0.10:44322 timer(timewait,53sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55036 10.0.0.10:44322 timer(timewait,43sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55038 10.0.0.10:44322 timer(timewait,45sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55066 10.0.0.10:44322 timer(timewait,49sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55080 10.0.0.10:44322 timer(timewait,52sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54916 10.0.0.10:44322 timer(timewait,23sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55034 10.0.0.10:44322 timer(timewait,44sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54954 10.0.0.10:44322 timer(timewait,25sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54894 10.0.0.10:44322 timer(timewait,19sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54968 10.0.0.10:44322 timer(timewait,28sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54978 10.0.0.10:44322 timer(timewait,30sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54824 10.0.0.10:44322 timer(timewait,5.225ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54826 10.0.0.10:44322 timer(timewait,5.357ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:54830 10.0.0.10:44322 timer(timewait,7.365ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55012 10.0.0.10:44322 timer(timewait,37sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55050 10.0.0.10:44322 timer(timewait,46sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54896 10.0.0.10:44322 timer(timewait,17sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54832 10.0.0.10:44322 timer(timewait,6.800ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54834 10.0.0.10:44322 timer(timewait,6.831ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54836 10.0.0.10:44322 timer(timewait,7.364ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:54838 10.0.0.10:44322 timer(timewait,9.447ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55030 10.0.0.10:44322 timer(timewait,41sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55002 10.0.0.10:44322 timer(timewait,37sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55024 10.0.0.10:44322 timer(timewait,41sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55020 10.0.0.10:44322 timer(timewait,43sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55046 10.0.0.10:44322 timer(timewait,45sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54876 10.0.0.10:44322 timer(timewait,18sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55084 10.0.0.10:44322 timer(timewait,52sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54900 10.0.0.10:44322 timer(timewait,19sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55056 10.0.0.10:44322 timer(timewait,47sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54808 10.0.0.10:44322 timer(timewait,2.383ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54840 10.0.0.10:44322 timer(timewait,8.342ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54842 10.0.0.10:44322 timer(timewait,12sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54846 10.0.0.10:44322 timer(timewait,9.223ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54850 10.0.0.10:44322 timer(timewait,10sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54852 10.0.0.10:44322 timer(timewait,9.426ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54854 10.0.0.10:44322 timer(timewait,11sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54856 10.0.0.10:44322 timer(timewait,10sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:54858 10.0.0.10:44322 timer(timewait,10sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55032 10.0.0.10:44322 timer(timewait,42sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55000 10.0.0.10:44322 timer(timewait,35sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54810 10.0.0.10:44322 timer(timewait,4.343ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54898 10.0.0.10:44322 timer(timewait,18sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54860 10.0.0.10:44322 timer(timewait,13sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54862 10.0.0.10:44322 timer(timewait,11sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54864 10.0.0.10:44322 timer(timewait,15sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54866 10.0.0.10:44322 timer(timewait,12sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54868 10.0.0.10:44322 timer(timewait,12sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54870 10.0.0.10:44322 timer(timewait,13sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54872 10.0.0.10:44322 timer(timewait,14sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:54874 10.0.0.10:44322 timer(timewait,13sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55022 10.0.0.10:44322 timer(timewait,40sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54892 10.0.0.10:44322 timer(timewait,17sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54876 10.0.0.10:44322 timer(timewait,18sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54878 10.0.0.10:44322 timer(timewait,14sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54880 10.0.0.10:44322 timer(timewait,16sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:54882 10.0.0.10:44322 timer(timewait,15sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54964 10.0.0.10:44322 timer(timewait,27sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54834 10.0.0.10:44322 timer(timewait,6.831ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54986 10.0.0.10:44322 timer(timewait,32sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54884 10.0.0.10:44322 timer(timewait,15sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54886 10.0.0.10:44322 timer(timewait,17sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:54888 10.0.0.10:44322 timer(timewait,16sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55090 10.0.0.10:44322 timer(timewait,53sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54906 10.0.0.10:44322 timer(timewait,23sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54816 10.0.0.10:44322 timer(timewait,4.219ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54974 10.0.0.10:44322 timer(timewait,30sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55004 10.0.0.10:44322 timer(timewait,36sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54972 10.0.0.10:44322 timer(timewait,28sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54966 10.0.0.10:44322 timer(timewait,27sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55070 10.0.0.10:44322 timer(timewait,49sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55006 10.0.0.10:44322 timer(timewait,38sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54904 10.0.0.10:44322 timer(timewait,20sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54836 10.0.0.10:44322 timer(timewait,7.364ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54988 10.0.0.10:44322 timer(timewait,32sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54890 10.0.0.10:44322 timer(timewait,16sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54892 10.0.0.10:44322 timer(timewait,17sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54894 10.0.0.10:44322 timer(timewait,19sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54896 10.0.0.10:44322 timer(timewait,17sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54898 10.0.0.10:44322 timer(timewait,18sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54900 10.0.0.10:44322 timer(timewait,19sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:54902 10.0.0.10:44322 timer(timewait,18sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54904 10.0.0.10:44322 timer(timewait,20sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54906 10.0.0.10:44322 timer(timewait,23sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54910 10.0.0.10:44322 timer(timewait,19sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:54914 10.0.0.10:44322 timer(timewait,20sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54976 10.0.0.10:44322 timer(timewait,31sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55096 10.0.0.10:44322 timer(timewait,54sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54824 10.0.0.10:44322 timer(timewait,5.225ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54958 10.0.0.10:44322 timer(timewait,26sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54916 10.0.0.10:44322 timer(timewait,23sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54920 10.0.0.10:44322 timer(timewait,21sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54922 10.0.0.10:44322 timer(timewait,21sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54926 10.0.0.10:44322 timer(timewait,22sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54928 10.0.0.10:44322 timer(timewait,22sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:54930 10.0.0.10:44322 timer(timewait,22sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54932 10.0.0.10:44322 timer(timewait,24sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54936 10.0.0.10:44322 timer(timewait,23sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54938 10.0.0.10:44322 timer(timewait,25sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54942 10.0.0.10:44322 timer(timewait,24sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54944 10.0.0.10:44322 timer(timewait,27sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54948 10.0.0.10:44322 timer(timewait,26sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54952 10.0.0.10:44322 timer(timewait,25sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54954 10.0.0.10:44322 timer(timewait,25sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54956 10.0.0.10:44322 timer(timewait,26sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54958 10.0.0.10:44322 timer(timewait,26sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54960 10.0.0.10:44322 timer(timewait,29sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54962 10.0.0.10:44322 timer(timewait,29sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54964 10.0.0.10:44322 timer(timewait,27sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54966 10.0.0.10:44322 timer(timewait,27sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54968 10.0.0.10:44322 timer(timewait,28sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54972 10.0.0.10:44322 timer(timewait,28sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54974 10.0.0.10:44322 timer(timewait,30sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54976 10.0.0.10:44322 timer(timewait,31sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54978 10.0.0.10:44322 timer(timewait,30sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54980 10.0.0.10:44322 timer(timewait,34sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54982 10.0.0.10:44322 timer(timewait,30sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:54984 10.0.0.10:44322 timer(timewait,31sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54986 10.0.0.10:44322 timer(timewait,32sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54988 10.0.0.10:44322 timer(timewait,32sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54990 10.0.0.10:44322 timer(timewait,34sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54992 10.0.0.10:44322 timer(timewait,33sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54994 10.0.0.10:44322 timer(timewait,33sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:54996 10.0.0.10:44322 timer(timewait,36sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54866 10.0.0.10:44322 timer(timewait,12sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54962 10.0.0.10:44322 timer(timewait,29sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54942 10.0.0.10:44322 timer(timewait,24sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54910 10.0.0.10:44322 timer(timewait,19sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55074 10.0.0.10:44322 timer(timewait,56sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:54998 10.0.0.10:44322 timer(timewait,35sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54990 10.0.0.10:44322 timer(timewait,34sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55028 10.0.0.10:44322 timer(timewait,42sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55044 10.0.0.10:44322 timer(timewait,50sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55000 10.0.0.10:44322 timer(timewait,35sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55002 10.0.0.10:44322 timer(timewait,37sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55004 10.0.0.10:44322 timer(timewait,36sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55006 10.0.0.10:44322 timer(timewait,38sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55008 10.0.0.10:44322 timer(timewait,38sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54842 10.0.0.10:44322 timer(timewait,12sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54920 10.0.0.10:44322 timer(timewait,21sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54982 10.0.0.10:44322 timer(timewait,30sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54862 10.0.0.10:44322 timer(timewait,11sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54868 10.0.0.10:44322 timer(timewait,12sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54926 10.0.0.10:44322 timer(timewait,22sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55026 10.0.0.10:44322 timer(timewait,41sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54870 10.0.0.10:44322 timer(timewait,13sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54864 10.0.0.10:44322 timer(timewait,15sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54818 10.0.0.10:44322 timer(timewait,6.800ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54812 10.0.0.10:44322 timer(timewait,5.358ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54992 10.0.0.10:44322 timer(timewait,33sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55012 10.0.0.10:44322 timer(timewait,37sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55014 10.0.0.10:44322 timer(timewait,40sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55016 10.0.0.10:44322 timer(timewait,39sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55018 10.0.0.10:44322 timer(timewait,39sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54960 10.0.0.10:44322 timer(timewait,29sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55054 10.0.0.10:44322 timer(timewait,47sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54928 10.0.0.10:44322 timer(timewait,22sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55020 10.0.0.10:44322 timer(timewait,43sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55022 10.0.0.10:44322 timer(timewait,40sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55024 10.0.0.10:44322 timer(timewait,41sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55026 10.0.0.10:44322 timer(timewait,41sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55028 10.0.0.10:44322 timer(timewait,42sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55030 10.0.0.10:44322 timer(timewait,41sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55032 10.0.0.10:44322 timer(timewait,42sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55034 10.0.0.10:44322 timer(timewait,44sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55036 10.0.0.10:44322 timer(timewait,43sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55038 10.0.0.10:44322 timer(timewait,45sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55040 10.0.0.10:44322 timer(timewait,44sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55042 10.0.0.10:44322 timer(timewait,46sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54852 10.0.0.10:44322 timer(timewait,9.426ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54936 10.0.0.10:44322 timer(timewait,23sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54948 10.0.0.10:44322 timer(timewait,26sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55044 10.0.0.10:44322 timer(timewait,50sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55046 10.0.0.10:44322 timer(timewait,45sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55048 10.0.0.10:44322 timer(timewait,48sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55050 10.0.0.10:44322 timer(timewait,46sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55052 10.0.0.10:44322 timer(timewait,46sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55054 10.0.0.10:44322 timer(timewait,47sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55056 10.0.0.10:44322 timer(timewait,47sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55058 10.0.0.10:44322 timer(timewait,47sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55060 10.0.0.10:44322 timer(timewait,48sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55062 10.0.0.10:44322 timer(timewait,49sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54944 10.0.0.10:44322 timer(timewait,27sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54846 10.0.0.10:44322 timer(timewait,9.223ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55040 10.0.0.10:44322 timer(timewait,44sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54804 10.0.0.10:44322 timer(timewait,1.440ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54850 10.0.0.10:44322 timer(timewait,10sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54884 10.0.0.10:44322 timer(timewait,15sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54938 10.0.0.10:44322 timer(timewait,25sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55086 10.0.0.10:44322 timer(timewait,53sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54840 10.0.0.10:44322 timer(timewait,8.342ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55064 10.0.0.10:44322 timer(timewait,48sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55066 10.0.0.10:44322 timer(timewait,49sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55068 10.0.0.10:44322 timer(timewait,51sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55070 10.0.0.10:44322 timer(timewait,49sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55072 10.0.0.10:44322 timer(timewait,50sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54922 10.0.0.10:44322 timer(timewait,21sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54878 10.0.0.10:44322 timer(timewait,14sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55074 10.0.0.10:44322 timer(timewait,56sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55078 10.0.0.10:44322 timer(timewait,51sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55052 10.0.0.10:44322 timer(timewait,46sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54932 10.0.0.10:44322 timer(timewait,24sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54832 10.0.0.10:44322 timer(timewait,6.800ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54880 10.0.0.10:44322 timer(timewait,16sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54854 10.0.0.10:44322 timer(timewait,11sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55080 10.0.0.10:44322 timer(timewait,52sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55082 10.0.0.10:44322 timer(timewait,51sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54856 10.0.0.10:44322 timer(timewait,10sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54994 10.0.0.10:44322 timer(timewait,33sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55068 10.0.0.10:44322 timer(timewait,51sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55014 10.0.0.10:44322 timer(timewait,40sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55016 10.0.0.10:44322 timer(timewait,39sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54814 10.0.0.10:44322 timer(timewait,3.380ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54820 10.0.0.10:44322 timer(timewait,4.339ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54886 10.0.0.10:44322 timer(timewait,17sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54890 10.0.0.10:44322 timer(timewait,16sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55058 10.0.0.10:44322 timer(timewait,47sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54952 10.0.0.10:44322 timer(timewait,25sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp ESTAB 0 0 10.0.0.10:55104 10.0.0.10:44322 timer(keepalive,26sec,0) uid:378 inode:165606577 sk:5 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb6291456,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:8.43/11.76 ato:40 mss:32768 cwnd:10 pmtu:65535 ssthresh:0 bytes_sent:8327 bytes_acked:8328 bytes_received:3510941 segs_out:178 segs_in:356 send 310965599bps lastsnd:756 lastrcv:637 lastack:639 pacing_rate 621875864bps delivery_rate 20164923072bps rcv_space:469929
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55116 10.0.0.10:44322 timer(timewait,58sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55112 10.0.0.10:44322 timer(timewait,59sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55114 10.0.0.10:44322 timer(timewait,58sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55102 10.0.0.10:44322 timer(timewait,56sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55118 10.0.0.10:44322 timer(timewait,59sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55084 10.0.0.10:44322 timer(timewait,52sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55086 10.0.0.10:44322 timer(timewait,53sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55088 10.0.0.10:44322 timer(timewait,55sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55090 10.0.0.10:44322 timer(timewait,53sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55092 10.0.0.10:44322 timer(timewait,53sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55094 10.0.0.10:44322 timer(timewait,54sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55096 10.0.0.10:44322 timer(timewait,54sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55100 10.0.0.10:44322 timer(timewait,58sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55102 10.0.0.10:44322 timer(timewait,56sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55106 10.0.0.10:44322 timer(timewait,56sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55108 10.0.0.10:44322 timer(timewait,57sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55110 10.0.0.10:44322 timer(timewait,57sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55106 10.0.0.10:44322 timer(timewait,56sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp ESTAB 0 0 10.0.0.10:55122 10.0.0.10:44322 timer(keepalive,29sec,0) uid:378 inode:165608516 sk:5 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb3013437,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.236/0.425 ato:40 mss:32768 cwnd:10 pmtu:65535 ssthresh:0 bytes_sent:16 bytes_acked:16 bytes_received:6325 segs_out:47 segs_in:66 send 11107796610bps lastsnd:611 lastrcv:609 lastack:609 pacing_rate 22145216472bps delivery_rate 32768000000bps rcv_space:81920
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55112 10.0.0.10:44322 timer(timewait,59sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55114 10.0.0.10:44322 timer(timewait,58sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55116 10.0.0.10:44322 timer(timewait,58sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55118 10.0.0.10:44322 timer(timewait,59sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+udp ESTAB 0 0 10.0.0.10:35754 142.251.10.189:443 uid:1024 inode:165318004 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+udp ESTAB 0 0 10.0.0.10:35983 142.250.70.142:443 uid:1024 inode:165466809 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+udp ESTAB 0 0 10.0.0.10:36244 142.250.70.138:443 uid:1024 inode:165293889 sk:f231 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+udp ESTAB 0 0 10.0.0.10:37128 142.250.70.138:443 uid:1024 inode:165585835 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+udp ESTAB 0 0 10.0.0.10:44639 142.250.70.131:443 uid:1024 inode:165411837 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+udp ESTAB 0 0 10.0.0.10:49113 142.250.70.131:443 uid:1024 inode:165606514 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+udp ESTAB 0 0 10.0.0.10:49123 142.250.4.189:443 uid:1024 inode:165373416 sk:ef33 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
|
|
pcp-ss output, at specific start time
|
|
# Time: 2021-06-18 13:33:39 Filter: state connected
|
|
Netid State Recv-Q Send-Q Local Address:Port Peer Address:Port Process
|
|
-tcp ESTAB 0 0 [::ffff:127.0.0.1]:3000 [::ffff:127.0.0.1]:49798 timer(keepalive,5.031ms,0) uid:378 inode:164821548 sk:17e9 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb2358342,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.029/0.019 ato:40 mss:32768 cwnd:10 pmtu:65535 ssthresh:0 bytes_sent:3077689 bytes_acked:3077689 bytes_received:95300 segs_out:1388 segs_in:1880 send 90394482759bps lastsnd:9969 lastrcv:9971 lastack:9969 pacing_rate 178481021272bps delivery_rate 65536000000bps rcv_space:65664
|
|
+tcp ESTAB 0 0 [::1]:3000 [::1]:51232 timer(keepalive,4.425ms,0) uid:378 inode:165581925 sk:5 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.392/0.759 ato:40 mss:65464 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:10191280 bytes_acked:10158498 bytes_received:278267 segs_out:992 segs_in:851 send 13360000000bps lastsnd:607 lastrcv:760 lastack:607 pacing_rate 26677465768bps delivery_rate 174570666664bps rcv_space:65464
|
|
+tcp ESTAB 0 0 [::1]:51228 [::1]:3000 timer(keepalive,43sec,0) uid:1024 inode:165582929 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb4978000,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:2.415/4.642 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:265964 bytes_acked:265965 bytes_received:6993639 segs_out:842 segs_in:867 send 1085482402bps lastsnd:759 lastrcv:623 lastack:623 pacing_rate 2170964800bps delivery_rate 87381333328bps rcv_space:98304
|
|
+tcp ESTAB 0 0 [::1]:51232 [::1]:3000 timer(keepalive,43sec,0) uid:1024 inode:165552950 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb4978000,t0,tb2626560,f0,w0,o0,bl0,d3) ts sack cubic wscale:7,7 rtt:3.701/7.013 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:278267 bytes_acked:278268 bytes_received:10158498 segs_out:851 segs_in:993 send 708305863bps lastsnd:760 lastrcv:607 lastack:607 pacing_rate 1416324704bps delivery_rate 87381333328bps rcv_space:163840
|
|
+tcp ESTAB 0 0 [::1]:51236 [::1]:3000 timer(keepalive,40sec,0) uid:1024 inode:165575931 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb4585000,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.942/1.793 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:274616 bytes_acked:274617 bytes_received:12991541 segs_out:925 segs_in:1058 send 2782845011bps lastsnd:4761 lastrcv:4697 lastack:4697 pacing_rate 5564213312bps delivery_rate 65536000000bps rcv_space:98304
|
|
+tcp ESTAB 0 0 [::1]:51238 [::1]:3000 timer(keepalive,6.381ms,0) uid:1024 inode:165581951 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d1) ts sack cubic wscale:7,7 rtt:4.48/8.875 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:238691 bytes_acked:238692 bytes_received:6294114 segs_out:626 segs_in:849 send 585142857bps lastsnd:758 lastrcv:616 lastack:616 pacing_rate 1170122464bps delivery_rate 87381333328bps rcv_space:65476
|
|
+tcp ESTAB 0 0 [::1]:51240 [::1]:3000 timer(keepalive,10sec,0) uid:1024 inode:165583008 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:4.388/8.395 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:247230 bytes_acked:247231 bytes_received:6274312 segs_out:642 segs_in:867 send 597411121bps lastsnd:764 lastrcv:635 lastack:635 pacing_rate 1194686104bps delivery_rate 87381333328bps rcv_space:65476
|
|
tcp ESTAB 0 0 127.0.0.1:6379 127.0.0.1:34526 timer(keepalive,40sec,0) uid:379 inode:164789635 sk:17e9 cgroup:/system.slice/redis.service <-> skmem(r0,rb6291456,t0,tb4194304,f0,w0,o0,bl0,d191) ts sack cubic wscale:7,7 rtt:5.308/10.357 ato:40 mss:65483 cwnd:37 pmtu:65535 ssthresh:27 bytes_sent:1741543822 bytes_acked:1736716332 bytes_received:348902250 segs_out:100169 segs_in:51994 send 3651651846bps lastsnd:609 lastrcv:609 lastack:568 pacing_rate 4381982208bps delivery_rate 69848533328bps rcv_space:1379162
|
|
-tcp ESTAB 23 0 10.40.192.134:47862 10.0.15.20:6667 timer(on,614ms,0) uid:1024 inode:143267906 sk:39 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb181972,t0,tb46080,f2793,w1303,o0,bl0,d56) ts sack cubic wscale:8,7 rtt:453.799/37.471 ato:40 mss:1308 cwnd:2 pmtu:1360 ssthresh:2 bytes_sent:387993 bytes_acked:386591 bytes_received:72874141 segs_out:117097 segs_in:108401 send 46117bps lastsnd:40 lastrcv:6050 lastack:22432 pacing_rate 55336bps delivery_rate 24936bps rcv_space:19026
|
|
-tcp ESTAB 0 0 10.0.0.10:58310 52.88.142.33:443 timer(keepalive,2min33sec,0) uid:1024 inode:143231822 sk:39 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d4) ts sack cubic wscale:8,7 rtt:211.152/22.951 ato:40 mss:1448 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:46445 bytes_acked:46409 bytes_received:48039 segs_out:2072 segs_in:2598 send 548610bps lastsnd:146234 lastrcv:146236 lastack:146029 pacing_rate 1097216bps delivery_rate 120648bps rcv_space:14480
|
|
-tcp ESTAB 0 0 10.0.0.10:44852 202.58.9.228:443 timer(keepalive,43sec,0) uid:1024 inode:143675936 sk:39 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d1769) sack cubic wscale:9,7 rtt:98.707/11.472 ato:40 mss:1460 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:6723 bytes_acked:6724 bytes_received:9572 segs_out:8675 segs_in:8669 send 1183300bps lastsnd:8818069 lastrcv:8817969 lastack:1340 pacing_rate 2366592bps delivery_rate 480352bps rcv_space:14600
|
|
-tcp ESTAB 23 0 10.0.0.10:37330 217.182.79.119:6667 timer(on,543ms,0) uid:1024 inode:147037462 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2467768,t0,tb87040,f2793,w1303,o0,bl0,d15) ts sack cubic wscale:7,7 rtt:377.613/33.401 ato:40 mss:1448 cwnd:2 pmtu:1500 ssthresh:2 bytes_sent:149848 bytes_acked:149434 bytes_received:440821 segs_out:13042 segs_in:6567 send 61354bps lastsnd:39 lastrcv:29806 lastack:29806 pacing_rate 73624bps delivery_rate 36280bps rcv_space:64371
|
|
-tcp ESTAB 0 0 192.168.122.1:53100 192.168.122.54:22 timer(keepalive,2min22sec,0) uid:1024 inode:152890200 sk:3a cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d11) ts sack cubic wscale:7,7 rtt:6.415/11.95 ato:40 mss:1448 cwnd:20 pmtu:1500 ssthresh:20 bytes_sent:65329 bytes_acked:65330 bytes_received:138089 segs_out:2145 segs_in:1352 send 36115355bps lastsnd:6216424 lastrcv:6216231 lastack:157163 pacing_rate 43332512bps delivery_rate 1079864400bps rcv_space:14480
|
|
-tcp ESTAB 0 0 10.0.0.10:52874 199.127.207.181:443 timer(keepalive,23sec,0) uid:1024 inode:154981923 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d433) sack cubic wscale:9,7 rtt:231.99/42.333 ato:40 mss:1460 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:3792 bytes_acked:3793 bytes_received:6931 segs_out:2107 segs_in:2102 send 503470bps lastsnd:78116165 lastrcv:78116159 lastack:21772 pacing_rate 1006936bps delivery_rate 206000bps rcv_space:14600
|
|
tcp ESTAB 0 0 10.0.0.10:33256 10.0.0.6:8009 timer(keepalive,14sec,0) uid:1024 inode:161634072 sk:3a cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2554304,t0,tb87040,f0,w0,o0,bl0,d1) ts sack cubic wscale:6,7 rtt:7.135/1.044 ato:40 mss:1448 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:734658 bytes_acked:734549 bytes_received:739568 segs_out:13349 segs_in:6686 send 16235459bps lastsnd:524 lastrcv:516 lastack:516 pacing_rate 32468640bps delivery_rate 7613536bps rcv_space:65491
|
|
-tcp ESTAB 0 0 10.0.0.10:45164 173.194.202.125:443 timer(keepalive,23sec,0) uid:1024 inode:161888302 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:228.663/49.231 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:11353 bytes_acked:11354 bytes_received:23756 segs_out:890 segs_in:895 send 496101bps lastsnd:207468 lastrcv:207250 lastack:21813 pacing_rate 992200bps delivery_rate 103864bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:34914 142.250.70.234:443 uid:1024 inode:165418039 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f4096,w0,o0,bl0,d11) ts sack cubic wscale:8,7 rtt:10.278/0.678 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:22452 bytes_acked:22453 bytes_received:16959 segs_out:307 segs_in:321 send 11037167bps lastsnd:11065 lastrcv:10735 lastack:10735 pacing_rate 22073256bps delivery_rate 2827752bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:34916 142.250.70.234:443 uid:1024 inode:165418040 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d9) ts sack cubic wscale:8,7 rtt:10.081/1.167 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:19775 bytes_acked:19776 bytes_received:15769 segs_out:277 segs_in:301 send 11252852bps lastsnd:11066 lastrcv:11066 lastack:11056 pacing_rate 22505424bps delivery_rate 3209656bps rcv_space:14480
|
|
tcp ESTAB 0 0 10.0.0.10:37256 157.240.8.18:443 timer(keepalive,2min53sec,0) uid:1024 inode:163353710 sk:262 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb1623296,t0,tb46080,f0,w0,o0,bl0,d37) ts sack cubic wscale:8,7 rtt:21.5/0.94 ato:40 mss:1380 cwnd:22 pmtu:1500 ssthresh:22 bytes_sent:71046 bytes_acked:71015 bytes_received:222343 segs_out:4414 segs_in:4458 send 11296744bps lastsnd:1471 lastrcv:1255 lastack:1449 pacing_rate 13556008bps delivery_rate 9819152bps rcv_space:87463
|
|
-tcp ESTAB 0 0 10.0.0.10:40226 13.54.123.156:443 timer(keepalive,8.158ms,0) uid:1024 inode:163971400 sk:3b cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2673664,t0,tb46080,f0,w0,o0,bl0,d0) ts sack cubic wscale:12,7 rtt:23.038/1.11 ato:46 mss:1288 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:13434 bytes_acked:13435 bytes_received:76107 segs_out:671 segs_in:482 send 4472610bps lastsnd:22123 lastrcv:22098 lastack:22098 pacing_rate 8945216bps delivery_rate 1318208bps rcv_space:67012
|
|
-tcp ESTAB 0 0 10.0.0.10:40232 13.54.123.156:443 timer(keepalive,15sec,0) uid:1024 inode:164254779 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2730360,t0,tb46080,f0,w0,o0,bl0,d0) ts sack cubic wscale:12,7 rtt:21.965/0.395 ato:42 mss:1288 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:21565 bytes_acked:21566 bytes_received:71362 segs_out:842 segs_in:526 send 4691099bps lastsnd:9624 lastrcv:9601 lastack:9601 pacing_rate 9381984bps delivery_rate 1362840bps rcv_space:67755
|
|
tcp ESTAB 0 0 10.0.0.10:39906 172.217.194.188:5228 timer(keepalive,6.702ms,0) uid:1024 inode:164287111 sk:eacd cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:94.893/7.701 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:893 bytes_acked:894 bytes_received:5528 segs_out:187 segs_in:187 send 1195452bps lastsnd:1336001 lastrcv:1335906 lastack:38204 pacing_rate 2390880bps delivery_rate 229032bps rcv_space:14480
|
|
-tcp ESTAB 0 0 127.0.0.1:34526 127.0.0.1:6379 timer(keepalive,10sec,0) uid:386 inode:164791620 sk:ef22 cgroup:/system.slice/pmproxy.service <-> skmem(r0,rb4978722,t0,tb4194304,f0,w0,o0,bl0,d352) ts sack cubic wscale:7,7 rtt:0.301/0.282 ato:40 mss:65483 cwnd:34 pmtu:65535 ssthresh:16 bytes_sent:349061810 bytes_acked:348902251 bytes_received:1736716332 segs_out:51994 segs_in:100170 send 59174006645bps lastsnd:609 lastrcv:609 lastack:609 pacing_rate 71008807968bps delivery_rate 104772800000bps rcv_space:245440
|
|
-tcp ESTAB 0 0 127.0.0.1:49798 127.0.0.1:3000 uid:0 inode:164815425 sk:17e9 cgroup:/system.slice/pmcd.service <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:5.821/8.743 ato:40 mss:65483 cwnd:10 pmtu:65535 ssthresh:0 bytes_sent:95300 bytes_acked:95301 bytes_received:3077689 segs_out:1880 segs_in:1389 send 899955334bps lastsnd:9970 lastrcv:9968 lastack:9968 pacing_rate 1799678784bps delivery_rate 40297230768bps rcv_space:65495
|
|
-udp ESTAB 0 0 10.0.0.10:36244 142.250.70.138:443 uid:1024 inode:165293889 sk:f231 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-udp ESTAB 0 0 10.0.0.10:35754 142.251.10.189:443 uid:1024 inode:165318004 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-udp ESTAB 0 0 10.0.0.10:49123 142.250.4.189:443 uid:1024 inode:165373416 sk:ef33 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp ESTAB 0 0 10.0.0.10:40218 142.250.70.142:443 uid:1024 inode:165413160 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d16) ts sack cubic wscale:8,7 rtt:10.371/0.673 ato:40 mss:1418 cwnd:3 pmtu:1500 ssthresh:2 bytes_sent:128059 bytes_acked:122619 bytes_received:60993 segs_out:493 segs_in:558 send 3281458bps lastsnd:48748 lastrcv:48749 lastack:48739 pacing_rate 3937552bps delivery_rate 2269480bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:40226 13.54.123.156:443 timer(keepalive,8.158ms,0) uid:1024 inode:163971400 sk:3b cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2673664,t0,tb46080,f0,w0,o0,bl0,d0) ts sack cubic wscale:12,7 rtt:23.038/1.11 ato:46 mss:1288 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:13434 bytes_acked:13435 bytes_received:76107 segs_out:671 segs_in:482 send 4472610bps lastsnd:22123 lastrcv:22098 lastack:22098 pacing_rate 8945216bps delivery_rate 1318208bps rcv_space:67012
|
|
+tcp ESTAB 0 0 10.0.0.10:40232 13.54.123.156:443 timer(keepalive,15sec,0) uid:1024 inode:164254779 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2730360,t0,tb46080,f0,w0,o0,bl0,d0) ts sack cubic wscale:12,7 rtt:21.965/0.395 ato:42 mss:1288 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:21565 bytes_acked:21566 bytes_received:71362 segs_out:842 segs_in:526 send 4691099bps lastsnd:9624 lastrcv:9601 lastack:9601 pacing_rate 9381984bps delivery_rate 1362840bps rcv_space:67755
|
|
tcp ESTAB 0 0 10.0.0.10:43990 142.250.70.131:443 uid:1024 inode:165420073 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:9.654/0.506 ato:40 mss:1418 cwnd:4 pmtu:1500 ssthresh:4 bytes_sent:10189 bytes_acked:10000 bytes_received:16620 segs_out:246 segs_in:410 send 4700228bps lastsnd:17768 lastrcv:17783 lastack:17759 pacing_rate 5640272bps delivery_rate 2983168bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:44322 10.0.0.10:55122 timer(keepalive,44sec,0) uid:386 inode:165594717 sk:5 cgroup:/system.slice/pmproxy.service <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:5.315/10.43 ato:40 mss:65483 cwnd:17 pmtu:65535 ssthresh:17 bytes_sent:3451325 bytes_acked:3451325 bytes_received:8189 segs_out:65 segs_in:47 send 1675576294bps lastsnd:609 lastrcv:611 lastack:567 pacing_rate 2010691552bps delivery_rate 130966000000bps rcv_space:65483
|
|
tcp ESTAB 0 0 10.0.0.10:44388 142.250.4.189:443 uid:1024 inode:165419510 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:96.696/2.871 ato:40 mss:1418 cwnd:7 pmtu:1500 ssthresh:7 bytes_sent:10276 bytes_acked:9774 bytes_received:14545 segs_out:207 segs_in:207 send 821213bps lastsnd:17146 lastrcv:17036 lastack:17036 pacing_rate 985448bps delivery_rate 467400bps rcv_space:14480
|
|
-tcp ESTAB 0 0 10.0.0.10:34914 142.250.70.234:443 uid:1024 inode:165418039 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f4096,w0,o0,bl0,d11) ts sack cubic wscale:8,7 rtt:10.278/0.678 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:22452 bytes_acked:22453 bytes_received:16959 segs_out:307 segs_in:321 send 11037167bps lastsnd:11065 lastrcv:10735 lastack:10735 pacing_rate 22073256bps delivery_rate 2827752bps rcv_space:14480
|
|
-tcp ESTAB 0 0 10.0.0.10:34916 142.250.70.234:443 uid:1024 inode:165418040 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d9) ts sack cubic wscale:8,7 rtt:10.081/1.167 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:19775 bytes_acked:19776 bytes_received:15769 segs_out:277 segs_in:301 send 11252852bps lastsnd:11066 lastrcv:11066 lastack:11056 pacing_rate 22505424bps delivery_rate 3209656bps rcv_space:14480
|
|
-tcp ESTAB 0 0 10.0.0.10:49594 142.250.70.165:443 timer(keepalive,6.621ms,0) uid:1024 inode:165410113 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb1074240,t0,tb87040,f0,w0,o0,bl0,d6) ts sack cubic wscale:8,7 rtt:11.987/1.417 ato:40 mss:1418 cwnd:18 pmtu:1500 ssthresh:0 bytes_sent:76222 bytes_acked:76223 bytes_received:199808 segs_out:342 segs_in:404 send 17034454bps lastsnd:218733 lastrcv:218735 lastack:38371 pacing_rate 34068192bps delivery_rate 8192584bps rcv_space:75339
|
|
-tcp ESTAB 0 0 10.0.0.10:57232 157.240.8.35:443 uid:1024 inode:165408121 sk:1781 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb46080,f8192,w0,o0,bl0,d4) ts sack cubic wscale:8,7 rtt:23.193/1.8 ato:40 mss:1380 cwnd:2 pmtu:1500 ssthresh:2 bytes_sent:69963 bytes_acked:68311 bytes_received:28389 segs_out:252 segs_in:206 send 952011bps lastsnd:6934 lastrcv:6458 lastack:6458 pacing_rate 1142400bps delivery_rate 371224bps rcv_space:14480
|
|
-udp ESTAB 0 0 10.0.0.10:44639 142.250.70.131:443 uid:1024 inode:165411837 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:44852 202.58.9.228:443 timer(keepalive,43sec,0) uid:1024 inode:143675936 sk:39 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d1769) sack cubic wscale:9,7 rtt:98.707/11.472 ato:40 mss:1460 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:6723 bytes_acked:6724 bytes_received:9572 segs_out:8675 segs_in:8669 send 1183300bps lastsnd:8818069 lastrcv:8817969 lastack:1340 pacing_rate 2366592bps delivery_rate 480352bps rcv_space:14600
|
|
+tcp ESTAB 0 0 10.0.0.10:45164 173.194.202.125:443 timer(keepalive,23sec,0) uid:1024 inode:161888302 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:228.663/49.231 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:11353 bytes_acked:11354 bytes_received:23756 segs_out:890 segs_in:895 send 496101bps lastsnd:207468 lastrcv:207250 lastack:21813 pacing_rate 992200bps delivery_rate 103864bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:46306 3.233.54.64:443 timer(keepalive,23sec,0) uid:1024 inode:165592357 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:12,7 rtt:246.45/50.358 ato:40 mss:1448 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:3814 bytes_acked:3815 bytes_received:4765 segs_out:12 segs_in:12 send 470034bps lastsnd:22071 lastrcv:21847 lastack:21848 pacing_rate 940064bps delivery_rate 120016bps rcv_space:14480
|
|
tcp ESTAB 0 0 10.0.0.10:46392 142.251.10.189:443 uid:1024 inode:165466671 sk:f23b cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f4096,w0,o0,bl0,d2) ts sack cubic wscale:8,7 rtt:111.69/24.888 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:8645 bytes_acked:8646 bytes_received:12265 segs_out:135 segs_in:139 send 1015668bps lastsnd:52309 lastrcv:25403 lastack:50572 pacing_rate 2031320bps delivery_rate 335272bps rcv_space:14480
|
|
-udp ESTAB 0 0 10.0.0.10:35983 142.250.70.142:443 uid:1024 inode:165466809 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:49594 142.250.70.165:443 timer(keepalive,6.621ms,0) uid:1024 inode:165410113 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb1074240,t0,tb87040,f0,w0,o0,bl0,d6) ts sack cubic wscale:8,7 rtt:11.987/1.417 ato:40 mss:1418 cwnd:18 pmtu:1500 ssthresh:0 bytes_sent:76222 bytes_acked:76223 bytes_received:199808 segs_out:342 segs_in:404 send 17034454bps lastsnd:218733 lastrcv:218735 lastack:38371 pacing_rate 34068192bps delivery_rate 8192584bps rcv_space:75339
|
|
+tcp ESTAB 0 0 10.0.0.10:49614 142.250.70.165:443 uid:1024 inode:165581235 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:10.118/1.177 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:3573 bytes_acked:3574 bytes_received:2558 segs_out:20 segs_in:19 send 11211702bps lastsnd:27596 lastrcv:27584 lastack:27584 pacing_rate 22423400bps delivery_rate 3963936bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:52874 199.127.207.181:443 timer(keepalive,23sec,0) uid:1024 inode:154981923 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d433) sack cubic wscale:9,7 rtt:231.99/42.333 ato:40 mss:1460 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:3792 bytes_acked:3793 bytes_received:6931 segs_out:2107 segs_in:2102 send 503470bps lastsnd:78116165 lastrcv:78116159 lastack:21772 pacing_rate 1006936bps delivery_rate 206000bps rcv_space:14600
|
|
+tcp ESTAB 0 0 10.0.0.10:55104 10.0.0.10:44322 timer(keepalive,26sec,0) uid:378 inode:165606577 sk:5 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb6291456,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:8.43/11.76 ato:40 mss:32768 cwnd:10 pmtu:65535 ssthresh:0 bytes_sent:8252 bytes_acked:8253 bytes_received:3480217 segs_out:178 segs_in:356 send 310965599bps lastsnd:756 lastrcv:637 lastack:639 pacing_rate 621875864bps delivery_rate 20164923072bps rcv_space:469929
|
|
+tcp ESTAB 0 0 10.0.0.10:55122 10.0.0.10:44322 timer(keepalive,29sec,0) uid:378 inode:165608516 sk:5 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb3013437,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.236/0.425 ato:40 mss:32768 cwnd:10 pmtu:65535 ssthresh:0 bytes_sent:37 bytes_acked:37 bytes_received:15171 segs_out:47 segs_in:66 send 11107796610bps lastsnd:611 lastrcv:609 lastack:609 pacing_rate 22145216472bps delivery_rate 32768000000bps rcv_space:81920
|
|
+tcp ESTAB 0 0 10.0.0.10:55308 142.250.70.228:443 uid:1024 inode:165561257 sk:eb1c cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d3) ts sack cubic wscale:8,7 rtt:11.532/2.782 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:3051 bytes_acked:3052 bytes_received:4379 segs_out:38 segs_in:36 send 9836975bps lastsnd:46596 lastrcv:46586 lastack:46587 pacing_rate 19672664bps delivery_rate 1814168bps rcv_space:14480
|
|
tcp ESTAB 0 0 10.0.0.10:55532 140.82.114.26:443 timer(keepalive,9.693ms,0) uid:1024 inode:165515920 sk:17eb cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:10,7 rtt:251.743/35.839 ato:40 mss:1424 cwnd:20 pmtu:1500 ssthresh:0 bytes_sent:17930 bytes_acked:17931 bytes_received:4200 segs_out:49 segs_in:46 send 905050bps lastsnd:20795 lastrcv:20795 lastack:20571 pacing_rate 1810096bps delivery_rate 503048bps rcv_space:14480
|
|
tcp ESTAB 0 0 10.0.0.10:55534 140.82.114.26:443 timer(keepalive,28sec,0) uid:1024 inode:165521771 sk:ef38 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:10,7 rtt:283.095/41.806 ato:40 mss:1424 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:2643 bytes_acked:2644 bytes_received:3981 segs_out:36 segs_in:38 send 402409bps lastsnd:2669 lastrcv:2669 lastack:2444 pacing_rate 804816bps delivery_rate 73400bps rcv_space:14480
|
|
-tcp ESTAB 0 0 10.0.0.10:55308 142.250.70.228:443 uid:1024 inode:165561257 sk:eb1c cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d3) ts sack cubic wscale:8,7 rtt:11.532/2.782 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:3051 bytes_acked:3052 bytes_received:4379 segs_out:38 segs_in:36 send 9836975bps lastsnd:46596 lastrcv:46586 lastack:46587 pacing_rate 19672664bps delivery_rate 1814168bps rcv_space:14480
|
|
-tcp ESTAB 0 0 10.0.0.10:44322 10.0.0.10:55122 timer(keepalive,44sec,0) uid:386 inode:165594717 sk:5 cgroup:/system.slice/pmproxy.service <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:5.315/10.43 ato:40 mss:65483 cwnd:17 pmtu:65535 ssthresh:17 bytes_sent:3451325 bytes_acked:3451325 bytes_received:8189 segs_out:65 segs_in:47 send 1675576294bps lastsnd:609 lastrcv:611 lastack:567 pacing_rate 2010691552bps delivery_rate 130966000000bps rcv_space:65483
|
|
tcp ESTAB 0 0 10.0.0.10:55694 34.120.177.193:443 timer(keepalive,2.525ms,0) uid:1024 inode:165577700 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d1) ts sack cubic wscale:8,7 rtt:13.091/4.789 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:1234 bytes_acked:1235 bytes_received:5268 segs_out:21 segs_in:20 send 8665495bps lastsnd:224263 lastrcv:224265 lastack:42465 pacing_rate 17330160bps delivery_rate 2267288bps rcv_space:14480
|
|
-tcp ESTAB 0 0 [::1]:3000 [::1]:51232 timer(keepalive,4.425ms,0) uid:378 inode:165581925 sk:5 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.392/0.759 ato:40 mss:65464 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:10191280 bytes_acked:10158498 bytes_received:278267 segs_out:992 segs_in:851 send 13360000000bps lastsnd:607 lastrcv:760 lastack:607 pacing_rate 26677465768bps delivery_rate 174570666664bps rcv_space:65464
|
|
-tcp ESTAB 0 0 [::1]:51238 [::1]:3000 timer(keepalive,6.381ms,0) uid:1024 inode:165581951 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d1) ts sack cubic wscale:7,7 rtt:4.48/8.875 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:238691 bytes_acked:238692 bytes_received:6294114 segs_out:626 segs_in:849 send 585142857bps lastsnd:758 lastrcv:616 lastack:616 pacing_rate 1170122464bps delivery_rate 87381333328bps rcv_space:65476
|
|
-tcp ESTAB 0 0 [::1]:51240 [::1]:3000 timer(keepalive,10sec,0) uid:1024 inode:165583008 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:4.388/8.395 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:247230 bytes_acked:247231 bytes_received:6274312 segs_out:642 segs_in:867 send 597411121bps lastsnd:764 lastrcv:635 lastack:635 pacing_rate 1194686104bps delivery_rate 87381333328bps rcv_space:65476
|
|
-tcp ESTAB 0 0 [::1]:51236 [::1]:3000 timer(keepalive,40sec,0) uid:1024 inode:165575931 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb4585000,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.942/1.793 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:274616 bytes_acked:274617 bytes_received:12991541 segs_out:925 segs_in:1058 send 2782845011bps lastsnd:4761 lastrcv:4697 lastack:4697 pacing_rate 5564213312bps delivery_rate 65536000000bps rcv_space:98304
|
|
-tcp ESTAB 0 0 [::1]:51228 [::1]:3000 timer(keepalive,43sec,0) uid:1024 inode:165582929 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb4978000,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:2.415/4.642 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:265964 bytes_acked:265965 bytes_received:6993639 segs_out:842 segs_in:867 send 1085482402bps lastsnd:759 lastrcv:623 lastack:623 pacing_rate 2170964800bps delivery_rate 87381333328bps rcv_space:98304
|
|
-tcp ESTAB 0 0 [::1]:51232 [::1]:3000 timer(keepalive,43sec,0) uid:1024 inode:165552950 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb4978000,t0,tb2626560,f0,w0,o0,bl0,d3) ts sack cubic wscale:7,7 rtt:3.701/7.013 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:278267 bytes_acked:278268 bytes_received:10158498 segs_out:851 segs_in:993 send 708305863bps lastsnd:760 lastrcv:607 lastack:607 pacing_rate 1416324704bps delivery_rate 87381333328bps rcv_space:163840
|
|
+tcp ESTAB 0 0 10.0.0.10:57232 157.240.8.35:443 uid:1024 inode:165408121 sk:1781 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb46080,f8192,w0,o0,bl0,d4) ts sack cubic wscale:8,7 rtt:23.193/1.8 ato:40 mss:1380 cwnd:2 pmtu:1500 ssthresh:2 bytes_sent:69963 bytes_acked:68311 bytes_received:28389 segs_out:252 segs_in:206 send 952011bps lastsnd:6934 lastrcv:6458 lastack:6458 pacing_rate 1142400bps delivery_rate 371224bps rcv_space:14480
|
|
tcp ESTAB 0 0 10.0.0.10:57958 142.250.70.238:443 uid:1024 inode:165594185 sk:183a cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d1) ts sack cubic wscale:8,7 rtt:10.608/1.213 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:7836 bytes_acked:7837 bytes_received:3104 segs_out:27 segs_in:27 send 10693816bps lastsnd:18595 lastrcv:18584 lastack:18584 pacing_rate 21387376bps delivery_rate 5058864bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:58310 52.88.142.33:443 timer(keepalive,2min33sec,0) uid:1024 inode:143231822 sk:39 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d4) ts sack cubic wscale:8,7 rtt:211.152/22.951 ato:40 mss:1448 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:46445 bytes_acked:46409 bytes_received:48039 segs_out:2072 segs_in:2598 send 548610bps lastsnd:146234 lastrcv:146236 lastack:146029 pacing_rate 1097216bps delivery_rate 120648bps rcv_space:14480
|
|
+tcp ESTAB 0 0 127.0.0.1:34526 127.0.0.1:6379 timer(keepalive,10sec,0) uid:386 inode:164791620 sk:ef22 cgroup:/system.slice/pmproxy.service <-> skmem(r0,rb4978722,t0,tb4194304,f0,w0,o0,bl0,d352) ts sack cubic wscale:7,7 rtt:0.301/0.282 ato:40 mss:65483 cwnd:34 pmtu:65535 ssthresh:16 bytes_sent:349061810 bytes_acked:348902251 bytes_received:1736716332 segs_out:51994 segs_in:100170 send 59174006645bps lastsnd:609 lastrcv:609 lastack:609 pacing_rate 71008807968bps delivery_rate 104772800000bps rcv_space:245440
|
|
+tcp ESTAB 0 0 127.0.0.1:49798 127.0.0.1:3000 uid:0 inode:164815425 sk:17e9 cgroup:/system.slice/pmcd.service <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:5.821/8.743 ato:40 mss:65483 cwnd:10 pmtu:65535 ssthresh:0 bytes_sent:95300 bytes_acked:95301 bytes_received:3077689 segs_out:1880 segs_in:1389 send 899955334bps lastsnd:9970 lastrcv:9968 lastack:9968 pacing_rate 1799678784bps delivery_rate 40297230768bps rcv_space:65495
|
|
+tcp ESTAB 0 0 192.168.122.1:53100 192.168.122.54:22 timer(keepalive,2min22sec,0) uid:1024 inode:152890200 sk:3a cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d11) ts sack cubic wscale:7,7 rtt:6.415/11.95 ato:40 mss:1448 cwnd:20 pmtu:1500 ssthresh:20 bytes_sent:65329 bytes_acked:65330 bytes_received:138089 segs_out:2145 segs_in:1352 send 36115355bps lastsnd:6216424 lastrcv:6216231 lastack:157163 pacing_rate 43332512bps delivery_rate 1079864400bps rcv_space:14480
|
|
+tcp ESTAB 0 0 [::ffff:127.0.0.1]:3000 [::ffff:127.0.0.1]:49798 timer(keepalive,5.031ms,0) uid:378 inode:164821548 sk:17e9 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb2358342,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.029/0.019 ato:40 mss:32768 cwnd:10 pmtu:65535 ssthresh:0 bytes_sent:3077689 bytes_acked:3077689 bytes_received:95300 segs_out:1388 segs_in:1880 send 90394482759bps lastsnd:9969 lastrcv:9971 lastack:9969 pacing_rate 178481021272bps delivery_rate 65536000000bps rcv_space:65664
|
|
+tcp ESTAB 23 0 10.0.0.10:37330 217.182.79.119:6667 timer(on,543ms,0) uid:1024 inode:147037462 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2467768,t0,tb87040,f2793,w1303,o0,bl0,d15) ts sack cubic wscale:7,7 rtt:377.613/33.401 ato:40 mss:1448 cwnd:2 pmtu:1500 ssthresh:2 bytes_sent:149848 bytes_acked:149434 bytes_received:440821 segs_out:13042 segs_in:6567 send 61354bps lastsnd:39 lastrcv:29806 lastack:29806 pacing_rate 73624bps delivery_rate 36280bps rcv_space:64371
|
|
+tcp ESTAB 23 0 10.40.192.134:47862 10.0.15.20:6667 timer(on,614ms,0) uid:1024 inode:143267906 sk:39 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb181972,t0,tb46080,f2793,w1303,o0,bl0,d56) ts sack cubic wscale:8,7 rtt:453.799/37.471 ato:40 mss:1308 cwnd:2 pmtu:1360 ssthresh:2 bytes_sent:387993 bytes_acked:386591 bytes_received:72874141 segs_out:117097 segs_in:108401 send 46117bps lastsnd:40 lastrcv:6050 lastack:22432 pacing_rate 55336bps delivery_rate 24936bps rcv_space:19026
|
|
tcp TIME-WAIT 0 0 10.0.0.10:54774 10.0.0.10:44322 timer(timewait,,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54784 10.0.0.10:44322 timer(timewait,,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:54792 10.0.0.10:44322 timer(timewait,,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:54794 10.0.0.10:44322 timer(timewait,2.383ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:54796 10.0.0.10:44322 timer(timewait,350ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp ESTAB 0 0 10.0.0.10:46306 3.233.54.64:443 timer(keepalive,23sec,0) uid:1024 inode:165592357 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:12,7 rtt:246.45/50.358 ato:40 mss:1448 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:3814 bytes_acked:3815 bytes_received:4765 segs_out:12 segs_in:12 send 470034bps lastsnd:22071 lastrcv:21847 lastack:21848 pacing_rate 940064bps delivery_rate 120016bps rcv_space:14480
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54784 10.0.0.10:44322 timer(timewait,,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp ESTAB 0 0 10.0.0.10:49614 142.250.70.165:443 uid:1024 inode:165581235 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:10.118/1.177 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:3573 bytes_acked:3574 bytes_received:2558 segs_out:20 segs_in:19 send 11211702bps lastsnd:27596 lastrcv:27584 lastack:27584 pacing_rate 22423400bps delivery_rate 3963936bps rcv_space:14480
|
|
tcp TIME-WAIT 0 0 10.0.0.10:54798 10.0.0.10:44322 timer(timewait,222ms,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54802 10.0.0.10:44322 timer(timewait,3.376ms,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:54800 10.0.0.10:44322 timer(timewait,354ms,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-udp ESTAB 0 0 10.0.0.10:37128 142.250.70.138:443 uid:1024 inode:165585835 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-udp ESTAB 0 0 10.0.0.10:49113 142.250.70.131:443 uid:1024 inode:165606514 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54872 10.0.0.10:44322 timer(timewait,14sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55048 10.0.0.10:44322 timer(timewait,48sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55060 10.0.0.10:44322 timer(timewait,48sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55094 10.0.0.10:44322 timer(timewait,54sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54980 10.0.0.10:44322 timer(timewait,34sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54802 10.0.0.10:44322 timer(timewait,3.376ms,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54804 10.0.0.10:44322 timer(timewait,1.440ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:54806 10.0.0.10:44322 timer(timewait,1.441ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55088 10.0.0.10:44322 timer(timewait,55sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55064 10.0.0.10:44322 timer(timewait,48sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54956 10.0.0.10:44322 timer(timewait,26sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54826 10.0.0.10:44322 timer(timewait,5.357ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54808 10.0.0.10:44322 timer(timewait,2.383ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54810 10.0.0.10:44322 timer(timewait,4.343ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54812 10.0.0.10:44322 timer(timewait,5.358ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54814 10.0.0.10:44322 timer(timewait,3.380ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54816 10.0.0.10:44322 timer(timewait,4.219ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54818 10.0.0.10:44322 timer(timewait,6.800ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54820 10.0.0.10:44322 timer(timewait,4.339ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:54822 10.0.0.10:44322 timer(timewait,8.347ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54860 10.0.0.10:44322 timer(timewait,13sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55092 10.0.0.10:44322 timer(timewait,53sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55036 10.0.0.10:44322 timer(timewait,43sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55038 10.0.0.10:44322 timer(timewait,45sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55066 10.0.0.10:44322 timer(timewait,49sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55080 10.0.0.10:44322 timer(timewait,52sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54916 10.0.0.10:44322 timer(timewait,23sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55034 10.0.0.10:44322 timer(timewait,44sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54954 10.0.0.10:44322 timer(timewait,25sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54894 10.0.0.10:44322 timer(timewait,19sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54968 10.0.0.10:44322 timer(timewait,28sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54978 10.0.0.10:44322 timer(timewait,30sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54824 10.0.0.10:44322 timer(timewait,5.225ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54826 10.0.0.10:44322 timer(timewait,5.357ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:54830 10.0.0.10:44322 timer(timewait,7.365ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55012 10.0.0.10:44322 timer(timewait,37sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55050 10.0.0.10:44322 timer(timewait,46sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54896 10.0.0.10:44322 timer(timewait,17sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54832 10.0.0.10:44322 timer(timewait,6.800ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54834 10.0.0.10:44322 timer(timewait,6.831ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54836 10.0.0.10:44322 timer(timewait,7.364ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:54838 10.0.0.10:44322 timer(timewait,9.447ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55030 10.0.0.10:44322 timer(timewait,41sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55002 10.0.0.10:44322 timer(timewait,37sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55024 10.0.0.10:44322 timer(timewait,41sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55020 10.0.0.10:44322 timer(timewait,43sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55046 10.0.0.10:44322 timer(timewait,45sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54876 10.0.0.10:44322 timer(timewait,18sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55084 10.0.0.10:44322 timer(timewait,52sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54900 10.0.0.10:44322 timer(timewait,19sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55056 10.0.0.10:44322 timer(timewait,47sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54808 10.0.0.10:44322 timer(timewait,2.383ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54840 10.0.0.10:44322 timer(timewait,8.342ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54842 10.0.0.10:44322 timer(timewait,12sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54846 10.0.0.10:44322 timer(timewait,9.223ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54850 10.0.0.10:44322 timer(timewait,10sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54852 10.0.0.10:44322 timer(timewait,9.426ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54854 10.0.0.10:44322 timer(timewait,11sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54856 10.0.0.10:44322 timer(timewait,10sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:54858 10.0.0.10:44322 timer(timewait,10sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55032 10.0.0.10:44322 timer(timewait,42sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55000 10.0.0.10:44322 timer(timewait,35sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54810 10.0.0.10:44322 timer(timewait,4.343ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54898 10.0.0.10:44322 timer(timewait,18sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54860 10.0.0.10:44322 timer(timewait,13sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54862 10.0.0.10:44322 timer(timewait,11sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54864 10.0.0.10:44322 timer(timewait,15sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54866 10.0.0.10:44322 timer(timewait,12sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54868 10.0.0.10:44322 timer(timewait,12sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54870 10.0.0.10:44322 timer(timewait,13sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54872 10.0.0.10:44322 timer(timewait,14sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:54874 10.0.0.10:44322 timer(timewait,13sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55022 10.0.0.10:44322 timer(timewait,40sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54892 10.0.0.10:44322 timer(timewait,17sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54876 10.0.0.10:44322 timer(timewait,18sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54878 10.0.0.10:44322 timer(timewait,14sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54880 10.0.0.10:44322 timer(timewait,16sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:54882 10.0.0.10:44322 timer(timewait,15sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54964 10.0.0.10:44322 timer(timewait,27sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54834 10.0.0.10:44322 timer(timewait,6.831ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54986 10.0.0.10:44322 timer(timewait,32sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54884 10.0.0.10:44322 timer(timewait,15sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54886 10.0.0.10:44322 timer(timewait,17sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:54888 10.0.0.10:44322 timer(timewait,16sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55090 10.0.0.10:44322 timer(timewait,53sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54906 10.0.0.10:44322 timer(timewait,23sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54816 10.0.0.10:44322 timer(timewait,4.219ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54974 10.0.0.10:44322 timer(timewait,30sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55004 10.0.0.10:44322 timer(timewait,36sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54972 10.0.0.10:44322 timer(timewait,28sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54966 10.0.0.10:44322 timer(timewait,27sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55070 10.0.0.10:44322 timer(timewait,49sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55006 10.0.0.10:44322 timer(timewait,38sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54904 10.0.0.10:44322 timer(timewait,20sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54836 10.0.0.10:44322 timer(timewait,7.364ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54988 10.0.0.10:44322 timer(timewait,32sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54890 10.0.0.10:44322 timer(timewait,16sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54892 10.0.0.10:44322 timer(timewait,17sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54894 10.0.0.10:44322 timer(timewait,19sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54896 10.0.0.10:44322 timer(timewait,17sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54898 10.0.0.10:44322 timer(timewait,18sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54900 10.0.0.10:44322 timer(timewait,19sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:54902 10.0.0.10:44322 timer(timewait,18sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54904 10.0.0.10:44322 timer(timewait,20sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54906 10.0.0.10:44322 timer(timewait,23sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54910 10.0.0.10:44322 timer(timewait,19sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:54914 10.0.0.10:44322 timer(timewait,20sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54976 10.0.0.10:44322 timer(timewait,31sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55096 10.0.0.10:44322 timer(timewait,54sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54824 10.0.0.10:44322 timer(timewait,5.225ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54958 10.0.0.10:44322 timer(timewait,26sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54916 10.0.0.10:44322 timer(timewait,23sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54920 10.0.0.10:44322 timer(timewait,21sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54922 10.0.0.10:44322 timer(timewait,21sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54926 10.0.0.10:44322 timer(timewait,22sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54928 10.0.0.10:44322 timer(timewait,22sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:54930 10.0.0.10:44322 timer(timewait,22sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54932 10.0.0.10:44322 timer(timewait,24sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54936 10.0.0.10:44322 timer(timewait,23sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54938 10.0.0.10:44322 timer(timewait,25sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54942 10.0.0.10:44322 timer(timewait,24sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54944 10.0.0.10:44322 timer(timewait,27sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54948 10.0.0.10:44322 timer(timewait,26sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54952 10.0.0.10:44322 timer(timewait,25sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54954 10.0.0.10:44322 timer(timewait,25sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54956 10.0.0.10:44322 timer(timewait,26sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54958 10.0.0.10:44322 timer(timewait,26sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54960 10.0.0.10:44322 timer(timewait,29sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54962 10.0.0.10:44322 timer(timewait,29sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54964 10.0.0.10:44322 timer(timewait,27sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54966 10.0.0.10:44322 timer(timewait,27sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54968 10.0.0.10:44322 timer(timewait,28sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54972 10.0.0.10:44322 timer(timewait,28sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54974 10.0.0.10:44322 timer(timewait,30sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54976 10.0.0.10:44322 timer(timewait,31sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54978 10.0.0.10:44322 timer(timewait,30sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54980 10.0.0.10:44322 timer(timewait,34sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54982 10.0.0.10:44322 timer(timewait,30sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:54984 10.0.0.10:44322 timer(timewait,31sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54986 10.0.0.10:44322 timer(timewait,32sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54988 10.0.0.10:44322 timer(timewait,32sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54990 10.0.0.10:44322 timer(timewait,34sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54992 10.0.0.10:44322 timer(timewait,33sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:54994 10.0.0.10:44322 timer(timewait,33sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:54996 10.0.0.10:44322 timer(timewait,36sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54866 10.0.0.10:44322 timer(timewait,12sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54962 10.0.0.10:44322 timer(timewait,29sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54942 10.0.0.10:44322 timer(timewait,24sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54910 10.0.0.10:44322 timer(timewait,19sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55074 10.0.0.10:44322 timer(timewait,56sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:54998 10.0.0.10:44322 timer(timewait,35sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54990 10.0.0.10:44322 timer(timewait,34sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55028 10.0.0.10:44322 timer(timewait,42sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55044 10.0.0.10:44322 timer(timewait,50sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55000 10.0.0.10:44322 timer(timewait,35sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55002 10.0.0.10:44322 timer(timewait,37sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55004 10.0.0.10:44322 timer(timewait,36sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55006 10.0.0.10:44322 timer(timewait,38sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55008 10.0.0.10:44322 timer(timewait,38sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54842 10.0.0.10:44322 timer(timewait,12sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54920 10.0.0.10:44322 timer(timewait,21sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54982 10.0.0.10:44322 timer(timewait,30sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54862 10.0.0.10:44322 timer(timewait,11sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54868 10.0.0.10:44322 timer(timewait,12sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54926 10.0.0.10:44322 timer(timewait,22sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55026 10.0.0.10:44322 timer(timewait,41sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54870 10.0.0.10:44322 timer(timewait,13sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54864 10.0.0.10:44322 timer(timewait,15sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54818 10.0.0.10:44322 timer(timewait,6.800ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54812 10.0.0.10:44322 timer(timewait,5.358ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54992 10.0.0.10:44322 timer(timewait,33sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55012 10.0.0.10:44322 timer(timewait,37sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55014 10.0.0.10:44322 timer(timewait,40sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55016 10.0.0.10:44322 timer(timewait,39sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55018 10.0.0.10:44322 timer(timewait,39sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54960 10.0.0.10:44322 timer(timewait,29sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55054 10.0.0.10:44322 timer(timewait,47sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54928 10.0.0.10:44322 timer(timewait,22sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55020 10.0.0.10:44322 timer(timewait,43sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55022 10.0.0.10:44322 timer(timewait,40sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55024 10.0.0.10:44322 timer(timewait,41sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55026 10.0.0.10:44322 timer(timewait,41sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55028 10.0.0.10:44322 timer(timewait,42sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55030 10.0.0.10:44322 timer(timewait,41sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55032 10.0.0.10:44322 timer(timewait,42sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55034 10.0.0.10:44322 timer(timewait,44sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55036 10.0.0.10:44322 timer(timewait,43sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55038 10.0.0.10:44322 timer(timewait,45sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55040 10.0.0.10:44322 timer(timewait,44sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55042 10.0.0.10:44322 timer(timewait,46sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54852 10.0.0.10:44322 timer(timewait,9.426ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54936 10.0.0.10:44322 timer(timewait,23sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54948 10.0.0.10:44322 timer(timewait,26sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55044 10.0.0.10:44322 timer(timewait,50sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55046 10.0.0.10:44322 timer(timewait,45sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55048 10.0.0.10:44322 timer(timewait,48sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55050 10.0.0.10:44322 timer(timewait,46sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55052 10.0.0.10:44322 timer(timewait,46sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55054 10.0.0.10:44322 timer(timewait,47sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55056 10.0.0.10:44322 timer(timewait,47sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55058 10.0.0.10:44322 timer(timewait,47sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55060 10.0.0.10:44322 timer(timewait,48sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55062 10.0.0.10:44322 timer(timewait,49sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54944 10.0.0.10:44322 timer(timewait,27sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54846 10.0.0.10:44322 timer(timewait,9.223ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55040 10.0.0.10:44322 timer(timewait,44sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54804 10.0.0.10:44322 timer(timewait,1.440ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54850 10.0.0.10:44322 timer(timewait,10sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54884 10.0.0.10:44322 timer(timewait,15sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54938 10.0.0.10:44322 timer(timewait,25sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55086 10.0.0.10:44322 timer(timewait,53sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54840 10.0.0.10:44322 timer(timewait,8.342ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55064 10.0.0.10:44322 timer(timewait,48sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55066 10.0.0.10:44322 timer(timewait,49sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55068 10.0.0.10:44322 timer(timewait,51sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55070 10.0.0.10:44322 timer(timewait,49sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55072 10.0.0.10:44322 timer(timewait,50sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54922 10.0.0.10:44322 timer(timewait,21sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54878 10.0.0.10:44322 timer(timewait,14sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55074 10.0.0.10:44322 timer(timewait,56sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55078 10.0.0.10:44322 timer(timewait,51sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55052 10.0.0.10:44322 timer(timewait,46sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54932 10.0.0.10:44322 timer(timewait,24sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54832 10.0.0.10:44322 timer(timewait,6.800ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54880 10.0.0.10:44322 timer(timewait,16sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54854 10.0.0.10:44322 timer(timewait,11sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55080 10.0.0.10:44322 timer(timewait,52sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55082 10.0.0.10:44322 timer(timewait,51sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54856 10.0.0.10:44322 timer(timewait,10sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54994 10.0.0.10:44322 timer(timewait,33sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55068 10.0.0.10:44322 timer(timewait,51sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55014 10.0.0.10:44322 timer(timewait,40sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55016 10.0.0.10:44322 timer(timewait,39sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54814 10.0.0.10:44322 timer(timewait,3.380ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54820 10.0.0.10:44322 timer(timewait,4.339ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54886 10.0.0.10:44322 timer(timewait,17sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54890 10.0.0.10:44322 timer(timewait,16sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55058 10.0.0.10:44322 timer(timewait,47sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:54952 10.0.0.10:44322 timer(timewait,25sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp ESTAB 0 0 10.0.0.10:55104 10.0.0.10:44322 timer(keepalive,26sec,0) uid:378 inode:165606577 sk:5 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb6291456,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:8.43/11.76 ato:40 mss:32768 cwnd:10 pmtu:65535 ssthresh:0 bytes_sent:8252 bytes_acked:8253 bytes_received:3480217 segs_out:178 segs_in:356 send 310965599bps lastsnd:756 lastrcv:637 lastack:639 pacing_rate 621875864bps delivery_rate 20164923072bps rcv_space:469929
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55116 10.0.0.10:44322 timer(timewait,58sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55112 10.0.0.10:44322 timer(timewait,59sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55114 10.0.0.10:44322 timer(timewait,58sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55102 10.0.0.10:44322 timer(timewait,56sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55118 10.0.0.10:44322 timer(timewait,59sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55084 10.0.0.10:44322 timer(timewait,52sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55086 10.0.0.10:44322 timer(timewait,53sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55088 10.0.0.10:44322 timer(timewait,55sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55090 10.0.0.10:44322 timer(timewait,53sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55092 10.0.0.10:44322 timer(timewait,53sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55094 10.0.0.10:44322 timer(timewait,54sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55096 10.0.0.10:44322 timer(timewait,54sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55100 10.0.0.10:44322 timer(timewait,58sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55102 10.0.0.10:44322 timer(timewait,56sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55106 10.0.0.10:44322 timer(timewait,56sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55108 10.0.0.10:44322 timer(timewait,57sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55110 10.0.0.10:44322 timer(timewait,57sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55106 10.0.0.10:44322 timer(timewait,56sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp ESTAB 0 0 10.0.0.10:55122 10.0.0.10:44322 timer(keepalive,29sec,0) uid:378 inode:165608516 sk:5 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb3013437,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.236/0.425 ato:40 mss:32768 cwnd:10 pmtu:65535 ssthresh:0 bytes_sent:37 bytes_acked:37 bytes_received:15171 segs_out:47 segs_in:66 send 11107796610bps lastsnd:611 lastrcv:609 lastack:609 pacing_rate 22145216472bps delivery_rate 32768000000bps rcv_space:81920
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55112 10.0.0.10:44322 timer(timewait,59sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55114 10.0.0.10:44322 timer(timewait,58sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55116 10.0.0.10:44322 timer(timewait,58sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55118 10.0.0.10:44322 timer(timewait,59sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+udp ESTAB 0 0 10.0.0.10:35754 142.251.10.189:443 uid:1024 inode:165318004 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+udp ESTAB 0 0 10.0.0.10:35983 142.250.70.142:443 uid:1024 inode:165466809 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+udp ESTAB 0 0 10.0.0.10:36244 142.250.70.138:443 uid:1024 inode:165293889 sk:f231 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+udp ESTAB 0 0 10.0.0.10:37128 142.250.70.138:443 uid:1024 inode:165585835 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+udp ESTAB 0 0 10.0.0.10:44639 142.250.70.131:443 uid:1024 inode:165411837 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+udp ESTAB 0 0 10.0.0.10:49113 142.250.70.131:443 uid:1024 inode:165606514 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+udp ESTAB 0 0 10.0.0.10:49123 142.250.4.189:443 uid:1024 inode:165373416 sk:ef33 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
|
|
pcp-ss output, at archive end
|
|
# Time: 2021-06-18 13:34:14.168998 Filter: state connected
|
|
Netid State Recv-Q Send-Q Local Address:Port Peer Address:Port Process
|
|
-tcp ESTAB 0 0 [::ffff:127.0.0.1]:3000 [::ffff:127.0.0.1]:49798 timer(keepalive,5.265ms,0) uid:378 inode:164821548 sk:17e9 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb2358342,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.033/0.018 ato:40 mss:32768 cwnd:10 pmtu:65535 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:65664
|
|
+tcp ESTAB 0 0 [::1]:3000 [::1]:51232 timer(keepalive,8.488ms,0) uid:378 inode:165581925 sk:5 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.014/0.011 ato:40 mss:65464 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:65464
|
|
+tcp ESTAB 0 0 [::1]:51228 [::1]:3000 timer(keepalive,3.596ms,0) uid:1024 inode:165582929 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb4978000,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.422/0.763 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:98304
|
|
+tcp ESTAB 0 0 [::1]:51232 [::1]:3000 timer(keepalive,3.596ms,0) uid:1024 inode:165552950 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb4978000,t0,tb2626560,f0,w0,o0,bl0,d3) ts sack cubic wscale:7,7 rtt:8.219/14.257 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:163840
|
|
+tcp ESTAB 0 0 [::1]:51236 [::1]:3000 timer(keepalive,514ms,0) uid:1024 inode:165575931 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb4585000,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:5.713/10.966 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:98304
|
|
+tcp ESTAB 0 0 [::1]:51238 [::1]:3000 timer(keepalive,11sec,0) uid:1024 inode:165581951 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d1) ts sack cubic wscale:7,7 rtt:4.802/9.371 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:65476
|
|
+tcp ESTAB 0 0 [::1]:51240 [::1]:3000 timer(keepalive,15sec,0) uid:1024 inode:165583008 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.783/1.488 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:65476
|
|
tcp ESTAB 0 0 127.0.0.1:6379 127.0.0.1:34526 timer(keepalive,299ms,0) uid:379 inode:164789635 sk:17e9 cgroup:/system.slice/redis.service <-> skmem(r0,rb6291456,t0,tb4194304,f0,w0,o0,bl0,d226) ts sack cubic wscale:7,7 rtt:5.268/10.344 ato:40 mss:65483 cwnd:51 pmtu:65535 ssthresh:27 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:1379162
|
|
-tcp ESTAB 0 0 10.40.192.134:47862 10.0.15.20:6667 timer(keepalive,2min48sec,0) uid:1024 inode:143267906 sk:39 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb181972,t0,tb46080,f0,w0,o0,bl0,d56) ts sack cubic wscale:8,7 rtt:456.275/44.255 ato:40 mss:1308 cwnd:2 pmtu:1360 ssthresh:2 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:19026
|
|
-tcp ESTAB 0 0 10.0.0.10:58310 52.88.142.33:443 timer(keepalive,1min53sec,0) uid:1024 inode:143231822 sk:39 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d4) ts sack cubic wscale:8,7 rtt:211.152/22.951 ato:40 mss:1448 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
-tcp ESTAB 0 0 10.0.0.10:44852 202.58.9.228:443 timer(keepalive,3.777ms,0) uid:1024 inode:143675936 sk:39 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d1770) sack cubic wscale:9,7 rtt:98.707/11.472 ato:40 mss:1460 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14600
|
|
-tcp ESTAB 0 0 10.0.0.10:37330 217.182.79.119:6667 timer(keepalive,3min20sec,0) uid:1024 inode:147037462 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2467768,t0,tb87040,f0,w0,o0,bl0,d15) ts sack cubic wscale:7,7 rtt:381.926/27.664 ato:40 mss:1448 cwnd:2 pmtu:1500 ssthresh:2 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:64371
|
|
-tcp ESTAB 0 0 192.168.122.1:53100 192.168.122.54:22 timer(keepalive,1min43sec,0) uid:1024 inode:152890200 sk:3a cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d11) ts sack cubic wscale:7,7 rtt:6.415/11.95 ato:40 mss:1448 cwnd:20 pmtu:1500 ssthresh:20 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
-tcp ESTAB 0 0 10.0.0.10:52874 199.127.207.181:443 timer(keepalive,28sec,0) uid:1024 inode:154981923 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d433) sack cubic wscale:9,7 rtt:231.99/42.333 ato:40 mss:1460 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14600
|
|
tcp ESTAB 0 0 10.0.0.10:33256 10.0.0.6:8009 timer(keepalive,19sec,0) uid:1024 inode:161634072 sk:3a cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2554304,t0,tb87040,f0,w0,o0,bl0,d1) ts sack cubic wscale:6,7 rtt:7.326/1.581 ato:40 mss:1448 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:65491
|
|
-tcp ESTAB 0 0 10.0.0.10:45164 173.194.202.125:443 timer(keepalive,28sec,0) uid:1024 inode:161888302 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f4096,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:228.663/49.231 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:34914 142.250.70.234:443 uid:1024 inode:165418039 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f4096,w0,o0,bl0,d11) ts sack cubic wscale:8,7 rtt:10.278/0.678 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:34916 142.250.70.234:443 uid:1024 inode:165418040 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d9) ts sack cubic wscale:8,7 rtt:10.081/1.167 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
tcp ESTAB 0 0 10.0.0.10:37256 157.240.8.18:443 timer(keepalive,2min13sec,0) uid:1024 inode:163353710 sk:262 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb1623296,t0,tb46080,f4096,w0,o0,bl0,d37) ts sack cubic wscale:8,7 rtt:21.667/1.031 ato:40 mss:1380 cwnd:22 pmtu:1500 ssthresh:22 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:87463
|
|
-tcp ESTAB 0 0 10.0.0.10:40226 13.54.123.156:443 timer(keepalive,28sec,0) uid:1024 inode:163971400 sk:3b cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2673664,t0,tb46080,f0,w0,o0,bl0,d0) ts sack cubic wscale:12,7 rtt:23.063/0.882 ato:46 mss:1288 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:67012
|
|
-tcp ESTAB 0 0 10.0.0.10:40232 13.54.123.156:443 timer(keepalive,15sec,0) uid:1024 inode:164254779 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2730360,t0,tb46080,f0,w0,o0,bl0,d0) ts sack cubic wscale:12,7 rtt:21.7/0.326 ato:42 mss:1288 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:67755
|
|
+tcp ESTAB 0 0 10.0.0.10:37330 217.182.79.119:6667 timer(keepalive,3min20sec,0) uid:1024 inode:147037462 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2467768,t0,tb87040,f0,w0,o0,bl0,d15) ts sack cubic wscale:7,7 rtt:381.926/27.664 ato:40 mss:1448 cwnd:2 pmtu:1500 ssthresh:2 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:64371
|
|
tcp ESTAB 0 0 10.0.0.10:39906 172.217.194.188:5228 timer(keepalive,15sec,0) uid:1024 inode:164287111 sk:eacd cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:94.893/7.701 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
-tcp ESTAB 0 0 127.0.0.1:34526 127.0.0.1:6379 timer(keepalive,646ms,0) uid:386 inode:164791620 sk:ef22 cgroup:/system.slice/pmproxy.service <-> skmem(r0,rb4978722,t0,tb4194304,f0,w0,o0,bl0,d397) ts sack cubic wscale:7,7 rtt:0.217/0.167 ato:40 mss:65483 cwnd:36 pmtu:65535 ssthresh:16 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:245440
|
|
-tcp ESTAB 0 0 127.0.0.1:49798 127.0.0.1:3000 uid:0 inode:164815425 sk:17e9 cgroup:/system.slice/pmcd.service <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:6.023/4.348 ato:40 mss:65483 cwnd:10 pmtu:65535 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:65495
|
|
-udp ESTAB 0 0 10.0.0.10:36244 142.250.70.138:443 uid:1024 inode:165293889 sk:f231 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-udp ESTAB 0 0 10.0.0.10:35754 142.251.10.189:443 uid:1024 inode:165318004 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-udp ESTAB 0 0 10.0.0.10:49123 142.250.4.189:443 uid:1024 inode:165373416 sk:ef33 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp ESTAB 0 0 10.0.0.10:40218 142.250.70.142:443 uid:1024 inode:165413160 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d16) ts sack cubic wscale:8,7 rtt:10.194/0.696 ato:40 mss:1418 cwnd:3 pmtu:1500 ssthresh:2 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:40226 13.54.123.156:443 timer(keepalive,28sec,0) uid:1024 inode:163971400 sk:3b cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2673664,t0,tb46080,f0,w0,o0,bl0,d0) ts sack cubic wscale:12,7 rtt:23.063/0.882 ato:46 mss:1288 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:67012
|
|
+tcp ESTAB 0 0 10.0.0.10:40232 13.54.123.156:443 timer(keepalive,15sec,0) uid:1024 inode:164254779 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb2730360,t0,tb46080,f0,w0,o0,bl0,d0) ts sack cubic wscale:12,7 rtt:21.7/0.326 ato:42 mss:1288 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:67755
|
|
tcp ESTAB 0 0 10.0.0.10:43990 142.250.70.131:443 uid:1024 inode:165420073 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:9.826/0.515 ato:40 mss:1418 cwnd:4 pmtu:1500 ssthresh:4 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:44322 10.0.0.10:55342 timer(keepalive,44sec,0) uid:386 inode:165594871 sk:5 cgroup:/system.slice/pmproxy.service <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.05/0.056 ato:40 mss:65483 cwnd:20 pmtu:65535 ssthresh:20 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:65483
|
|
tcp ESTAB 0 0 10.0.0.10:44388 142.250.4.189:443 uid:1024 inode:165419510 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f4096,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:96.696/2.871 ato:40 mss:1418 cwnd:7 pmtu:1500 ssthresh:7 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
-tcp ESTAB 0 0 10.0.0.10:34914 142.250.70.234:443 uid:1024 inode:165418039 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f4096,w0,o0,bl0,d11) ts sack cubic wscale:8,7 rtt:10.278/0.678 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
-tcp ESTAB 0 0 10.0.0.10:34916 142.250.70.234:443 uid:1024 inode:165418040 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d9) ts sack cubic wscale:8,7 rtt:10.081/1.167 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:49594 142.250.70.165:443 timer(timewait,41sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp ESTAB 0 0 10.0.0.10:57232 157.240.8.35:443 uid:1024 inode:165408121 sk:1781 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb46080,f8192,w0,o0,bl0,d4) ts sack cubic wscale:8,7 rtt:23.193/1.8 ato:40 mss:1380 cwnd:2 pmtu:1500 ssthresh:2 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
-udp ESTAB 0 0 10.0.0.10:44639 142.250.70.131:443 uid:1024 inode:165411837 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:44852 202.58.9.228:443 timer(keepalive,3.777ms,0) uid:1024 inode:143675936 sk:39 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d1770) sack cubic wscale:9,7 rtt:98.707/11.472 ato:40 mss:1460 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14600
|
|
+tcp ESTAB 0 0 10.0.0.10:45164 173.194.202.125:443 timer(keepalive,28sec,0) uid:1024 inode:161888302 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f4096,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:228.663/49.231 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:46306 3.233.54.64:443 timer(keepalive,28sec,0) uid:1024 inode:165592357 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:12,7 rtt:246.45/50.358 ato:40 mss:1448 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
tcp ESTAB 0 0 10.0.0.10:46392 142.251.10.189:443 uid:1024 inode:165466671 sk:f23b cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f4096,w0,o0,bl0,d3) ts sack cubic wscale:8,7 rtt:111.69/24.888 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
-udp ESTAB 0 0 10.0.0.10:35983 142.250.70.142:443 uid:1024 inode:165466809 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:49614 142.250.70.165:443 uid:1024 inode:165581235 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:10.2/1.047 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:52874 199.127.207.181:443 timer(keepalive,28sec,0) uid:1024 inode:154981923 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d433) sack cubic wscale:9,7 rtt:231.99/42.333 ato:40 mss:1460 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14600
|
|
+tcp ESTAB 0 0 10.0.0.10:55332 10.0.0.10:44322 timer(keepalive,28sec,0) uid:378 inode:165581545 sk:5 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb4454646,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:3.728/6.7 ato:40 mss:32768 cwnd:10 pmtu:65535 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:105770
|
|
+tcp ESTAB 0 0 10.0.0.10:55342 10.0.0.10:44322 timer(keepalive,29sec,0) uid:378 inode:165616642 sk:5 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb2882418,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.041/0.024 ato:40 mss:32768 cwnd:10 pmtu:65535 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:73728
|
|
tcp ESTAB 0 0 10.0.0.10:55532 140.82.114.26:443 timer(keepalive,29sec,0) uid:1024 inode:165515920 sk:17eb cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:10,7 rtt:248.861/32.644 ato:40 mss:1424 cwnd:20 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
tcp ESTAB 0 0 10.0.0.10:55534 140.82.114.26:443 timer(keepalive,2.767ms,0) uid:1024 inode:165521771 sk:ef38 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:10,7 rtt:283.095/41.806 ato:40 mss:1424 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55304 10.0.0.10:44322 timer(timewait,53sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55306 10.0.0.10:44322 timer(timewait,53sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55308 10.0.0.10:44322 timer(timewait,58sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp ESTAB 0 0 10.0.0.10:44322 10.0.0.10:55342 timer(keepalive,44sec,0) uid:386 inode:165594871 sk:5 cgroup:/system.slice/pmproxy.service <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.05/0.056 ato:40 mss:65483 cwnd:20 pmtu:65535 ssthresh:20 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:65483
|
|
tcp ESTAB 0 0 10.0.0.10:55694 34.120.177.193:443 timer(keepalive,7.793ms,0) uid:1024 inode:165577700 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d1) ts sack cubic wscale:8,7 rtt:13.091/4.789 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
-tcp ESTAB 0 0 [::1]:3000 [::1]:51232 timer(keepalive,8.488ms,0) uid:378 inode:165581925 sk:5 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.014/0.011 ato:40 mss:65464 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:65464
|
|
-tcp ESTAB 0 0 [::1]:51238 [::1]:3000 timer(keepalive,11sec,0) uid:1024 inode:165581951 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d1) ts sack cubic wscale:7,7 rtt:4.802/9.371 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:65476
|
|
-tcp ESTAB 0 0 [::1]:51240 [::1]:3000 timer(keepalive,15sec,0) uid:1024 inode:165583008 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.783/1.488 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:65476
|
|
-tcp ESTAB 0 0 [::1]:51236 [::1]:3000 timer(keepalive,514ms,0) uid:1024 inode:165575931 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb4585000,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:5.713/10.966 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:98304
|
|
-tcp ESTAB 0 0 [::1]:51228 [::1]:3000 timer(keepalive,3.596ms,0) uid:1024 inode:165582929 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb4978000,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.422/0.763 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:98304
|
|
-tcp ESTAB 0 0 [::1]:51232 [::1]:3000 timer(keepalive,3.596ms,0) uid:1024 inode:165552950 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb4978000,t0,tb2626560,f0,w0,o0,bl0,d3) ts sack cubic wscale:7,7 rtt:8.219/14.257 ato:40 mss:32768 cwnd:10 pmtu:65536 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:163840
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:57958 142.250.70.238:443 timer(timewait,54sec,0) uid:0 inode:0 sk:183a cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp ESTAB 0 0 10.0.0.10:46306 3.233.54.64:443 timer(keepalive,28sec,0) uid:1024 inode:165592357 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:12,7 rtt:246.45/50.358 ato:40 mss:1448 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
-tcp ESTAB 0 0 10.0.0.10:49614 142.250.70.165:443 uid:1024 inode:165581235 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0) ts sack cubic wscale:8,7 rtt:10.2/1.047 ato:40 mss:1418 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55048 10.0.0.10:44322 timer(timewait,8.579ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55060 10.0.0.10:44322 timer(timewait,8.449ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55094 10.0.0.10:44322 timer(timewait,14sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55088 10.0.0.10:44322 timer(timewait,15sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55064 10.0.0.10:44322 timer(timewait,8.577ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55092 10.0.0.10:44322 timer(timewait,13sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55036 10.0.0.10:44322 timer(timewait,3.608ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55038 10.0.0.10:44322 timer(timewait,5.580ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55066 10.0.0.10:44322 timer(timewait,9.605ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55080 10.0.0.10:44322 timer(timewait,12sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55034 10.0.0.10:44322 timer(timewait,4.636ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55050 10.0.0.10:44322 timer(timewait,6.570ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55030 10.0.0.10:44322 timer(timewait,1.618ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55024 10.0.0.10:44322 timer(timewait,1.623ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp ESTAB 0 0 10.0.0.10:57232 157.240.8.35:443 uid:1024 inode:165408121 sk:1781 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb46080,f8192,w0,o0,bl0,d4) ts sack cubic wscale:8,7 rtt:23.193/1.8 ato:40 mss:1380 cwnd:2 pmtu:1500 ssthresh:2 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp ESTAB 0 0 10.0.0.10:58310 52.88.142.33:443 timer(keepalive,1min53sec,0) uid:1024 inode:143231822 sk:39 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d4) ts sack cubic wscale:8,7 rtt:211.152/22.951 ato:40 mss:1448 cwnd:10 pmtu:1500 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp ESTAB 0 0 127.0.0.1:34526 127.0.0.1:6379 timer(keepalive,646ms,0) uid:386 inode:164791620 sk:ef22 cgroup:/system.slice/pmproxy.service <-> skmem(r0,rb4978722,t0,tb4194304,f0,w0,o0,bl0,d397) ts sack cubic wscale:7,7 rtt:0.217/0.167 ato:40 mss:65483 cwnd:36 pmtu:65535 ssthresh:16 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:245440
|
|
+tcp ESTAB 0 0 127.0.0.1:49798 127.0.0.1:3000 uid:0 inode:164815425 sk:17e9 cgroup:/system.slice/pmcd.service <-> skmem(r0,rb131072,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:6.023/4.348 ato:40 mss:65483 cwnd:10 pmtu:65535 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:65495
|
|
+tcp ESTAB 0 0 10.40.192.134:47862 10.0.15.20:6667 timer(keepalive,2min48sec,0) uid:1024 inode:143267906 sk:39 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb181972,t0,tb46080,f0,w0,o0,bl0,d56) ts sack cubic wscale:8,7 rtt:456.275/44.255 ato:40 mss:1308 cwnd:2 pmtu:1360 ssthresh:2 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:19026
|
|
+tcp ESTAB 0 0 192.168.122.1:53100 192.168.122.54:22 timer(keepalive,1min43sec,0) uid:1024 inode:152890200 sk:3a cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d11) ts sack cubic wscale:7,7 rtt:6.415/11.95 ato:40 mss:1448 cwnd:20 pmtu:1500 ssthresh:20 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:14480
|
|
+tcp ESTAB 0 0 [::ffff:127.0.0.1]:3000 [::ffff:127.0.0.1]:49798 timer(keepalive,5.265ms,0) uid:378 inode:164821548 sk:17e9 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb2358342,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.033/0.018 ato:40 mss:32768 cwnd:10 pmtu:65535 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:65664
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:49594 142.250.70.165:443 timer(timewait,41sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55014 10.0.0.10:44322 timer(timewait,581ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55020 10.0.0.10:44322 timer(timewait,3.571ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55046 10.0.0.10:44322 timer(timewait,5.577ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55084 10.0.0.10:44322 timer(timewait,12sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55056 10.0.0.10:44322 timer(timewait,7.623ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55032 10.0.0.10:44322 timer(timewait,2.607ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55022 10.0.0.10:44322 timer(timewait,586ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55090 10.0.0.10:44322 timer(timewait,13sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55070 10.0.0.10:44322 timer(timewait,9.625ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55096 10.0.0.10:44322 timer(timewait,14sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55074 10.0.0.10:44322 timer(timewait,16sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55024 10.0.0.10:44322 timer(timewait,1.623ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55026 10.0.0.10:44322 timer(timewait,1.601ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55028 10.0.0.10:44322 timer(timewait,2.601ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55030 10.0.0.10:44322 timer(timewait,1.618ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55032 10.0.0.10:44322 timer(timewait,2.607ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55034 10.0.0.10:44322 timer(timewait,4.636ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55036 10.0.0.10:44322 timer(timewait,3.608ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55038 10.0.0.10:44322 timer(timewait,5.580ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55040 10.0.0.10:44322 timer(timewait,4.635ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55042 10.0.0.10:44322 timer(timewait,6.447ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55044 10.0.0.10:44322 timer(timewait,10sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55026 10.0.0.10:44322 timer(timewait,1.601ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55046 10.0.0.10:44322 timer(timewait,5.577ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55048 10.0.0.10:44322 timer(timewait,8.579ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55050 10.0.0.10:44322 timer(timewait,6.570ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55052 10.0.0.10:44322 timer(timewait,6.568ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55054 10.0.0.10:44322 timer(timewait,7.474ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55042 10.0.0.10:44322 timer(timewait,6.447ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55056 10.0.0.10:44322 timer(timewait,7.623ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55058 10.0.0.10:44322 timer(timewait,7.617ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55060 10.0.0.10:44322 timer(timewait,8.449ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55062 10.0.0.10:44322 timer(timewait,9.618ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55040 10.0.0.10:44322 timer(timewait,4.635ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55086 10.0.0.10:44322 timer(timewait,13sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55064 10.0.0.10:44322 timer(timewait,8.577ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55066 10.0.0.10:44322 timer(timewait,9.605ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55068 10.0.0.10:44322 timer(timewait,11sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55070 10.0.0.10:44322 timer(timewait,9.625ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55072 10.0.0.10:44322 timer(timewait,10sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55074 10.0.0.10:44322 timer(timewait,16sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55078 10.0.0.10:44322 timer(timewait,11sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55052 10.0.0.10:44322 timer(timewait,6.568ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55080 10.0.0.10:44322 timer(timewait,12sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55082 10.0.0.10:44322 timer(timewait,11sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55068 10.0.0.10:44322 timer(timewait,11sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55014 10.0.0.10:44322 timer(timewait,581ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55058 10.0.0.10:44322 timer(timewait,7.617ms,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55084 10.0.0.10:44322 timer(timewait,12sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55086 10.0.0.10:44322 timer(timewait,13sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55088 10.0.0.10:44322 timer(timewait,15sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55090 10.0.0.10:44322 timer(timewait,13sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55092 10.0.0.10:44322 timer(timewait,13sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55094 10.0.0.10:44322 timer(timewait,14sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55096 10.0.0.10:44322 timer(timewait,14sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55100 10.0.0.10:44322 timer(timewait,18sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55102 10.0.0.10:44322 timer(timewait,16sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55104 10.0.0.10:44322 timer(timewait,25sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55116 10.0.0.10:44322 timer(timewait,18sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55106 10.0.0.10:44322 timer(timewait,16sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55108 10.0.0.10:44322 timer(timewait,17sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55110 10.0.0.10:44322 timer(timewait,17sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55112 10.0.0.10:44322 timer(timewait,19sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55114 10.0.0.10:44322 timer(timewait,18sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55102 10.0.0.10:44322 timer(timewait,16sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55116 10.0.0.10:44322 timer(timewait,18sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55118 10.0.0.10:44322 timer(timewait,19sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55100 10.0.0.10:44322 timer(timewait,18sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55108 10.0.0.10:44322 timer(timewait,17sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55110 10.0.0.10:44322 timer(timewait,17sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55106 10.0.0.10:44322 timer(timewait,16sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55122 10.0.0.10:44322 timer(timewait,20sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55150 10.0.0.10:44322 timer(timewait,24sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55130 10.0.0.10:44322 timer(timewait,20sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55134 10.0.0.10:44322 timer(timewait,21sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55146 10.0.0.10:44322 timer(timewait,24sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55144 10.0.0.10:44322 timer(timewait,23sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55148 10.0.0.10:44322 timer(timewait,31sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55124 10.0.0.10:44322 timer(timewait,20sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55126 10.0.0.10:44322 timer(timewait,22sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55130 10.0.0.10:44322 timer(timewait,20sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55132 10.0.0.10:44322 timer(timewait,21sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55124 10.0.0.10:44322 timer(timewait,20sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55140 10.0.0.10:44322 timer(timewait,24sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55138 10.0.0.10:44322 timer(timewait,22sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55134 10.0.0.10:44322 timer(timewait,21sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55136 10.0.0.10:44322 timer(timewait,22sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55138 10.0.0.10:44322 timer(timewait,22sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55140 10.0.0.10:44322 timer(timewait,24sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55142 10.0.0.10:44322 timer(timewait,23sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55144 10.0.0.10:44322 timer(timewait,23sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55146 10.0.0.10:44322 timer(timewait,24sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55148 10.0.0.10:44322 timer(timewait,31sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55150 10.0.0.10:44322 timer(timewait,24sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55152 10.0.0.10:44322 timer(timewait,27sec,0) uid:0 inode:0 sk:17ed cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55154 10.0.0.10:44322 timer(timewait,25sec,0) uid:0 inode:0 sk:ef49 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55162 10.0.0.10:44322 timer(timewait,29sec,0) uid:0 inode:0 sk:ef4a cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55156 10.0.0.10:44322 timer(timewait,26sec,0) uid:0 inode:0 sk:ef4b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55158 10.0.0.10:44322 timer(timewait,26sec,0) uid:0 inode:0 sk:ef4e cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55160 10.0.0.10:44322 timer(timewait,26sec,0) uid:0 inode:0 sk:ef4d cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55162 10.0.0.10:44322 timer(timewait,29sec,0) uid:0 inode:0 sk:ef4a cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55164 10.0.0.10:44322 timer(timewait,27sec,0) uid:0 inode:0 sk:17ed cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55166 10.0.0.10:44322 timer(timewait,28sec,0) uid:0 inode:0 sk:ef50 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55168 10.0.0.10:44322 timer(timewait,28sec,0) uid:0 inode:0 sk:ef4c cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55172 10.0.0.10:44322 timer(timewait,29sec,0) uid:0 inode:0 sk:17ed cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55174 10.0.0.10:44322 timer(timewait,32sec,0) uid:0 inode:0 sk:17ed cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55176 10.0.0.10:44322 timer(timewait,29sec,0) uid:0 inode:0 sk:17ed cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55172 10.0.0.10:44322 timer(timewait,29sec,0) uid:0 inode:0 sk:17ed cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55152 10.0.0.10:44322 timer(timewait,27sec,0) uid:0 inode:0 sk:17ed cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55168 10.0.0.10:44322 timer(timewait,28sec,0) uid:0 inode:0 sk:ef4c cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55160 10.0.0.10:44322 timer(timewait,26sec,0) uid:0 inode:0 sk:ef4d cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55158 10.0.0.10:44322 timer(timewait,26sec,0) uid:0 inode:0 sk:ef4e cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55166 10.0.0.10:44322 timer(timewait,28sec,0) uid:0 inode:0 sk:ef50 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55200 10.0.0.10:44322 timer(timewait,33sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55178 10.0.0.10:44322 timer(timewait,30sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55180 10.0.0.10:44322 timer(timewait,30sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55182 10.0.0.10:44322 timer(timewait,31sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55184 10.0.0.10:44322 timer(timewait,40sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55186 10.0.0.10:44322 timer(timewait,31sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55188 10.0.0.10:44322 timer(timewait,32sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55190 10.0.0.10:44322 timer(timewait,33sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55184 10.0.0.10:44322 timer(timewait,40sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55206 10.0.0.10:44322 timer(timewait,34sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55182 10.0.0.10:44322 timer(timewait,31sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55194 10.0.0.10:44322 timer(timewait,33sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55196 10.0.0.10:44322 timer(timewait,35sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55200 10.0.0.10:44322 timer(timewait,33sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55204 10.0.0.10:44322 timer(timewait,34sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55206 10.0.0.10:44322 timer(timewait,34sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55210 10.0.0.10:44322 timer(timewait,34sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55188 10.0.0.10:44322 timer(timewait,32sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55196 10.0.0.10:44322 timer(timewait,35sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55180 10.0.0.10:44322 timer(timewait,30sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55232 10.0.0.10:44322 timer(timewait,39sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55212 10.0.0.10:44322 timer(timewait,35sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55214 10.0.0.10:44322 timer(timewait,36sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55216 10.0.0.10:44322 timer(timewait,37sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55218 10.0.0.10:44322 timer(timewait,36sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55220 10.0.0.10:44322 timer(timewait,37sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55222 10.0.0.10:44322 timer(timewait,38sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55224 10.0.0.10:44322 timer(timewait,37sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55226 10.0.0.10:44322 timer(timewait,38sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55228 10.0.0.10:44322 timer(timewait,44sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55220 10.0.0.10:44322 timer(timewait,37sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55214 10.0.0.10:44322 timer(timewait,36sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55230 10.0.0.10:44322 timer(timewait,39sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55212 10.0.0.10:44322 timer(timewait,35sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55260 10.0.0.10:44322 timer(timewait,46sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55232 10.0.0.10:44322 timer(timewait,39sec,0) uid:0 inode:0 sk:3b cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55234 10.0.0.10:44322 timer(timewait,40sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55236 10.0.0.10:44322 timer(timewait,41sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55238 10.0.0.10:44322 timer(timewait,41sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55240 10.0.0.10:44322 timer(timewait,42sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55248 10.0.0.10:44322 timer(timewait,42sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55242 10.0.0.10:44322 timer(timewait,41sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55244 10.0.0.10:44322 timer(timewait,42sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55234 10.0.0.10:44322 timer(timewait,40sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55248 10.0.0.10:44322 timer(timewait,42sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55250 10.0.0.10:44322 timer(timewait,43sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55262 10.0.0.10:44322 timer(timewait,45sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55242 10.0.0.10:44322 timer(timewait,41sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55256 10.0.0.10:44322 timer(timewait,43sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55236 10.0.0.10:44322 timer(timewait,41sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55254 10.0.0.10:44322 timer(timewait,44sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55286 10.0.0.10:44322 timer(timewait,48sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55272 10.0.0.10:44322 timer(timewait,48sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55256 10.0.0.10:44322 timer(timewait,43sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55260 10.0.0.10:44322 timer(timewait,46sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55262 10.0.0.10:44322 timer(timewait,45sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55266 10.0.0.10:44322 timer(timewait,45sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55268 10.0.0.10:44322 timer(timewait,47sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55288 10.0.0.10:44322 timer(timewait,49sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55270 10.0.0.10:44322 timer(timewait,46sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55272 10.0.0.10:44322 timer(timewait,48sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55274 10.0.0.10:44322 timer(timewait,47sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55276 10.0.0.10:44322 timer(timewait,47sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55266 10.0.0.10:44322 timer(timewait,45sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55278 10.0.0.10:44322 timer(timewait,49sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55282 10.0.0.10:44322 timer(timewait,48sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55270 10.0.0.10:44322 timer(timewait,46sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55280 10.0.0.10:44322 timer(timewait,47sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55282 10.0.0.10:44322 timer(timewait,48sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55284 10.0.0.10:44322 timer(timewait,50sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55286 10.0.0.10:44322 timer(timewait,48sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55288 10.0.0.10:44322 timer(timewait,49sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55292 10.0.0.10:44322 timer(timewait,51sec,0) uid:0 inode:0 sk:259 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55294 10.0.0.10:44322 timer(timewait,50sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55296 10.0.0.10:44322 timer(timewait,52sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55298 10.0.0.10:44322 timer(timewait,51sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55300 10.0.0.10:44322 timer(timewait,54sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55302 10.0.0.10:44322 timer(timewait,52sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55304 10.0.0.10:44322 timer(timewait,53sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55306 10.0.0.10:44322 timer(timewait,53sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55308 10.0.0.10:44322 timer(timewait,58sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55310 10.0.0.10:44322 timer(timewait,55sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55296 10.0.0.10:44322 timer(timewait,52sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55294 10.0.0.10:44322 timer(timewait,50sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55312 10.0.0.10:44322 timer(timewait,54sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55334 10.0.0.10:44322 timer(timewait,58sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55316 10.0.0.10:44322 timer(timewait,55sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55318 10.0.0.10:44322 timer(timewait,56sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55320 10.0.0.10:44322 timer(timewait,55sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55322 10.0.0.10:44322 timer(timewait,56sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55326 10.0.0.10:44322 timer(timewait,57sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55328 10.0.0.10:44322 timer(timewait,57sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55330 10.0.0.10:44322 timer(timewait,59sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55322 10.0.0.10:44322 timer(timewait,56sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55340 10.0.0.10:44322 timer(timewait,59sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55318 10.0.0.10:44322 timer(timewait,56sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55334 10.0.0.10:44322 timer(timewait,58sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
tcp TIME-WAIT 0 0 10.0.0.10:55338 10.0.0.10:44322 timer(timewait,58sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55328 10.0.0.10:44322 timer(timewait,57sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp ESTAB 0 0 10.0.0.10:55342 10.0.0.10:44322 timer(keepalive,29sec,0) uid:378 inode:165616642 sk:5 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb2882418,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:0.041/0.024 ato:40 mss:32768 cwnd:10 pmtu:65535 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:73728
|
|
-tcp TIME-WAIT 0 0 10.0.0.10:55316 10.0.0.10:44322 timer(timewait,55sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
-tcp ESTAB 0 0 10.0.0.10:55332 10.0.0.10:44322 timer(keepalive,28sec,0) uid:378 inode:165581545 sk:5 cgroup:/system.slice/grafana-server.service <-> skmem(r0,rb4454646,t0,tb2626560,f0,w0,o0,bl0,d0) ts sack cubic wscale:7,7 rtt:3.728/6.7 ato:40 mss:32768 cwnd:10 pmtu:65535 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:105770
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:55340 10.0.0.10:44322 timer(timewait,59sec,0) uid:0 inode:0 sk:5 cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+tcp TIME-WAIT 0 0 10.0.0.10:57958 142.250.70.238:443 timer(timewait,54sec,0) uid:0 inode:0 sk:183a cgroup: <-> wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+udp ESTAB 0 0 10.0.0.10:35754 142.251.10.189:443 uid:1024 inode:165318004 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+udp ESTAB 0 0 10.0.0.10:35983 142.250.70.142:443 uid:1024 inode:165466809 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+udp ESTAB 0 0 10.0.0.10:36244 142.250.70.138:443 uid:1024 inode:165293889 sk:f231 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+udp ESTAB 0 0 10.0.0.10:44639 142.250.70.131:443 uid:1024 inode:165411837 sk:5 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
+udp ESTAB 0 0 10.0.0.10:49123 142.250.4.189:443 uid:1024 inode:165373416 sk:ef33 cgroup:/user.slice/user-1024.slice/session-2.scope <-> skmem(r0,rb425984,t0,tb58080,f4096,w0,o0,bl0,d0) wscale: rtt: ato:0 mss:0 cwnd:0 pmtu:0 ssthresh:0 bytes_sent:0 bytes_acked:0 bytes_received:0 segs_out:0 segs_in:0 send 0bps lastsnd:0 lastrcv:0 lastack:0 pacing_rate 0bps delivery_rate 0bps rcv_space:0
|
|
|
|
check error handling when metrics not present. Note error is expected
|
|
Error: metrics for 'network.persocket' not found in archive archives/pcp-mpstat
|
|
|
|
commit 9579b8cf3639e24edbac1e41ba4a1c3683e48df6
|
|
Author: Mark Goodwin <mgoodwin@redhat.com>
|
|
Date: Tue Jul 6 12:39:43 2021 +1000
|
|
|
|
pcp-ss: dont try to delete the pcp options context
|
|
|
|
The pmapi context returned by pmapi.pmContext.fromOptions will
|
|
be destroyed when the enclosing pmContext object is destroyed
|
|
(see comment in pmapi.py for pmContext.pmDestroyContext).
|
|
|
|
Ken reported this was causing qa/1633 failures on Ubuntu 16.04.
|
|
|
|
diff --git a/src/pcp/ss/pcp-ss.py b/src/pcp/ss/pcp-ss.py
|
|
index 9b225555c..58c2680fb 100755
|
|
--- a/src/pcp/ss/pcp-ss.py
|
|
+++ b/src/pcp/ss/pcp-ss.py
|
|
@@ -146,16 +146,14 @@ class SS(object):
|
|
optargv.append("-z")
|
|
if pcp_origin:
|
|
optargv.append("-O%s" % pcp_origin)
|
|
- ctx = pmapi.pmContext.fromOptions(options, optargv)
|
|
+ pmapi.pmContext.fromOptions(options, optargv)
|
|
origin = options.pmGetOptionOrigin()
|
|
self.context.pmSetMode(PM_MODE_INTERP, origin, 0)
|
|
- del ctx
|
|
elif pcp_start_time:
|
|
optargv.append("-S%s" % pcp_start_time)
|
|
- ctx = pmapi.pmContext.fromOptions(options, optargv)
|
|
+ pmapi.pmContext.fromOptions(options, optargv)
|
|
start = options.pmGetOptionStart()
|
|
self.context.pmSetMode(PM_MODE_INTERP, start, 0)
|
|
- del ctx
|
|
|
|
except pmapi.pmErr as error:
|
|
sys.stderr.write("%s: %s '%s'\n" % (error.progname(), error.message(), self.source))
|
|
|
|
commit 3fc974dc0994a9e162b78da6db92c4427f491de2
|
|
Author: Mark Goodwin <mgoodwin@redhat.com>
|
|
Date: Thu Jul 8 14:49:36 2021 +1000
|
|
|
|
pmdasockets: default to daemon and migrate from DSO to daemon
|
|
|
|
On install, migrate existing PMDA (if any) from DSO to daemon
|
|
using the Upgrade script. On new installs and setup, default
|
|
to a daemon.
|
|
|
|
Have tested installs, reinstalls and upgrades for both scenarios.
|
|
|
|
diff --git a/src/pmdas/linux_sockets/Install b/src/pmdas/linux_sockets/Install
|
|
index 09d07d2b9..3103bc8cf 100755
|
|
--- a/src/pmdas/linux_sockets/Install
|
|
+++ b/src/pmdas/linux_sockets/Install
|
|
@@ -19,12 +19,6 @@
|
|
. $PCP_SHARE_DIR/lib/pmdaproc.sh
|
|
|
|
iam=sockets
|
|
-
|
|
-# preferred: DSO
|
|
-dso_opt=true
|
|
-pipe_opt=false
|
|
-daemon_opt=false
|
|
-
|
|
pmns_name=network.persocket # differs to PMDA name
|
|
|
|
which ss >/dev/null 2>&1
|
|
diff --git a/src/pmdas/linux_sockets/Upgrade b/src/pmdas/linux_sockets/Upgrade
|
|
index 97b6639d7..3be588063 100755
|
|
--- a/src/pmdas/linux_sockets/Upgrade
|
|
+++ b/src/pmdas/linux_sockets/Upgrade
|
|
@@ -16,8 +16,10 @@
|
|
|
|
. $PCP_DIR/etc/pcp.env
|
|
|
|
-if grep -q ^sockets "$PCP_PMCDCONF_PATH" 2>/dev/null
|
|
+if grep -q "^sockets.*\.dso.*\.so" "$PCP_PMCDCONF_PATH" 2>/dev/null
|
|
then
|
|
+ # migrate from dso to daemon
|
|
+ sed -i '/^sockets/d' "$PCP_PMCDCONF_PATH"
|
|
touch "$PCP_PMDAS_DIR/sockets/.NeedInstall"
|
|
fi
|
|
|
|
commit 1ba2675535da80121bfe10d5b25e7712c4821960
|
|
Author: Mark Goodwin <mgoodwin@redhat.com>
|
|
Date: Thu Jul 8 16:06:25 2021 +1000
|
|
|
|
pmdasockets: fix regex in Upgrade script
|
|
|
|
There is no '.' before 'dso' in the sockets entry in pmcd.conf
|
|
|
|
diff --git a/src/pmdas/linux_sockets/Upgrade b/src/pmdas/linux_sockets/Upgrade
|
|
index 3be588063..3d4ad81ff 100755
|
|
--- a/src/pmdas/linux_sockets/Upgrade
|
|
+++ b/src/pmdas/linux_sockets/Upgrade
|
|
@@ -16,7 +16,7 @@
|
|
|
|
. $PCP_DIR/etc/pcp.env
|
|
|
|
-if grep -q "^sockets.*\.dso.*\.so" "$PCP_PMCDCONF_PATH" 2>/dev/null
|
|
+if grep -q "^sockets.*dso.*\.so" "$PCP_PMCDCONF_PATH" 2>/dev/null
|
|
then
|
|
# migrate from dso to daemon
|
|
sed -i '/^sockets/d' "$PCP_PMCDCONF_PATH"
|
|
--- a/qa/group 2021-07-08 01:22:42.295549594 -0400
|
|
+++ b/qa/group 2021-07-08 01:22:52.303659054 -0400
|
|
@@ -1851,6 +1851,7 @@
|
|
1623 libpcp_import collectl local
|
|
1627 libpcp_import local
|
|
1628 libpcp_import valgrind local
|
|
+1633 python pmda.sockets local
|
|
1634 pmda.sockets local
|
|
1644 pmda.perfevent local
|
|
1660 libpcp labels local
|