我正在Linux上使用netcat實用程序接收來自Windows計算機上的程序的輸出。我的問題是,Windows機器上的程序並不總是給出輸出。unix在Linux上的netcat實用程序,檢查是否連接
我該如何檢查是否已連接到netcat?
我到現在爲止所做的是「nc -l -v 9103 > output
」然後我檢查輸出的大小,這個問題是netcat只有在達到某個緩衝區大小後才寫入文件或者遇到新的一行字符時,所以有些情況表明,雖然已經建立連接,但文件大小被檢測爲零。
我該如何檢查是否有人與netcat建立了連接。
我嘗試使用
nc -l -v -e someprog.exe 9103 > output
但我的netcat似乎不支持低於此
是我擁有的各種選擇
$ nc -h
usage: nc [-46DdhklnrStUuvzC] [-i interval] [-p source_port]
[-s source_ip_address] [-T ToS] [-w timeout] [-X proxy_version]
[-x proxy_address[:port]] [hostname] [port[s]]
Command Summary:
-4 Use IPv4
-6 Use IPv6
-D Enable the debug socket option
-d Detach from stdin
-h This help text
-i secs Delay interval for lines sent, ports scanned
-k Keep inbound sockets open for multiple connects
-l Listen mode, for inbound connects
-n Suppress name/port resolutions
-p port Specify local port for remote connects
-r Randomize remote ports
-s addr Local source address
-T ToS Set IP Type of Service
-C Send CRLF as line-ending
-t Answer TELNET negotiation
-U Use UNIX domain socket
-u UDP mode
-v Verbose
-w secs Timeout for connects and final net reads
-X proto Proxy protocol: "4", "5" (SOCKS) or "connect"
-x addr[:port] Specify proxy address and port
-z Zero-I/O mode [used for scanning]
Port numbers can be individual or ranges: lo-hi [inclusive]
你能詳細說明我該怎麼做嗎? – user434885
哪一個?升級'netcat',使用'script','screen'或'tmux'? – fork0