exam questions

Exam 70-743 All Questions

View all questions & answers for the 70-743 exam

Exam 70-743 topic 2 question 6 discussion

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

You have two servers named Server1 and Server2 that run Windows Server 2016.
You plan to implement Storage Replica to replicate the contents of volumes on Server1 to Server2.
You need to ensure that the replication traffic between the servers is limited to a maximum of 100 Mbps.
Which cmdlet should you run?

  • A. Set-NetUDPSetting
  • B. New-StorageQosPolicy
  • C. Set-SmbBandwidthLimit
  • D. Set-NetTCPSetting
  • E. Set-NetworkController
  • F. New-NetTransportFilter
  • G. Set-StorageQosPolicy
  • H. New-NetQosPolicy
Show Suggested Answer Hide Answer
Suggested Answer: C 🗳️
PS C:\> Set-SmbBandwidthLimit -Category Default -BytesPerSecond 100MB
This command limits SMB traffic to 100 megabytes per second for traffic that is unrelated to Hyper-V over SMB or Live Migration.
References:
https://docs.microsoft.com/en-us/powershell/module/smbshare/set-smbbandwidthlimit?view=win10-ps

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
MelvinJohn
4 years, 10 months ago
C -- To configure replication bandwidth maximum usage, use the SMB bandwidth limiter. This is a global setting for all Storage Replica traffic and therefore affects all replication from this server. Set-SmbBandwidthLimit -Category StorageReplication -BytesPerSecond x https://docs.microsoft.com/en-us/windows-server/storage/storage-replica/storage-* You can also use network QoS policies to shape Storage Replica traffic. Set-NetQosPolicy -InputObject -ThrottleRateActionBitsPerSecond <UInt64> https://docs.microsoft.com/en-us/powershell/module/netqos/set-netqospolicy?view=winserver2012r2-ps&redirectedfrom=MSDN
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 ...