06.VERIFY CONNECTIVITY
CONTROLLER NODE
root@controllerNode:~$ pipx inject ansible pywinrm
sudo apt update && sudo apt install sshpass -y
MANAGED NODES
WINRM
Set-NetConnectionProfile -InterfaceAlias "Ethernet0" -NetworkCategory Private
Set-Item -Path WSMan:\localhost\Service\AllowUnencrypted -Value $true
Set-Item -Path WSMan:\localhost\Service\Auth\Basic -Value $true
Enable-PSRemoting -Force
Last updated