Sziasztok!
A 2B feladatot kaptam a címben leírt szerverrel és kliensel.
A gyakorlat anyagban leírtakat követtem, a linuxon futtattam a következőket:
sudo systemctl start tog-pegasus.service
sudo cimconfig -s enableHttpConnection=true -p
sudo usermod -a -G pegasus 111447
sudo systemctl start openwsmand
win10-en pedig ezeket (powershell adminként):
Set-Item WSMan:\localhost\Client\Auth\Basic -Value true
Set-Item WSMan:\localhost\Client\AllowUnencrypted -value true
Set-Item WSMan:\localhost\Client\TrustedHosts -Value "az ip-je a linuxnak"
Set-ExecutionPolicy RemoteSigned
$ip = "linux ipje"
$c = Get-Credential #itt megadtam a linuxos acc-ot, amit a vcl-ről kaptam
a) Test-WSMan -ComputerName $ip -Authentication basic -Credential $c
b) Get-WSManInstance -ComputerName $ip -Authentication basic -Credential $c -ResourceURI cimv2/CIMAccount -Enumerate | Where-Object {$.GroupID -eq "0" }
c) Get-WSManInstance -ComputerName $ip -Credential $c -ResourceURI wmicimv2/* -Filter "{object=Win32LogicalDisk?deviceid=C:;AssociationClassname=Win32LogicalDiskToPartition}"
-Dialect Association -Enumerate
Az a), b) parancsokra sikeresen választ kapok (ami látszólag jónak tűnik), viszont a c)-re exception-t kapok azzal a címszóval hogy "Access is denied." (Azért ezt a lekérdezést próbáltam, mert ez a gyakorlat doksiban volt)
Bővebb leírás első mondata:
"The WinRM client cannot process the request. The WinRM client tried to use Negotiate authentication mechanism, but the destination computer (10.6.16.112:5985) returned an 'access denied' error."
Gondoltam, hogy akkor odaírom ugyanúgy a -Authentication basic-et a -Credential elé, de akkor meg ezt kapom:
"The connection to the specified remote host was refused. Verify that the WS-Management service is running on the remote host and configured to listen for requests on the correct port and HTTP URL."
Ugyanez a helyzet a wql lekérdezésekkel, így viszont nehézkes szerver oldalon szűrni.
Végignéztem a kapcsolódó q2a kérdés-válaszokat, azok úgy tűntek megoldódtak, de nekem sajnos nem segítettek.
Köszönöm előre is a segítséget!