Our Leadership team is attending CloudFest 2026, from Mar 22 - April 8. Schedule a Connect

Our Leadership team is attending CloudFest 2026, from Mar 22 - April 8.

Discuss MSP growth, DevOps excellence, and Cloud Transformation. Available for 1:1 meetings, Schedule a Connect

  • DevOps
    Case Study

    How we helped a development company rebuild DevOps for efficiency and scale.

    READ CASESTUDY
    icon

    24/7 DevOps as a Service

    Round-the-clock DevOps for uninterrupted efficiency.

    icon

    Infrastructure as a Code

    Crafting infrastructure with ingenious code.

    icon

    CI/CD Pipeline

    Automated CI/CD pipeline for seamless deployments.

    icon

    DevSecOps

    Integrated security in continuous DevOps practices.

    icon

    Hire DevOps Engineers

    Level up your team with DevOps visionaries.

    icon

    Consulting Services

    Navigate success with expert DevOps consulting.

  • TechOps
    Case Study

    How a US hosting leader scaled with us!

    READ CASESTUDY

    WEB HOSTING SUPPORT

    icon

    HelpDesk Support

    Highly skilled 24/7 HelpDesk Support

    icon

    Product Support

    Boost your product support with our expertise.

    MANAGED SERVICES

    icon

    Server Management

    Don’t let server issues slow you down. Let us manage them for you.

    icon

    Server Monitoring

    Safeguard your server health with our comprehensive monitoring solutions.

    STAFF AUGMENTATION

    icon

    Hire an Admin

    Transform your business operations with our expert administrative support.

    icon

    Hire a Team

    Augment your workforce with highly skilled professionals from our diverse talent pool.

  • CloudOps
    Case Study

    How we helped a Private Deemed University in India, save US $3500/m on hosting charges!

    READ CASESTUDY
    icon

    AWS Well Architected Review

    Round-the-clock for uninterrupted efficiency

    icon

    Optimize

    Efficient CloudOps mastery for seamless cloud management

    icon

    Manage

    Automated CI/CD pipeline for seamless deployments

    icon

    Migrate

    Upgrade the journey, Migrate & Modernize seamlessly

    icon

    Modernize

    Simplify compliance complexities with our dedicated services

    icon

    FinOps as a Service

    FinOps as a Service

  • SecOps
    Case Study

    Enabling financial grade platforms through strategic cloud modernisation.

    READ CASESTUDY
    icon

    VAPT

    Vulnerability Assessment and Penetration Testing

    icon

    Source Code Review

    Ensuring source code security ans safe practices to reduce risks

    icon

    Security Consultation

    On demand services for improving server security

    icon

    System Hardening

    Reduced vulnerability and proactive protection

    icon

    Managed SoC

    Monitors and maintains system security. Quick response on incidents.

    icon

    Compliance as a Service

    Regulatory compliance, reduced risk

  • Insights
    Case Study

    How we helped a Private Deemed University in India, save US $3,500/m on hosting charges!

    READ CASESTUDY
    icon

    Blog

    Explore our latest articles and insights

    icon

    Case Studies

    Read about our client success stories

    icon

    Flipbook

    Explore our latest Flipbook

    icon

    Events

    Join us at upcoming events and conferences

    icon

    Webinars

    Watch our educational webinar series

  • Our Story
  • Contact Us

Interested to collaborate?

Get in touch with us!

Ready to elevate your business with certified cloud expertise? Contact us today to learn how our team can help you leverage cloud technology to drive growth, streamline operations, and enhance security.

  • AWSAWS
  • Azure CloudAzure Cloud
  • Google CloudGoogle Cloud
  • Akamai CloudAkamai Cloud
  • OVHOVH
  • Digital OceanDigital Ocean
  • HetznerHetzner
  • Managed Services Overview
  • Kubernetes Consulting
  • DevOps as a Service
  • Infrastructure Monitoring
  • Kubernetes Consultancy Services
  • K8s & Cloud native Solutions
  • 24/7 Infrastructure Monitoring
  • DevOps as a Service
  • Cloud CI/CD Solutions
  • White Labeled MSP Support
  • Our story
  • Life@SupportSages
  • Insights
  • Careers
  • Events
  • Services
  • Managed Services

aws partneraws advanced partner
LinkedInFacebookXInstagramYouTube
SupportSages

Copyright © 2008 – 2026 SupportSages Pvt Ltd. All Rights Reserved.
Privacy PolicyLegal TermsData ProtectionCookie Policy

Steps to enable auto-negotiation for your NIC

Author Profile
Sreejith K R
  • 4 min read
Steps to enable auto-negotiation for your NIC

Generating audio, please wait...

Currently, your network card should be set to 100 Mbit Full Duplex, and auto-configuration (auto-negotiation) should be off, Let us see how to enable auto negotiation

 

</span>
<pre># ethtool eth0 | egrep "Speed|Duplex|Auto-neg"

Speed: 100Mb/s

Duplex: Full

Auto-negotiation: off

After the adjustment, auto-negotiation must be activated to ensure the full network speed. Doing so will interrupt the network connection for a few seconds.

# ethtool -s eth0 autoneg on

After this change check to make sure the speed is now correct:

# ethtool eth0 | egrep "Speed|Duplex|Auto-neg"

Speed: 1000Mb/s

Duplex: Full

Auto-negotiation: on

If instead the output shows:

Speed: 100Mb/s
Duplex: Half
Auto-negotiation: on

then the switch your server is connected to has not yet been changed. In this case, you can once again set the speed manually:

# ethtool -s eth0 speed 100 duplex full autoneg off

If the speed has been set correctly, then the static setting must be removed from the configuration files.

Debian/Ubuntu
The following line in the file /etc/network/interfaces needs to be removed or changed to a comment (with a comment character #):

post-up mii-tool -F 100baseTx-FD eth0

CentOS

The following line in the file /etc/sysconfig/network-scripts/ifcfg-eth0 needs to be removed or changed to a comment (with a comment character #):

 ETHTOOL_OPTS="speed 100 duplex full autoneg off" 

OpenSuSE
The following line in the file /etc/sysconfig/network/ifcfg-eth0 needs to be removed or changed to a comment (with a comment character #):

ETHTOOL_OPTIONS="speed 100 duplex full autoneg off"

Windows Server 2008
First, open the Change adapter settings page in the Network and Sharing Center of the Control Panel.

600px-Win-switch-1-en

Via the properties of the LAN connection you can configure the network interface card.

600px-Win-switch-2-en

Under the “Advanced” tab you will find the option “Speed & Duplex“.

600px-Win-switch-3-en

Select “Auto Negotiation” once the reconfiguration of the switch has been done.

600px-Win-switch-4-en

When you confirm the setting with “OK” the network connection will be briefly interrupted. You may then need to reconnect via Remote Desktop.

VMware ESXi

Changing vmnic1 to auto-negotiation:

# esxcfg-nics -a vmnic1

Enter esxcfg-nics without any parameters to get help. For more information on configuring the duplex modes and auto-negotiation, see kb.vmware.com/kb/1004089

Reference:
http://wiki.hetzner.de/index.php/Netzwerkkonfiguration_wegen_Switchanpassung/en

 

  • Linux
Steps to enable auto-negotiation for your NIC

CentOS: Adding static IP/ IP range

CentOS:  Adding static IP/ IP range
  • General
  • Howtos
  • Linux
  • Troubleshooting
logo

How To Setup Account-Level Filter on cPanel Servers

How To Setup  Account-Level Filter on cPanel Servers
  • cPanel
  • Howtos
  • Troubleshooting
logo

rm -f *: “Argument List too long”

rm -f *:  “Argument List too long”
  • General
  • Howtos
  • Linux
  • Troubleshooting
logo

Spamming: A handbook for admins

Spamming: A handbook for admins
  • cPanel
  • Howtos
  • Linux
  • Troubleshooting
logo

Posts by Sreejith K R

Sreejith is an early adopter of upcoming technologies and has got immense interest on exploring its features for improving productivity. He is quite proficient in various scripting languages and loves to enhance work flow through development of various automation scripts. He is video game junkie and is a perfect choice for the position of a game tester :-)