文件管理 · 2022年02月20日 0

esxcfg-firewall命令 – 防火墙设置

esxcfg命令集分为网络管理类、存储管理类、系统管理类等几种类型,ESX Server防火墙使用内置的iptables,很常用的Linux防火墙。然而使用其他esxcfg工具创建规则,它就是esxcfg-firewall。esxcfg-firewall负责配置ESX主机上的网络防火墙,属于网络管理类。 **语法格式:** esxcfg-firewall [参数] **常用参数:** | -h | 查看帮助文档 | | ---- | -------------------- | | -l | 显示当前的网络配置 | **参考实例** 显示当前的网络配置: ``` [root@anycode ~]# esxcfg-firewall -l ``` 列出当前节点所有的网络服务: ``` [root@anycode ~]# esxcfg-firewall -s ``` 阻塞特定的服务: ``` [root@anycode ~]# esxcfg-firewall -d ``` 重置服务: ``` [root@anycode ~]# esxcfg-firewall -r ``` 查看帮助文档: ``` [root@anycode ~]# esxcfg-firewall -help ```