Hi. Please do not top-post.
On Sun, Oct 10, 2021 at 04:50:18PM -0600, William Torrez Corea wrote: > Ready, i try to follow the instructions but, > For example with the command for disable the autonegotiation: > > sudo ethtool -A enp7s0 autoneg off > > I get the following error: > *Cannot get device pause settings: Operation not supported* You cannot change L2 settings on a interface that's UP. You need to bring it down first. I.e. sudo ip l s dev enp7s0 down sudo ethtool -A enp7s0 autoneg off sudo ip l s dev enp7s0 up And then there's this: >> Link detected: yes Your previous e-mail mentioned that interface in question has NO-CARRIER flag. This result contradicts it. So, which is which? Reco