📑
Joe's Notes and Links
  • About this site
  • About me
    • Links
    • Awards & Certifications
      • Veeam
      • Kasten
      • AWS
      • Other
      • Planned Certifications
  • Backup Theory
    • Basics Articles
      • I - Why Snapshots Are Not Backups: Understanding the Crucial Differences
      • II - Why Replication is not Backup: Understanding the Differences
      • III - Backup Best Practices: Building a Robust Data Protection Solution
      • IV - Understanding Backup Strategies: Full, Incremental, and Differential Backups
      • V - Understanding RPO and RTO
      • VI - Versioning and Retention Policies: The Backbone of Data Protection Solutions
      • VII - Implementing Backup Scheduling for Optimal Data Protection
      • VIII - Data Classification: A Crucial Pillar in Effective Backup and Recovery Strategies
      • IX - Extending Backup Measurements - Understanding RTO and RTA
    • Terminology
  • Backup Products
    • Veeam
      • Veeam Legends VBR Pocketbook V1
      • PostgreSQL
      • Powershell Scripting (Veeam specific)
        • How to automate Veeam Backup and Replication Global Exclusion Lists
        • Get Result of Backups for one VM for a Year
        • Multitag Jobs
      • Backup & Replication
        • Error "Failed to upgrade host components. Error: 'Minimum supported OS version for Veeam VSS..."
        • [Changed in V11] - Handling of exported and orphaned backups
        • [New in V12] - 2FA Login is not available with expired license
        • Quick Backup of a VM associated to multiple Backup jobs
        • Backup of Windows 10 PC with server managed agent
        • VBR Console – users and roles and job notifications
      • Agents
        • USB Disk as Veeam Repository in a private Environment
      • Veeam and Tape
        • Veeam and Tape I - Moving a tape library with data from one VBR server to another
        • Veeam and Tape II - Moving a tape library with data from one VBR server to another
        • Veeam and Tape III - Restore of Backup Job Files from Tape which were backed up with a File-to-Tape
        • Veeam and Tape IV - Cataloging a tape with a huge number of files
        • Veeam and Tape V - Usage of a S3 compatible Object Storage Gateway
      • Plugins for Enterprise Applications
        • Plugin for Oracle RMAN
          • Veeam RMAN Plugin – Update of Backup Meta Data
          • Veeam RMAN Plugin - ORA-01012 Error
          • Parameter "set-force-delete"
          • Parameter "logsDir"
      • Certification & Accreditation
        • Veeam Certified Architect (VMCA) 2022 - course and exam experience
        • New VMSP and VMTSP 2023 Accreditations available in ProPartner Portal
      • Service Provider Console
        • Deactivate Admins Group
      • Links
      • Miscellaneous
    • Spectrum Protect
      • Links
      • Backup/Archive Client
        • log4j Vulnerability - BA Client Fix and Workaround
  • Storage
    • Storage
      • Links
      • Brocade
        • Useful FOS Commands
  • Virtualization
    • VMware
      • Links
      • PowerCLI
        • How to install VMware PowerCLI offline
        • Prepare the connection to the vCenter
  • Automation and Scripting
    • Powershell scripting
      • Set PowerShell Execution Policies
      • Word-wrap PowerShell commands
      • Get Information about Networking
      • Check signature of a DLL
      • Query all VMs with mounted ISO files
      • Dismount all mounted ISO files on a cluster
      • List all Networks of all VMs on a Cluster
      • List all networks on all reachable cluster
  • OS
    • Windows
      • NTP
      • How to install VMware PowerCLI offline
      • Configure MTU Size
    • Linux
      • Routen setzen
      • Infos about FC and WWNs
  • Cloud
    • AWS
      • Links
  • Databases
    • Links
  • Tools
    • useful Tools and Websites
  • Community
    • Other great blogs/communities
Powered by GitBook
On this page
  • Procedure 1
  • Procedure 2
  1. OS
  2. Windows

Configure MTU Size

PreviousHow to install VMware PowerCLI offlineNextLinux

Last updated 4 months ago

It makes sense to set the MTU size from 1500 to 9000 for Ethernet connections with a bandwidth of 10Gb/sec or above.

Procedure 1

  • In the Control Panel, select Network and Internet > Network Connections > Change Adapter Settings

  • Right-click the icon of the desired network connected, and then click Properties.

  • Click the Networking tab.

  • Click Configure.

  • Click the Advanced Settings tab.

  • In Properties, select Jumbo Packet.

  • In Value, select 9014 Bytes.

  • Click OK.

  • Deactivate and activate the network connection

  • If you have changed the MTU size for adapters that belong to a LACP channel deactivate and activate all virtual adapters that run on the LACP channel.

  • Close Network Connections

  • Open Command Prompt as an administrator.

  • Use the netsh command to show the index (Idx) and MTU of each network interface.

  • Execute the following command:

netsh interface ipv4 show interface

Output:

Idx     Met         MTU          State                Name
---  ----------  ----------  ------------  ---------------------------
  1          75  4294967295  connected     Loopback Pseudo-Interface 1
 11           5        1500  disconnected  Embedded NIC 2
 16          25        1500  connected     EmbeddedNIC1_VL77
  9          10        9000  connected     50GE_Teaming_Interface - VLAN 1
 17          10        9000  connected     50GE_Teaming_Interface - VLAN 2
 15          10        9000  connected     50GE_Teaming_Interface - VLAN 3
  4          10        9000  connected     50GE_Teaming_Interface - VLAN 4
 10          10        9000  connected     50GE_Teaming_Interface - VLAN 5

Make sure, that the MTU is shown as 9000 for a desired connections

Procedure 2

Open Command Prompt as an administrator.

Execute the following command:

netsh interface ipv4 show interface

Output:

Idx     Met         MTU          State                Name
---  ----------  ----------  ------------  ---------------------------
  1          75  4294967295  connected     Loopback Pseudo-Interface 1
 11           5        1500  disconnected  Embedded NIC 2
 16          25        1500  connected     EmbeddedNIC1_VL77
  9          10        1500  connected     50GE_Teaming_Interface - VLAN 1
 17          10        1500  connected     50GE_Teaming_Interface - VLAN 2
 15          10        1500  connected     50GE_Teaming_Interface - VLAN 3
  4          10        1500  connected     50GE_Teaming_Interface - VLAN 4
 10          10        1500  connected     50GE_Teaming_Interface - VLAN 5

Verify the index (idx) if the desired network connection

If the MTU is 9000, then no action is necessary. If it is not, execute the following command

netsh interface ipv4 set interface 4 mtu=9000

Verify the set value

netsh interface ipv4 show interface