我试图从lsof获取网络流量数据。我试图看到TCP标志,但我找不到它。
我已经尝试了以下内容,如BSD的手册所示:
lsof -Tf
lsof -i
lsof +fg
这些似乎都没有给出TCP标志。
手册页似乎表明可以使用-T
选项获取TCP标志。请参阅下面the man pages for lsof(8) 的摘录。
-T with following characters selects the reporting of specific
TCP/TPI information:
f selects reporting of socket options,
states and values, and TCP flags and
values.
q selects queue length reporting.
s selects connection state reporting.
w selects window size reporting.
但是,这些似乎不起作用。我的操作系统是Darwin,我试图在bash中运行它。