<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://dikapediav2.com/wiki/index.php?action=history&amp;feed=atom&amp;title=Ethtool</id>
	<title>Ethtool - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://dikapediav2.com/wiki/index.php?action=history&amp;feed=atom&amp;title=Ethtool"/>
	<link rel="alternate" type="text/html" href="https://dikapediav2.com/wiki/index.php?title=Ethtool&amp;action=history"/>
	<updated>2026-05-15T09:12:20Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.41.0</generator>
	<entry>
		<id>https://dikapediav2.com/wiki/index.php?title=Ethtool&amp;diff=72&amp;oldid=prev</id>
		<title>Ardika Sulistija: Created page with &quot;&lt;b&gt;ethtool&lt;/b&gt; - query or control network driver and hardware settings. Use this command to verify that your link is up (the Ethernet is physically connected to the network).    https://www.poftut.com/linux-ethtool-tutorial-usage-examples/   ====Is it plugged in?==== ----   On a physical server, with physical cables connected to them, it would probably look like:  $ sudo ethtool eth0  Settings for eth0:  Supported ports: [ TP ]  Supported link modes:   10baseT/Half 10bas...&quot;</title>
		<link rel="alternate" type="text/html" href="https://dikapediav2.com/wiki/index.php?title=Ethtool&amp;diff=72&amp;oldid=prev"/>
		<updated>2024-08-27T00:13:28Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;&amp;lt;b&amp;gt;ethtool&amp;lt;/b&amp;gt; - query or control network driver and hardware settings. Use this command to verify that your link is up (the Ethernet is physically connected to the network).    https://www.poftut.com/linux-ethtool-tutorial-usage-examples/   ====Is it plugged in?==== ----   On a physical server, with physical cables connected to them, it would probably look like:  $ sudo ethtool eth0  Settings for eth0:  Supported ports: [ TP ]  Supported link modes:   10baseT/Half 10bas...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;&amp;lt;b&amp;gt;ethtool&amp;lt;/b&amp;gt; - query or control network driver and hardware settings. Use this command to verify that your link is up (the Ethernet is physically connected to the network). &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
https://www.poftut.com/linux-ethtool-tutorial-usage-examples/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Is it plugged in?====&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
On a physical server, with physical cables connected to them, it would probably look like:&lt;br /&gt;
 $ sudo ethtool eth0&lt;br /&gt;
 Settings for eth0:&lt;br /&gt;
 Supported ports: [ TP ]&lt;br /&gt;
 Supported link modes:   10baseT/Half 10baseT/Full&lt;br /&gt;
                         100baseT/Half 100baseT/Full&lt;br /&gt;
                         1000baseT/Half 1000baseT/Full&lt;br /&gt;
 Supports auto-negotiation: Yes&lt;br /&gt;
 Advertised link modes:  10baseT/Half 10baseT/Full&lt;br /&gt;
                         100baseT/Half 100baseT/Full&lt;br /&gt;
                         1000baseT/Half 1000baseT/Full&lt;br /&gt;
 Advertised auto-negotiation: Yes&lt;br /&gt;
 Speed: 100Mb/s&lt;br /&gt;
 Duplex: Full&lt;br /&gt;
 Port: Twisted Pair&lt;br /&gt;
 PHYAD: 0&lt;br /&gt;
 Transceiver: internal&lt;br /&gt;
 Auto-negotiation: on&lt;br /&gt;
 Supports Wake-on: pg&lt;br /&gt;
 Wake-on: d&lt;br /&gt;
 Current message level: 0x000000ff (255)&lt;br /&gt;
 Link detected: yes&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Note&amp;lt;/b&amp;gt;: Link detected: yes.&lt;br /&gt;
** If this was &amp;quot;no&amp;quot;, you would want to physically inspect dev1&amp;#039;s physical network connection. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
On my RHEL 7 instance:&lt;br /&gt;
 $ sudo ethtool eth0&lt;br /&gt;
 Settings for eth0:&lt;br /&gt;
        Current message level: 0x000004e3 (1251)&lt;br /&gt;
                               drv probe ifup rx_err tx_err tx_done&lt;br /&gt;
        Link detected: yes&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;ethtool&amp;lt;/b&amp;gt; has uses beyond simply checking for a link. It can also be used to diagnose and correct duplex issues. When a Linux server connects to a network, typically it autonegotiates with the network to see what speeds it can use and whether the network supports full duplex. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The &amp;lt;b&amp;gt;Speed&amp;lt;/b&amp;gt; and &amp;lt;b&amp;gt;Duplex&amp;lt;/b&amp;gt; lines in the example &amp;lt;b&amp;gt;ethtool&amp;lt;/b&amp;gt; output illustrate what a 100Mb/s, full duplex network should report. If you notice slow network speeds on a host, its speed and duplex settings are a good place to look. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Run &amp;lt;b&amp;gt;ethtool&amp;lt;/b&amp;gt; as in the previous example, and if you notice &amp;lt;b&amp;gt;Duplex&amp;lt;/B&amp;gt; set to &amp;lt;b&amp;gt;Half&amp;lt;/b&amp;gt;, then run:&lt;br /&gt;
 $ sudo ethtool -s eth0 autoneg off duplex full&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
References:&lt;br /&gt;
[+] https://learning.oreilly.com/library/view/devops-troubleshooting-linux/9780133035513/ch05.html&lt;/div&gt;</summary>
		<author><name>Ardika Sulistija</name></author>
	</entry>
</feed>