TranslateProject/translated/tech/20230624.0 ⭐️⭐️ How to Install and Use Wireshark in Ubuntu 22.04.md

158 lines
6.5 KiB
Markdown
Raw Normal View History

2023-07-03 08:48:38 +08:00
[#]: subject: "How to Install and Use Wireshark in Ubuntu 22.04"
[#]: via: "https://www.linuxtechi.com/install-use-wireshark-ubuntu/"
[#]: author: "Pradeep Kumar https://www.linuxtechi.com/author/pradeep/"
[#]: collector: "lkxed"
[#]: translator: "geekpi"
[#]: reviewer: " "
[#]: publisher: " "
[#]: url: " "
如何在 Ubuntu 22.04 中安装和使用 Wireshark
======
技术人员大家好,在这篇文章中我们将介绍如何在 Ubuntu 22.04 中安装和使用 wireshark。
Wireshark 是免费、开源、跨平台、基于 GUI 的网络数据包分析器,可用于 Linux、Windows、MacOS、Solaris 等。它实时捕获网络数据包并以人类可读的格式呈现它们。它使我们能够监控微观层面的网络数据包。它还有一个名为 “tshark” 的命令行程序,它执行与 Wireshark 相同的功能,但通过终端而不是通过 GUI。
Wireshark 可用于网络故障排除、分析、软件和通信协议开发也可用于教育目的。Wireshark 使用名为 “pcap” 的库来捕获网络数据包。
##### Wireshark 功能
- 支持数百种检查协议,
- 能够实时捕获数据包并保存它们以供以后离线分析,
- 一些用于分析数据的过滤器,
- 捕获的数据可以动态压缩和解压缩,
- 支持多种数据分析文件格式,输出也可以保存为 XML、CSV、纯文本格式
- 可以从以太网、wifi、蓝牙、USB、帧中继、令牌环等多种接口捕获数据。
##### 先决条件
- 预装Ubuntu 22.04
- 具有 sudo 权限的本地用户
- 互联网连接
### Wireshark 安装步骤
Wireshark 包可在默认的 Ubuntu 仓库中使用,并且可以使用以下命令简单地安装。但你可能无法获得最新版本的 wireshark。
```
$ sudo apt update
$ sudo apt install wireshark
```
![Apt-Command-Install-Wireshark-Ubuntu][1]
选择 “Yes” 允许非超级用户使用 wireshare 捕获数据包
![Allow-Non-SuperUsers-To-Capture-Packets-Wireshark-Ubuntu][2]
安装成功后,访问 Wireshare UI。从“活动”中搜索 “wireshark”然后单击其图标。
![Wireshark-UI-Ubuntu-Linux-Desktop][3]
以上确认你的 wireshark 安装已成功完成。
为了安装最新版本的 wireshark我们必须使用以下 apt 命令启用官方 wireshark 仓库。
```
$ sudo add-apt-repository ppa:wireshark-dev/stable
$ sudo apt update
```
现在,安装最新版本的 wireshark运行
```
$ sudo apt install wireshark -y
```
安装 Wireshark 后,验证其版本:
```
$ wireshark --version
```
![Wireshark-Version-Check-Ubuntu-Linux][4]
要允许普通用户使用 wireshark 使用和捕获数据包,请运行以下命令。
```
$ sudo dpkg-reconfigure wireshark-common
```
选择 “Yes” 并按回车键。
![Allow-Regular-User-Use-Wireshark-Ubuntu][5]
使用 usermod 命令将本地用户添加到 wireshark 组。
```
$ sudo usermod -aG wireshark $USER
$ newgrp wireshark
```
要使上述更改生效,请重新启动系统一次。
```
$ sudo reboot
```
### 使用 Wireshark 捕获数据包
启动 Wireshark从“活动”->搜索 “Wireshark”。
![Access-Wireshark-Ubuntu-Desktop][6]
单击 Wireshark 图标,
![Choose-Interface-Wireshark-UI-Ubuntu][7]
所有这些都是我们可以捕获网络数据包的接口。根据你系统上的界面,此页面可能会有所不同。
我们选择 “enp0s3” 来捕获该接口的网络流量。选择接口后,我们网络上所有设备的网络数据包开始填充(请参阅下面的截图)
![Capturing-Packets-WireShark-UI-Ubuntu][8]
第一次看到此页面时我们可能会被此屏幕中显示的数据淹没并且可能会想到如何整理这些数据但不用担心Wireshark 的最佳功能之一就是它的过滤器。
我们可以根据 IP 地址、端口号对数据进行排序/过滤,还可以使用源和目标过滤器、数据包大小等,还可以将 2 个或更多过滤器组合在一起以创建更全面的搜索。我们可以在“应用显示过滤器”选项卡中编写过滤器,也可以选择已创建的规则之一。要选择预建过滤器,请单击“应用显示过滤器”选项卡旁边的“标志”图标。
![IP-Based-Filtering-WireShark-UI-Ubuntu][9]
我们还可以根据颜色代码来过滤数据,默认情况下,浅紫色是 TCP 流量,浅蓝色是 UDP 流量,黑色标识有错误的数据包,要查看这些代码的含义,请单击查看->颜色规则,我们也可以更改这些代码。
![Coloring-Rules-WireShark-Ubuntu][10]
获得所需的结果后,我们可以单击任何捕获的数据包以获取有关该数据包的更多详细信息,这将显示有关该网络数据包的所有数据。
要停止捕获数据包,请单击红色按钮,然后将捕获的数据包保存到文件中。
![Save-Captured-Packets-Wireshark-Ubuntu][11]
##### 总结
Wireshark 是一款非常强大的工具,需要一些时间来适应和掌握它,这篇文章将帮助你开始使用。请随时在下面的评论栏中提出你的疑问或建议。
--------------------------------------------------------------------------------
via: https://www.linuxtechi.com/install-use-wireshark-ubuntu/
作者:[Pradeep Kumar][a]
选题:[lkxed][b]
译者:[geekpi](https://github.com/geekpi)
校对:[校对者ID](https://github.com/校对者ID)
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出
[a]: https://www.linuxtechi.com/author/pradeep/
[b]: https://github.com/lkxed/
[1]: https://www.linuxtechi.com/wp-content/uploads/2017/11/Apt-Command-Install-Wireshark-Ubuntu.png
[2]: https://www.linuxtechi.com/wp-content/uploads/2017/11/Allow-Non-SuperUsers-To-Capture-Packets-Wireshark-Ubuntu.png
[3]: https://www.linuxtechi.com/wp-content/uploads/2017/11/Wireshark-UI-Ubuntu-Linux-Desktop.png
[4]: https://www.linuxtechi.com/wp-content/uploads/2017/11/Wireshark-Version-Check-Ubuntu-Linux.png
[5]: https://www.linuxtechi.com/wp-content/uploads/2017/11/Allow-Regular-User-Use-Wireshark-Ubuntu.png
[6]: https://www.linuxtechi.com/wp-content/uploads/2017/11/Access-Wireshark-Ubuntu-Desktop.png
[7]: https://www.linuxtechi.com/wp-content/uploads/2017/11/Choose-Interface-Wireshark-UI-Ubuntu.png
[8]: https://www.linuxtechi.com/wp-content/uploads/2017/11/Capturing-Packets-WireShark-UI-Ubuntu.png
[9]: https://www.linuxtechi.com/wp-content/uploads/2017/11/IP-Based-Filtering-WireShark-UI-Ubuntu.png
[10]: https://www.linuxtechi.com/wp-content/uploads/2017/11/Coloring-Rules-WireShark-Ubuntu.png
[11]: https://www.linuxtechi.com/wp-content/uploads/2017/11/Save-Captured-Packets-Wireshark-Ubuntu.png