📜  iptables list ubuntu - Shell-Bash (1)

📅  最后修改于: 2023-12-03 14:42:10.189000             🧑  作者: Mango

iptables list ubuntu - Shell-Bash

介绍

本文将介绍在Ubuntu系统中使用iptables命令查看防火墙规则的方法。

iptables是一个防火墙工具,用于设置规则以保护服务器。Ubuntu操作系统默认附带了iptables,因此我们可以使用该命令来查看当前服务器的防火墙规则。

使用方法

要查看当前服务器上的iptables规则,请按照以下步骤操作:

  1. 打开终端。
  2. 输入以下命令查看iptables规则:
sudo iptables -L

此命令将列出当前服务器上的所有iptables规则。

您还可以使用以下命令来查看更详细的信息:

sudo iptables -L -v

此命令将列出规则及其匹配的流量量。

输出示例

以下是使用以上命令在Ubuntu系统上输出的示例:

Chain INPUT (policy ACCEPT)
target     prot opt source               destination         
ACCEPT     udp  --  anywhere             anywhere             udp dpt:domain
ACCEPT     tcp  --  anywhere             anywhere             tcp dpt:ssh
ACCEPT     tcp  --  anywhere             anywhere             tcp dpt:http
ACCEPT     tcp  --  anywhere             anywhere             tcp dpt:https

Chain FORWARD (policy ACCEPT)
target     prot opt source               destination         

Chain OUTPUT (policy ACCEPT)
target     prot opt source               destination         
总结

iptables是一个强大的防火墙工具,可用于设置规则以保护服务器。在Ubuntu系统中,我们可以使用该命令查看防火墙规则。通过本文所述方法,您可以轻松地查看任何Ubuntu服务器上的防火墙规则。