Questions tagged «socat»

1
移动UNIX域套接字如何使socat监视流量?
socat 可以用来监视跨Unix域套接字的流量: sudo mv /path/to/sock /path/to/sock.original sudo socat -t100 -x -v UNIX-LISTEN:/path/to/sock,mode=777,reuseaddr,fork UNIX-CONNECT:/path/to/sock.original 我不太了解这种机制的工作原理,希望有人能对此有所解释。特别是,如果进程已经在侦听套接字文件,那么如何移动套接字文件?此外,在移动后:没有lsof /path/to/sock,也没有/path/to/sock.original返回任何结果。
12 socket  socat 

1
当另一端关闭时,停止socat终止
我想将应用程序的输入和输出重定向到UNIX套接字,并从另一个会话连接到该套接字。到目前为止,我正在做以下事情: 在“服务器”端: socat EXEC:"command" UNIX-LISTEN:/tmp/comm 在“客户端”方面: socat UNIX-CONNECT:/tmp/comm - 它工作得很好,但是一旦客户端socat终止,服务器也会终止。但我希望它继续运行并在以后重新连接...我该如何实现?
12 socat 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.