Remember to maintain security and privacy. Do not share sensitive information. Procedimento.com.br may make mistakes. Verify important information. Termo de Responsabilidade
Peer caching is a method used to optimize bandwidth usage and improve download speeds by allowing systems within the same network to share downloaded content. In a Windows environment, this concept is implemented through features like Delivery Optimization and BranchCache. These features enable Windows machines to share updates and other content, reducing the load on the network's external bandwidth.
Delivery Optimization is a peer-to-peer client update service that uses PCs, both local and non-local devices, to deliver updates to Windows 10 and Windows 11 devices. It is enabled by default and works seamlessly in the background.
Via Group Policy:
Computer Configuration
-> Administrative Templates
-> Windows Components
-> Delivery Optimization
.Download Mode
and set it to LAN
to ensure that downloads are shared only within the local network.Via PowerShell:
Use the following command to set the download mode to LAN:
Set-DeliveryOptimizationGroupPolicy -Policy DownloadMode -Value 1
BranchCache is another feature available in Windows environments that allows content from file and web servers on a WAN to be cached on computers at a local branch office. This reduces the amount of traffic over the WAN.
Enable BranchCache on a Server:
Add Roles and Features
.BranchCache
under the File and Storage Services
role.Configure Client Computers:
Enable BranchCache with the following command:
netsh branchcache set service mode=distributed
Verify BranchCache Status:
Use the following command to check the status:
netsh branchcache show status all