linux usage: see firewall-cmd man page No option specified.
时间: 2024-01-11 08:04:51 浏览: 285
这个错误通常是因为您未指定正确的选项或参数。请检查您运行的命令是否正确,并确保您已经使用了正确的选项和参数。
如果您正在使用的是 firewalld 防火墙,可以尝试以下命令:
```
sudo firewall-cmd --zone=public --add-port=8033/tcp --permanent
sudo firewall-cmd --reload
```
如果您使用的是 iptables 防火墙,可以尝试以下命令:
```
sudo iptables -A INPUT -p tcp --dport 8033 -j ACCEPT
sudo service iptables save
sudo service iptables restart
```
请注意,这些命令需要使用管理员权限运行。如果问题仍然存在,请检查您的命令拼写和语法,并查看相关文档以获取更多帮助。
相关问题
usage: see firewall-cmd man page No option specified.
这个错误通常是因为您未指定正确的选项或参数。请检查您运行的命令是否正确,并确保您已经使用了正确的选项和参数。
如果您正在使用的是 firewalld 防火墙,可以尝试以下命令:
```
sudo firewall-cmd --zone=public --add-port=8033/tcp --permanent
sudo firewall-cmd --reload
```
如果您使用的是 iptables 防火墙,可以尝试以下命令:
```
sudo iptables -A INPUT -p tcp --dport 8033 -j ACCEPT
sudo service iptables save
sudo service iptables restart
```
请注意,这些命令需要使用管理员权限运行。如果问题仍然存在,请检查您的命令拼写和语法,并查看相关文档以获取更多帮助。
linux usage: see firewall-cmd man page
Firewall-cmd is a command-line tool used to configure the firewall settings in Linux systems. Here are some basic usage examples:
1. To check the current status of the firewall:
`firewall-cmd --state`
2. To view all active zones:
`firewall-cmd --get-active-zones`
3. To add a new service to a zone:
`firewall-cmd --zone=public --add-service=http`
4. To allow incoming traffic for a specific port:
`firewall-cmd --zone=public --add-port=80/tcp`
5. To remove a service or port from a zone:
`firewall-cmd --zone=public --remove-service=http`
6. To reload the firewall configuration:
`firewall-cmd --reload`
For more detailed information and advanced usage, please refer to the firewall-cmd man page by typing `man firewall-cmd` in the terminal.
阅读全文