Building a Hyper-V 2016 host Take 2
-
@jaredbusch said in Building a Hyper-V 2016 host Take 2:
You can do this if you know 100% that the DHCP server does not exist on a VM running on that host.
Yeah, if it is, you:
- Set static IP on your hyper-v host
- Set static IP on your DHCP VM on above host
- Set static IP on your DC on above host
- Set DHCP VM to start up first when you boot up the host
@jaredbusch said in Building a Hyper-V 2016 host Take 2:
The Hypervisor hosts are one of the few things I set a static on. But not until it is all teamed and such.
Right
-
A reminder to myself
-
@Dashrender whoa, back from the dead.
-
@scottalanmiller said in Building a Hyper-V 2016 host Take 2:
@Dashrender whoa, back from the dead.
Look who is talking....
-
@JaredBusch said in Building a Hyper-V 2016 host Take 2:
@scottalanmiller said in Building a Hyper-V 2016 host Take 2:
@Dashrender whoa, back from the dead.
Look who is talking....
Hey, takes a zombie to know a zombie
-
@scottalanmiller said in Building a Hyper-V 2016 host Take 2:
@JaredBusch said in Building a Hyper-V 2016 host Take 2:
@scottalanmiller said in Building a Hyper-V 2016 host Take 2:
@Dashrender whoa, back from the dead.
Look who is talking....
Hey, takes a
zombienecromancer to know azombienecromancerI've FTFY
-
FYI - Hyper-v 2019 currently is broken. The March 2019 update supposedly fixes the RDP issue.
Though you still can't run
Set-NetFirewallRule -DisplayGroup 'Windows Firewall Remote Management' -Enabled true
-
@Dashrender said in Building a Hyper-V 2016 host Take 2:
FYI - Hyper-v 2019 currently is broken. The March 2019 update supposedly fixes the RDP issue.
Though you still can't run
Set-NetFirewallRule -DisplayGroup 'Windows Firewall Remote Management' -Enabled true
What about PowerShell Remoting, that still working?
-
@Dashrender said in Building a Hyper-V 2016 host Take 2:
FYI - Hyper-v 2019 currently is broken. The March 2019 update supposedly fixes the RDP issue.
Though you still can't run
Set-NetFirewallRule -DisplayGroup 'Windows Firewall Remote Management' -Enabled true
List things form the local console.
Get-NetFirewallRule | fl Name,DisplayGroup
Edit better solution (on Hyper-V Server 2012R2):
Get-NetFirewallRule | Group-Object -Property DisplayGroup | Format-Table -Property Count,Name
-
Looks like they might have renamed it
-
@Dashrender said in Building a Hyper-V 2016 host Take 2:
Looks like they might have renamed it
See my edit.
-
New command for firewall remote management
Set-NetFirewallRule -DisplayGroup 'Windows Defender Firewall Remote Management' -Enable true
-
just to show the list
-
I can confirm that RDP works again.