Thursday, May 25, 2017

Disabling vmware firewall

~ # esxcli network firewall get
   Default Action: DROP
   Enabled: true
   Loaded: true
~ # esxcli network firewall set --enabled false
~ # esxcli network firewall get
   Default Action: DROP
   Enabled: false
   Loaded: true
~ # esxcli network firewall unload
~ # esxcli network firewall get
   Default Action: PASS
   Enabled: false
   Loaded: false

~ #

~Sujith Emmanuel

No comments:

Installing SSLyze

SSLyze is a Python tool that can analyze the SSL configuration of a server by connecting to it. It is designed to be fast and comprehensive,...