lsof -i 输出说明

lsof -i output explanation

Google 说

lsof 
 -i [i] selects the listing of files any of whose Internet address
              matches the address specified in i.  If no address is
              specified, this option selects the listing of all Internet
              and x.25 (HP-UX) network files.

我有以下输出

root@Landau:~# lsof -i:8018
COMMAND     PID USER   FD   TYPE   DEVICE SIZE/OFF NODE NAME
celery  1843030 root   10u  IPv4 49086348      0t0  TCP Landau.site.ru:58490->Landau.site.ru:8018 (ESTABLISHED)
python  1941119 root    3u  IPv4 48907368      0t0  TCP *:8018 (LISTEN)
python  1941119 root    4u  IPv4 49092801      0t0  TCP Landau.site.ru:8018->ppp83-237-176-131.pppoe.mtu-net.ru:14800 (ESTABLISHED)

第二行是我的流程(监听8018)

->ESTABLISED是什么意思?

你问的问题是:

What does it mean ->

列出了->左边的host:port连接到->右边的host:port。例如,主机 Landau.site.ru 主机已从端口 8018 连接到主机 ppp83-237-176-131.pppoe.mtu-net.ru 到端口 14800

and ESTABLISED?

表示已经建立了实际的TCP连接,交换了SYN -> SYN-ACK -> ACK消息,可以使用连接(或者,嗯,用于传输消息。