Hi,
vCo 5.5
Powershell plugin 1.0.6.2442318
I'm trying to run some PowerShells cripts from vRO, all working OK for the main.
However, I'm trying to add a 2nd powershell host exactly the same way I've added the first so i can run MS AD cmdlet scripts against our external forest, but have run into issues which I'm guessing are due to the way I've got my krb5.conf file set up?
the error i get is:
"No valid credentials provided (Mechanism level: No valid credentials provided (Mechanism level: Server not found in Kerberos database (7))) (Dynamic Script Module name : addPowerShellHost#16)"
I've triple checked the credentials and know they are correct. I've also swapped out the krb5.conf file so each forest is the only entity included and I can add each PowerShell host separately without issue. Here's my krb5.con file with the 2 forests added.
[libdefaults]
default_realm = INTERNAL.NET
udp_preference_limit = 1
forwardable = true
[realms]
INTERNAL.NET = {
kdc = dc-01.internal.net
default_domain = internal.net
admin_server = dc-01.internal.net
}
EXTERNAL.NET = {
kdc = dc-01.external.net
default_domain = external.net
admin_server = dc-01.external.net
}
[domain_realm]
.internal.net=INTERNAL.NET
internal.net=INTERNAL.NET
.external.net=EXTERNAL.NET
external.net=EXTERNAL.NET
[logging]
kdc = FILE:/var/log/krb5/krb5kdc.log
admin_server = FILE:/var/log/krb5/kadmind.log
default = SYSLOG:NOTICE:DAEMON
can anyone advise?