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