Merge pull request #1808 from GOLinux/master

[Translated] 20141009 Linux Terminal--An lsof Primer.md
This commit is contained in:
joeren 2014-10-10 10:19:50 +08:00
commit 10484403a0
2 changed files with 252 additions and 252 deletions

View File

@ -1,252 +0,0 @@
Translating by GOLinux!
Linux Terminal: An lsof Primer
================================================================================
![](http://cdn.linuxaria.com/wp-content/uploads/2011/06/tux-terminal.jpg)
Article by Daniel Miessler first posted on his [blog][1]
**lsof** is the sysadmin/[security][2] über-tool. I use it most for getting [network][3] connection related information from a system, but thats just the beginning for this powerful and too-little-known application. The tool is aptly called lsof because it “**lists openfiles**“. And remember, in UNIX just about everything (including a network socket) is a file.
Interestingly, lsof is also the Linux/Unix command with the most switches. It has so many it has to use both minuses andpluses.
usage: [-?abhlnNoOPRstUvV] [+|-c c] [+|-d s] [+D D] [+|-f[cgG]]
[-F [f]] [-g [s]] [-i [i]] [+|-L [l]] [+|-M] [-o [o]]
[-p s] [+|-r [t]] [-S [t]] [-T [t]] [-u s] [+|-w] [-x [fl]] [--] [names]
As you can see, lsof has a truly staggering number of options. You can use it to get information about devices on your system, what a given user is touching at any given point, or even what files or network connectivity a process is using.
For me, lsof replaces both netstat and ps entirely. It has everything I get from those tools and much, much more. So lets look at some of its primary capabilities:
### Key Options ###
Its important to understand a few key things about how lsofworks. Most importantly, when youre passing options to it, the default behavior is to OR the results. So if you are pulling a list of ports with -i and also a process list with -p youre by default going to get both results.
Here are a few others like that to keep in mind:
- **default** : without options, lsof lists all open files for active processes
- **grouping** : its possible to group options, e.g. -abC, but you have to watch for which options take parameters
- **-a** : AND the results (instead of OR)
- **-l** : show the userID instead of the username in the output
- **-h** : get help
- **-t** : get process IDs only
- **-U** : get the UNIX socket address
- **-F** : the output is ready for another command, which can be formatted in various ways, e.g. -F pcfn (for process id, command name, file descriptor, and file name, with a null terminator)
#### Getting Information About the Network ####
As I said, one of my main usecases for lsof is getting information about how my system is interacting with the network. Here are some staples for getting this info:
### Show all connections with -i ###
Some like to use netstat to get network connections, but I much prefer using lsof for this. The display shows things in a format thats intuitive to me, and I like knowing that from there I can simply change my syntax and get more information using the same command.
# lsof -i
COMMAND PID USER FD TYPE DEVICE SIZE NODE NAME
dhcpcd 6061 root 4u IPv4 4510 UDP *:bootpc
sshd 7703 root 3u IPv6 6499 TCP *:ssh (LISTEN)
sshd 7892 root 3u IPv6 6757 TCP 10.10.1.5:ssh->192.168.1.5:49901 (ESTABLISHED)
### Get only IPv6 traffic with -i 6 ###
# lsof -i 6
### Show only TCP connections (works the same for UDP) ###
You can also show only TCP or UDP connections by providing the protocol right after the -i.
# lsof -iTCP
COMMAND PID USER FD TYPE DEVICE SIZE NODE NAME
sshd 7703 root 3u IPv6 6499 TCP *:ssh (LISTEN)
sshd 7892 root 3u IPv6 6757 TCP 10.10.1.5:ssh->192.168.1.5:49901 (ESTABLISHED)
### Show networking related to a given port using -i :port ###
Or you can search by port instead, which is great for figuring out whats preventing another app from binding to a given port.
# lsof -i :22
COMMAND PID USER FD TYPE DEVICE SIZE NODE NAME
sshd 7703 root 3u IPv6 6499 TCP *:ssh (LISTEN)
sshd 7892 root 3u IPv6 6757 TCP 10.10.1.5:ssh->192.168.1.5:49901 (ESTABLISHED)
### Show connections to a specific host using @host ###
This is quite useful when youre looking into whether you have open connections with a given host on the network or on the internet.
# lsof -i@172.16.12.5
sshd 7892 root 3u IPv6 6757 TCP 10.10.1.5:ssh->172.16.12.5:49901 (ESTABLISHED)
### Show connections based on the host and the port using@host:port ###
You can also combine the display of host and port.
# lsof -i@172.16.12.5:22
sshd 7892 root 3u IPv6 6757 TCP 10.10.1.5:ssh->192.168.1.5:49901 (ESTABLISHED)
### Find listening ports ###
Find ports that are awaiting connections.
# lsof -i -sTCP:LISTEN
You can also do this by grepping for “LISTEN” as well.
# lsof -i | grep -i LISTEN
iTunes 400 daniel 16u IPv4 0x4575228 0t0 TCP *:daap (LISTEN)
### Find established connections ###
You can also show any connections that are already pinned up.
# lsof -i -sTCP:ESTABLISHED
You can also do this just by searching for “ESTABLISHED” in the output via grep.
# lsof -i | grep -i ESTABLISHED
firefox-b 169 daniel 49u IPv4 0t0 TCP 1.2.3.3:1863->1.2.3.4:http (ESTABLISHED)
#### User Information ####
You can also get information on various users and what theyre doing on the system, including their activity on the network, their interactions with files, etc.
### Show what a given user has open using -u ###
# lsof -u daniel
-- snipped --
Dock 155 daniel txt REG 14,2 2798436 823208 /usr/lib/libicucore.A.dylib
Dock 155 daniel txt REG 14,2 1580212 823126 /usr/lib/libobjc.A.dylib
Dock 155 daniel txt REG 14,2 2934184 823498 /usr/lib/libstdc++.6.0.4.dylib
Dock 155 daniel txt REG 14,2 132008 823505 /usr/lib/libgcc_s.1.dylib
Dock 155 daniel txt REG 14,2 212160 823214 /usr/lib/libauto.dylib
-- snipped --
### Show what all users are doing except a certain user using-u ^user ###
# lsof -u ^daniel
-- snipped --
Dock 155 jim txt REG 14,2 2798436 823208 /usr/lib/libicucore.A.dylib
Dock 155 jim txt REG 14,2 1580212 823126 /usr/lib/libobjc.A.dylib
Dock 155 jim txt REG 14,2 2934184 823498 /usr/lib/libstdc++.6.0.4.dylib
Dock 155 jim txt REG 14,2 132008 823505 /usr/lib/libgcc_s.1.dylib
Dock 155 jim txt REG 14,2 212160 823214 /usr/lib/libauto.dylib
-- snipped --
### Kill everything a given user is doing ###
Its nice to be able to nuke everything being run by a given user.
# kill -9 `lsof -t -u daniel`
#### Commands and Processes ####
Its often useful to be able to see what a given program or process is up to, and with lsof you can do this by name or by process ID. Here are a few options:
### See what files and network connections a named command is using with -c ###
# lsof -c syslog-ng
COMMAND PID USER FD TYPE DEVICE SIZE NODE NAME
syslog-ng 7547 root cwd DIR 3,3 4096 2 /
syslog-ng 7547 root rtd DIR 3,3 4096 2 /
syslog-ng 7547 root txt REG 3,3 113524 1064970 /usr/sbin/syslog-ng
-- snipped --
### See what a given process ID has open using -p ###
# lsof -p 10075
-- snipped --
sshd 10068 root mem REG 3,3 34808 850407 /lib/libnss_files-2.4.so
sshd 10068 root mem REG 3,3 34924 850409 /lib/libnss_nis-2.4.so
sshd 10068 root mem REG 3,3 26596 850405 /lib/libnss_compat-2.4.so
sshd 10068 root mem REG 3,3 200152 509940 /usr/lib/libssl.so.0.9.7
sshd 10068 root mem REG 3,3 46216 510014 /usr/lib/liblber-2.3
sshd 10068 root mem REG 3,3 59868 850413 /lib/libresolv-2.4.so
sshd 10068 root mem REG 3,3 1197180 850396 /lib/libc-2.4.so
sshd 10068 root mem REG 3,3 22168 850398 /lib/libcrypt-2.4.so
sshd 10068 root mem REG 3,3 72784 850404 /lib/libnsl-2.4.so
sshd 10068 root mem REG 3,3 70632 850417 /lib/libz.so.1.2.3
sshd 10068 root mem REG 3,3 9992 850416 /lib/libutil-2.4.so
-- snipped --
### The -t option returns just a PID ###
# lsof -t -c Mail
350
#### Files and Directories ####
By looking at a given file or directory you can see what all on the system is interacting with itincluding users, processes, etc.
#### Show everything interacting with a given directory ####
# lsof /var/log/messages/
COMMAND PID USER FD TYPE DEVICE SIZE NODE NAME
syslog-ng 7547 root 4w REG 3,3 217309 834024 /var/log/messages
### Show everything interacting with a given file ###
# lsof /home/daniel/firewall_whitelist.txt
#### Advanced Usage ####
Similar to [tcpdump][4], the power really shows itself when you start combining queries.
### Show me everything daniel is doing connected to 1.1.1.1 ###
# lsof -u daniel -i @1.1.1.1
bkdr 1893 daniel 3u IPv6 3456 TCP 10.10.1.10:1234->1.1.1.1:31337 (ESTABLISHED)
### Using the -t and -c options together to HUP processes ###
# kill -HUP `lsof -t -c sshd`
### lsof +L1 shows you all open files that have a link count less than 1 ###
This is often (but not always) indicative of an attacker trying to hide file content by unlinking it.
# lsof +L1
(hopefully nothing)
### Show open connections with a port range ###
# lsof -i @fw.google.com:2150=2180
#### Conclusion ####
This primer just scratches the surface of lsofs functionality. For a full reference, run man lsof or check out [the online version][5]. I hope this has been useful to you, and as always,[comments and corrections are welcomed][6].
### Resources ###
- The lsof man page:[http://www.netadmintools.com/html/lsof.man.html][7]
--------------------------------------------------------------------------------
via: http://linuxaria.com/howto/linux-terminal-an-lsof-primer
作者:[Daniel Miessler][a]
译者:[译者ID](https://github.com/译者ID)
校对:[校对者ID](https://github.com/校对者ID)
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创翻译,[Linux中国](http://linux.cn/) 荣誉推出
[a]:https://plus.google.com/101727609700016666852/posts?rel=author
[1]:http://danielmiessler.com/study/lsof/
[2]:http://linuxaria.com/tag/security
[3]:http://linuxaria.com/tag/network
[4]:http://danielmiessler.com/study/tcpdump/
[5]:http://www.netadmintools.com/html/lsof.man.html
[6]:http://danielmiessler.com/connect/
[7]:http://www.netadmintools.com/html/lsof.man.html

View File

@ -0,0 +1,252 @@
Linux终端lsof入门
================================================================================
![](http://cdn.linuxaria.com/wp-content/uploads/2011/06/tux-terminal.jpg)
Daniel Miessler撰写首次在他[博客][1]上贴出
**lsof**是系统管理/[安全][2]尤伯工具。我大多数时候用它来从系统获得与[网络][3]连接相关的信息但那只是这个强大而又鲜为人知的应用的第一步。将这个工具称之为lsof真实名副其实因为它是指“**列出打开文件lists openfiles**”。而有一点要切记在Unix中一切包括网络套接口都是文件。
有趣的是lsof也是有着最多开关的Linux/Unix命令。它有那么多的开关它必须同时使用-和+。
usage: [-?abhlnNoOPRstUvV] [+|-c c] [+|-d s] [+D D] [+|-f[cgG]]
[-F [f]] [-g [s]] [-i [i]] [+|-L [l]] [+|-M] [-o [o]]
[-p s] [+|-r [t]] [-S [t]] [-T [t]] [-u s] [+|-w] [-x [fl]] [--] [names]
正如你所见lsof有着实在是令人惊讶的选项数量。你可以使用它来获得你系统上设备的信息你能通过它了解到指定的用户在指定的地点正在碰什么东西或者甚至是一个进程正在使用什么文件或网络连接。
对于我lsof替代了netstat和ps的全部工作。它可以带来那些工具所能带来的一切而且要比那些工具多得多。那么让我们来看看它的一些基本能力吧
### 关键选项 ###
理解一些关于lsof如何工作的关键性东西是很重要的。最重要的是当你给它传递选项时默认行为是对结果进行或运算。因此如果你正是用-i来拉出一个端口列表同时又用-p来拉出一个进程列表那么默认情况下你会获得两者的结果。
下面的一些其它东西需要牢记:
- **default** : 没有选项lsof列出活跃进程的所有打开文件
- **grouping** : 可以分组选项,如-abc但要当心哪些选项需要参数
- **-a** : 结果进行与运算(而不是或)
- **-l** : 在输出显示用户ID而不是用户名
- **-h** : 获得帮助
- **-t** : 仅获取进程ID
- **-U** : 获取UNIX套接口地址
- **-F** : 输出结果为其它命令准备好,可以通过多种方式格式化,如-F pcfn用于进程id、命令名、文件描述符、文件名并以空终止
#### 获取网络信息 ####
正如我所说的我主要将lsof用于获取关于系统怎么和网络交互的信息。这里提供了关于此信息的一些主题
### 使用-i显示所有连接 ###
有些人喜欢用netstat来获取网络连接但是我更喜欢使用lsof来进行此项工作。结果以对我来说很直观的方式呈现而我了解到我仅仅只需改变我的语法就可以通过同样的命令来获取更多信息。
# lsof -i
COMMAND PID USER FD TYPE DEVICE SIZE NODE NAME
dhcpcd 6061 root 4u IPv4 4510 UDP *:bootpc
sshd 7703 root 3u IPv6 6499 TCP *:ssh (LISTEN)
sshd 7892 root 3u IPv6 6757 TCP 10.10.1.5:ssh->192.168.1.5:49901 (ESTABLISHED)
### 使用-i 6仅获取IPv6流量 ###
# lsof -i 6
### 仅显示TCP连接同理可获得UDP连接 ###
你也可以通过在-i后提供对应的协议来仅仅显示TCP或者UDP连接信息。
# lsof -iTCP
COMMAND PID USER FD TYPE DEVICE SIZE NODE NAME
sshd 7703 root 3u IPv6 6499 TCP *:ssh (LISTEN)
sshd 7892 root 3u IPv6 6757 TCP 10.10.1.5:ssh->192.168.1.5:49901 (ESTABLISHED)
### 使用-i:port来显示与指定端口相关的网络信息 ###
或者,你也可以通过端口搜索,这对于要找出什么阻止了另外一个应用绑定到指定端口实在是太棒了。
# lsof -i :22
COMMAND PID USER FD TYPE DEVICE SIZE NODE NAME
sshd 7703 root 3u IPv6 6499 TCP *:ssh (LISTEN)
sshd 7892 root 3u IPv6 6757 TCP 10.10.1.5:ssh->192.168.1.5:49901 (ESTABLISHED)
### 使用@host来显示指定到指定主机的连接 ###
这对于你在检查是否开放连接到网络中或互联网上某个指定主机的连接时十分有用。
# lsof -i@172.16.12.5
sshd 7892 root 3u IPv6 6757 TCP 10.10.1.5:ssh->172.16.12.5:49901 (ESTABLISHED)
### 使用@host:port显示基于主机与端口的连接 ###
你也可以组合主机与端口的显示信息。
# lsof -i@172.16.12.5:22
sshd 7892 root 3u IPv6 6757 TCP 10.10.1.5:ssh->192.168.1.5:49901 (ESTABLISHED)
### 找出监听端口 ###
找出正等候连接的端口。
# lsof -i -sTCP:LISTEN
你也可以grep “LISTEN”来完成该任务。
# lsof -i | grep -i LISTEN
iTunes 400 daniel 16u IPv4 0x4575228 0t0 TCP *:daap (LISTEN)
### 找出已建立的连接 ###
你也可以显示任何已经连接的连接。
# lsof -i -sTCP:ESTABLISHED
你也可以通过grep搜索“ESTABLISHED”来完成该任务。
# lsof -i | grep -i ESTABLISHED
firefox-b 169 daniel 49u IPv4 0t0 TCP 1.2.3.3:1863->1.2.3.4:http (ESTABLISHED)
#### 用户信息 ####
你也可以获取各种用户的信息,以及它们在系统上正干着的事情,包括它们的网络活动、对文件的操作等。
### 使用-u显示指定用户打开了什么 ###
# lsof -u daniel
-- snipped --
Dock 155 daniel txt REG 14,2 2798436 823208 /usr/lib/libicucore.A.dylib
Dock 155 daniel txt REG 14,2 1580212 823126 /usr/lib/libobjc.A.dylib
Dock 155 daniel txt REG 14,2 2934184 823498 /usr/lib/libstdc++.6.0.4.dylib
Dock 155 daniel txt REG 14,2 132008 823505 /usr/lib/libgcc_s.1.dylib
Dock 155 daniel txt REG 14,2 212160 823214 /usr/lib/libauto.dylib
-- snipped --
### 使用-u ^user来显示除指定用户以外的其它所有用户所做的事情 ###
# lsof -u ^daniel
-- snipped --
Dock 155 jim txt REG 14,2 2798436 823208 /usr/lib/libicucore.A.dylib
Dock 155 jim txt REG 14,2 1580212 823126 /usr/lib/libobjc.A.dylib
Dock 155 jim txt REG 14,2 2934184 823498 /usr/lib/libstdc++.6.0.4.dylib
Dock 155 jim txt REG 14,2 132008 823505 /usr/lib/libgcc_s.1.dylib
Dock 155 jim txt REG 14,2 212160 823214 /usr/lib/libauto.dylib
-- snipped --
### 杀死指定用户所做的一切事情 ###
可以消灭指定用户运行的所有东西,这真不错。
# kill -9 `lsof -t -u daniel`
#### 命令和进程 ####
可以查看指定程序或进程由什么决定这通常会很有用而你可以使用lsof通过名称或进程ID过滤来完成这个任务。下面列出了一些选项
### 使用-c查看指定的命令正在使用的文件和网络连接 ###
# lsof -c syslog-ng
COMMAND PID USER FD TYPE DEVICE SIZE NODE NAME
syslog-ng 7547 root cwd DIR 3,3 4096 2 /
syslog-ng 7547 root rtd DIR 3,3 4096 2 /
syslog-ng 7547 root txt REG 3,3 113524 1064970 /usr/sbin/syslog-ng
-- snipped --
### 使用-p查看指定进程ID已打开的内容 ###
# lsof -p 10075
-- snipped --
sshd 10068 root mem REG 3,3 34808 850407 /lib/libnss_files-2.4.so
sshd 10068 root mem REG 3,3 34924 850409 /lib/libnss_nis-2.4.so
sshd 10068 root mem REG 3,3 26596 850405 /lib/libnss_compat-2.4.so
sshd 10068 root mem REG 3,3 200152 509940 /usr/lib/libssl.so.0.9.7
sshd 10068 root mem REG 3,3 46216 510014 /usr/lib/liblber-2.3
sshd 10068 root mem REG 3,3 59868 850413 /lib/libresolv-2.4.so
sshd 10068 root mem REG 3,3 1197180 850396 /lib/libc-2.4.so
sshd 10068 root mem REG 3,3 22168 850398 /lib/libcrypt-2.4.so
sshd 10068 root mem REG 3,3 72784 850404 /lib/libnsl-2.4.so
sshd 10068 root mem REG 3,3 70632 850417 /lib/libz.so.1.2.3
sshd 10068 root mem REG 3,3 9992 850416 /lib/libutil-2.4.so
-- snipped --
### -t选项只返回PID ###
# lsof -t -c Mail
350
#### 文件和目录 ####
通过查看指定文件或目录,你可以看到系统上所有正与其交互的资源——包括用户、进程等。
#### 显示与指定目录交互的所有一切 ####
# lsof /var/log/messages/
COMMAND PID USER FD TYPE DEVICE SIZE NODE NAME
syslog-ng 7547 root 4w REG 3,3 217309 834024 /var/log/messages
### 显示与指定文件交互的所有一切 ###
# lsof /home/daniel/firewall_whitelist.txt
#### 高级用法 ####
与[tcpdump][4]类似,当你开始组合查询时,它就显示了它强大的功能。
### 显示daniel连接到1.1.1.1所做的一切 ###
# lsof -u daniel -i @1.1.1.1
bkdr 1893 daniel 3u IPv6 3456 TCP 10.10.1.10:1234->1.1.1.1:31337 (ESTABLISHED)
### 同时使用-t和-c选项以挂起进程 ###
# kill -HUP `lsof -t -c sshd`
### lsof +L1显示所有打开的链接数小于1的文件 ###
这通常(当不总是)表示某个攻击者正尝试通过取消文件链接来隐藏文件。
# lsof +L1
(hopefully nothing)
### 显示某个端口范围的开放连接 ###
# lsof -i @fw.google.com:2150=2180
#### 结尾 ####
This primer just scratches the surface of lsofs functionality. For a full reference, run man lsof or check out [the online version][5]. I hope this has been useful to you, and as always,[comments and corrections are welcomed][6].
本入门教程只是管窥了lsof功能的一斑要查看完整参考运行man lsof命令或查看[在线版本][5]。希望本文对你有所助益,也随时[欢迎你的评论和指正][6]。
### 资源 ###
- lsof手册页[http://www.netadmintools.com/html/lsof.man.html][7]
--------------------------------------------------------------------------------
via: http://linuxaria.com/howto/linux-terminal-an-lsof-primer
作者:[Daniel Miessler][a]
译者:[GOLinux](https://github.com/GOLinux)
校对:[校对者ID](https://github.com/校对者ID)
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创翻译,[Linux中国](http://linux.cn/) 荣誉推出
[a]:https://plus.google.com/101727609700016666852/posts?rel=author
[1]:http://danielmiessler.com/study/lsof/
[2]:http://linuxaria.com/tag/security
[3]:http://linuxaria.com/tag/network
[4]:http://danielmiessler.com/study/tcpdump/
[5]:http://www.netadmintools.com/html/lsof.man.html
[6]:http://danielmiessler.com/connect/
[7]:http://www.netadmintools.com/html/lsof.man.html