溫馨提示×

linux怎么查看超時(shí)時(shí)間

小億
367
2024-05-21 17:46:21

在Linux系統(tǒng)中,可以使用以下命令來查看超時(shí)時(shí)間:

  1. 查看系統(tǒng)的超時(shí)時(shí)間:
sysctl net.ipv4.tcp_keepalive_time
  1. 查看特定連接的超時(shí)時(shí)間:
netstat -an | grep 'ESTABLISHED' | grep '192.168.1.1' | awk '{print $4}' | cut -d: -f2 | xargs -I {} cat /proc/{}/net/tcp
  1. 查看TCP連接的超時(shí)時(shí)間:
cat /proc/sys/net/ipv4/tcp_keepalive_time

請注意,根據(jù)不同的Linux發(fā)行版和系統(tǒng)配置,命令可能會有所不同。

0