--- title: "Set-VBRNetworkTrafficRuleOptions" description: "This cmdlet modifies settings of global network traffic rules." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/set-vbrnetworktrafficruleoptions.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Backup Infrastructure > Network Traffic Management > Set-VBRNetworkTrafficRuleOptions" dateModified: "2026-08-19" --- # Set-VBRNetworkTrafficRuleOptions ## Short Description Modifies settings of global network traffic rules. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Set-VBRNetworkTrafficRuleOptions [-EnableMultipleUploadStreams] [-StreamsPerJobCount ] [-EnableIPv6] [] ``` ## Detailed Description This cmdlet modifies settings of global network traffic rules. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

EnableIPv6

Enables the IPv4/IPv6 dual stack mode is enabled or disabled.

SwitchParameter

False

Named

False

EnableMultipleUploadStreams

Enables multithreaded data transfer.

SwitchParameter

False

Named

False

StreamsPerJobCount

Specifies a number of TCP/IP transfer connection for every job session.

Int32

False

Named

False

`` This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see [ Microsoft Docs](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_commonparameters?view=powershell-7). ## Output Object [`VBRNetworkTrafficRuleOptions`](vbrnetworktrafficruleoptions.md) ## Examples ::: example ### Modifying Settings of Global Network Traffic Rules This command enables multithreaded data transfer, sets a number of TCP/IP transfer connection for every job session to 8, and disables IPv6. ``` Set-VBRNetworkTrafficRuleOptions -EnableMultipleUploadStreams -StreamsPerJobCount 8 -EnableIPv6:$false ``` :::