-bash: iptable: command not found
时间: 2023-11-22 21:44:41 浏览: 161
iptables 命令
这个错误提示是因为你在使用 iptables 命令时,系统找不到该命令。可能是因为你的系统没有安装 iptables 或者你没有使用 root 用户权限执行该命令。你可以尝试使用以下命令来安装 iptables:
```
sudo apt-get update
sudo apt-get install iptables
```
如果你已经安装了 iptables,可以尝试使用以下命令来查看是否有权限执行该命令:
```
sudo iptables -L
```
如果你还是无法执行该命令,可能需要检查你的系统是否有其他安全软件或防火墙阻止了该命令的执行。
阅读全文