exam questions

Exam 70-741 All Questions

View all questions & answers for the 70-741 exam

Exam 70-741 topic 2 question 19 discussion

Actual exam question from Microsoft's 70-741
Question #: 19
Topic #: 2
[All 70-741 Questions]

You are deploying Software Defined Networking (SDN) by using Windows Server 2016.
You plan to deploy a three-node Network Controller cluster. You plan to use virtual machines for the network controller and the management client. The virtual machines will NOT be domain-joined.
You need to configure authentication for the cluster.
Which command should you run?

  • A. Install-NetworkController ""Node @{Node1, Node2, Node3} ""ClientAuthentication X509
  • B. Install-NetworkControllerCluster ""Node @{Node1, Node1, Node3} ""ClientAuthentication Kerberos
  • C. Install-NetworkControllerCluster ""Node @{Node1, Node1, Node3} ""ClientAuthentication X509
  • D. Install-NetworkControllerCluster ""Node @{Node1, Node1, Node3} ""ClientAuthentication None
  • E. Install-NetworkController ""Node @{Node1, Node2, Node3} ""ClientAuthentication Kerberos
Show Suggested Answer Hide Answer
Suggested Answer: C 🗳️
References:
https://docs.microsoft.com/en-us/windows-server/networking/sdn/security/nc-security

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
MrRiver
Highly Voted 5 years, 8 months ago
if the question ist not wrong, it must be A Install-NetworkControllerCluster has not switch -ClientAuthentication (only -ClusterAuthentication) Install-NetworkController hast the switch -ClientAuthentication so its one of those 2 ... and you need cert auth because you have no domain so its 509 (not kerberos) https://github.com/MicrosoftDocs/windowsserverdocs/blob/master/WindowsServerDocs/networking/sdn/deploy/Deploy-Network-Controller-using-Windows-PowerShell.md#bkmk_script
upvoted 10 times
morlu
5 years, 6 months ago
This is correct. Answer is A - the Install-NetworkControllerCluster command does not have the switch in C.
upvoted 3 times
ITGEEK
5 years, 5 months ago
Morlu. You should check the A option, its saying Install-NetworkController not NetworkControllerCluster
upvoted 4 times
pekalyok
5 years, 3 months ago
answer is shown correctly - read the question - You plan to deploy a three-node Network Controller cluster.!!!!! since its not in domain means auth is 509
upvoted 2 times
...
...
...
[Removed]
5 years, 1 month ago
To add to this, when using the install-networkcontrollercluster command you are not at the stage yet where you set up the authentication as that is at a later step. The later step being install-networkcontroller.
upvoted 1 times
...
...
alexnt
Highly Voted 4 years, 11 months ago
In the exam, if the parameter is "-ClientAuthentication" then correct answer is: Install-NetworkController -Node @{Node1, Node2, Node3} -ClientAuthentication X509 and if the parameter is "-ClusterAuthentication" then the answer would be: Install-NetworkControllerCluster -Node @{Node1, Node1, Node3} -ClusterAuthentication X509
upvoted 7 times
...
panda
Most Recent 4 years, 5 months ago
Following questions including this question are similar questions. page34/question07 domain-joined configure for virtual machine. page36/question19 no-domain-joined configure for Hyper-V host.
upvoted 1 times
...
GoldenFox
4 years, 6 months ago
Likely answer is C, but pay attention to the wording in exam: Install-NetworkController -CLIENTauthentication *** Install-NetworkControllerCluster -CLUSTERauthentication *** Not domain joined, so it will be >X509< and NOT kerberos
upvoted 1 times
...
Milos99
4 years, 7 months ago
l will agree with MrRiver (source: https://docs.microsoft.com/en-us/windows-server/networking/sdn/security/nc-security ) X509. Use X509 for certificate-based authentication for management clients not joined to an Active Directory domain. You must enroll certificates to all Network Controller cluster nodes and management clients. Also, all nodes and management clients must trust each others' certificates. You can configure the Authentication mode for Northbound communication by using the Windows PowerShell command Install-NetworkController with the ClientAuthentication parameter. Pls delete misleading comments, there are us who still are chasing the 70-741 until it retires and comment sections like this is confusing shit out of me...
upvoted 3 times
northgaterebel
4 years, 7 months ago
I see your point. But I find that the disagreement and discussions help me question my understanding, follow links, google commands and ultimately learn much more. The resulting knowledge helps me better prepare for the questions that are not posted here. At least that's the way I choose to see it :-)
upvoted 2 times
...
...
NickTim
4 years, 7 months ago
Install a Network Controller cluster in a non domain-joined environment: Install-NetworkControllerCluster -Node @($NodeObject1,$NodeObject2,$NodeObject3) -ClusterAuthentication x509-LogLocation Source: https://docs.microsoft.com/en-us/powershell/module/networkcontroller/install-networkcontrollercluster?view=win10-ps
upvoted 3 times
...
NickTim
4 years, 8 months ago
Got this at Exam
upvoted 3 times
...
jam7272
4 years, 9 months ago
Remember, these questions are likely to have typos and not be entirely correct. So you can expect deviation from the real questions. The best way to deal with this is to understand what would be the correct answer - even if it is not displayed exactly. I would personally go for C (even although the switch should be -clusterauthentication). I am assuming that is just a typo here...
upvoted 4 times
...
VeiN
4 years, 10 months ago
There is no proper answer here. Since: The virtual machines will NOT be domain-joined. => x509 You need to configure authentication for the cluster. => Install-NetworkControllerCluster Install-NetworkController is next step, see description: https://docs.microsoft.com/en-us/powershell/module/networkcontroller/install-networkcontrollercluster?view=win10-ps So it should be: Install-NetworkControllerCluster -Node @{Node1, NODE2, Node3} -CLUSTERAuthentication X509
upvoted 4 times
...
Kamikazekiller
4 years, 11 months ago
Answer: C
upvoted 2 times
...
GenjamBhai
5 years, 2 months ago
Install-NetworkControllerCluster -Node @($NodeObject1,$NodeObject2,$NodeObject3) -ClusterAuthentication x509 = This command installs a Network Controller cluster in a non-domain-joined environment. The authentication used between the cluster nodes is a X.509 certificate. https://docs.microsoft.com/en-us/powershell/module/networkcontroller/install-networkcontrollercluster?view=win10-ps
upvoted 3 times
...
freefree
5 years, 3 months ago
C is correct PS C:\> Install-NetworkControllerCluster -Node @($NodeObject1,$NodeObject2,$NodeObject3) -ClusterAuthentication x509-LogLocation "\\share\diagnostics" -StoreAccessCredential $Cred -CredentialEncryptionCertificate $Cert
upvoted 3 times
Geqsogen
5 years, 1 month ago
But answer C contains "-CLIENTauthentication"!
upvoted 3 times
...
...
sdjam
5 years, 3 months ago
This question and answers have some typo errors that make some confusions... Here is an example taken on : https://docs.microsoft.com/en-us/powershell/module/networkcontroller/install-networkcontroller?view=win10-ps This command is the final command """ PS C:\> Install-NetworkController -Node @($Node01,$Node02,$Node03) -ClientAuthentication Kerberos -ClientSecurityGroup "Contoso\RestClients" -RestIpAddress "10.0.0.1/24" -StoreCertificate $Certificate -EnableAllLogs The final command deploys the network controller in a domain joined environment. Network controller uses Kerberos authentication between the cluster nodes, and between the REST clients and network controller. Only clients that are part of the RestClients security group can communicate with the network controller. The certificate in $Certificate is used to encrypt traffic between the REST clients and network controller.
upvoted 1 times
stefano1856
5 years, 1 month ago
the question refer to configure authentication for the cluster i think ther is a typo and the answer should be like this Install-NetworkControllerCluseter ""Node @{Node1, Node1, Node3} ""Cluster Authentication X509 see https://docs.microsoft.com/en-us/powershell/module/networkcontroller/install-networkcontrollercluster?view=win10-ps example 3
upvoted 2 times
...
...
Ario
5 years, 4 months ago
C is Correct
upvoted 3 times
...
Sparrow033
5 years, 4 months ago
I agree with Mjwc, the Install-networkcontrollercluster command does not support the -clientuthentication parameter, but the Install-networkcontroller does accept that -clientauthentication command, so for me A is the correct option
upvoted 2 times
...
MentalG
5 years, 6 months ago
So is it A or C?
upvoted 1 times
SmackedWookiee
5 years, 6 months ago
I'm going with A. The Install-NetworkController has a -ClientAuthentication switch. The Install-NetworkControllerCluster cmdlet does not.
upvoted 2 times
...
Mjwc
5 years, 5 months ago
Going with A, seeing -ClientAuthentication does not exist for Install-networkcontrollercluster (only -Clusterauthentication) Source: https://docs.microsoft.com/en-us/powershell/module/networkcontroller/install-networkcontrollercluster?view=win10-ps
upvoted 3 times
...
...
Mriji
5 years, 7 months ago
However, 'C' has {Node1, Node1, Node3}, Node 1 twice!
upvoted 2 times
jelly_baby
5 years, 3 months ago
I'm sure it's a typo...
upvoted 2 times
...
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...