vXav,
I have the below guides and the "Mastering VMware vSphere 6.7" book, the problem is on CLI related issues. I know the GREP commands to run, but I can't find the method to make changes to the particular item to be modified to correct the dependency.
vsphere-esxi-vcenter-server-67-networking-guide
vsphere-esxi-vcenter-server-67-performance-best-practices
vsphere-esxi-vcenter-server-67-security-guide
vsphere-esxi-vcenter-server-67-storage-guide
vsphere-esxi-vcenter-server-67-command-line-interface-getting-started-guide
Below are some of the GREP output that I need to modify yet I haven't found the correct command sets to make changes.
grep -i "^Ciphers" /etc/ssh/sshd_config
"Ciphers aes128-ctr,aes192-ctr,aes256-ctr,aes128-cbc,aes192-cbc,aes256-cbc"
Want to remove cbc and aes128 ciphers
grep -i "^IgnoreRhosts" /etc/ssh/sshd_config
Should be "IgnoreRhosts yes"
grep -i "^HostbasedAuthentication" /etc/ssh/sshd_config
Should be HostbasedAuthentication no"
grep -i "^PermitRootLogin" /etc/ssh/sshd_config
Should be "PermitRootLogin no"
grep -i "^PermitEmptyPasswords" /etc/ssh/sshd_config
Should be "PermitEmptyPasswords no"
These are just a few of the settings that need to be modified and they are all command line related. The other issues I know what to do with, but I have to work with other departments.