I found more information on the problem using command
@ubuntu:~$ sudo lshw
*-network:0 | |
description: Ethernet interface | |
product: Ethernet 10G 2P X710 Adapter | |
vendor: Intel Corporation | |
physical id: 0 | |
bus info: pci@0000:0a:00.0 | |
logical name: p2p1 | |
version: 01 | |
serial: 3c:fd:fe:9d:40:38 | |
capacity: 1Gbit/s | |
width: 64 bits | |
clock: 33MHz | |
capabilities: pm msi msix pciexpress vpd bus_master cap_list rom ethernet physical fibre 1000bt-fd | |
configuration: autonegotiation=off broadcast=yes driver=i40e driverversion=1.5.16 duplex=full firmware=5.04 0x800024cd 0.0.0 latency=0 link=yes multicast=yes port=fibre | |
resources: irq:43 memory:f1000000-f17fffff memory:f0ff0000-f0ff7fff memory:df000000-df07ffff memory:ee800000-ee9fffff memory:edf00000-edf7ffff | |
*-network:1 DISABLED | |
description: Ethernet interface | |
product: Ethernet 10G 2P X710 Adapter | |
vendor: Intel Corporation | |
physical id: 0.1 | |
bus info: pci@0000:0a:00.1 | |
logical name: p2p2 | |
version: 01 | |
serial: 3c:fd:fe:9d:40:39 | |
capacity: 1Gbit/s | |
width: 64 bits | |
clock: 33MHz | |
capabilities: pm msi msix pciexpress vpd bus_master cap_list rom ethernet physical 1000bt-fd autonegotiation | |
configuration: autonegotiation=off broadcast=yes driver=i40e driverversion=1.5.16 firmware=5.04 0x800024cd 0.0.0 latency=0 link=no multicast=yes | |
resources: irq:43 memory:f0000000-f07fffff memory:efff0000-efff7fff memory:df080000-df0fffff memory:eea00000-eebfffff memory:eee00000-eee7ffff |
In the settings shows that autonegotiation=off.
When I try to enable autonegotiation
@ubuntu:~$ sudo ethtool -s p2p1 autoneg on
we have the answer:
Cannot set new settings: Invalid argument
not setting autoneg
And dmesg gives a message
[2939524.031187] i40e 0000:0a:00.0 p2p1: Autoneg not supported on this phy
Is it possible to enable auto-negotiation? and why is he not supported the PHY?