12-11-2019, 01:47 PM
@Facel
If you are curious about the actual negotiated configuration of your Ethernet interface, you could try this from the command line
This tells a lot about the capabilities of the interface hardware and driver. Note the Speed: and Duplex: lines. They describe my current connection.
Also, you can try
You should see all zeros on the RX errors/TX errors lines. (Don't know what your JRMC is running on but you could try the equivalent command on that host too.)
Regards,
Kent
If you are curious about the actual negotiated configuration of your Ethernet interface, you could try this from the command line
Code:
pi@moode4b:~ $ ethtool eth0
Settings for eth0:
Supported ports: [ TP MII ]
Supported link modes: 10baseT/Half 10baseT/Full
100baseT/Half 100baseT/Full
1000baseT/Half 1000baseT/Full
Supported pause frame use: Symmetric Receive-only
Supports auto-negotiation: Yes
Supported FEC modes: Not reported
Advertised link modes: 10baseT/Half 10baseT/Full
100baseT/Half 100baseT/Full
1000baseT/Half 1000baseT/Full
Advertised pause frame use: Symmetric Receive-only
Advertised auto-negotiation: Yes
Advertised FEC modes: Not reported
Link partner advertised link modes: 10baseT/Half 10baseT/Full
100baseT/Half 100baseT/Full
1000baseT/Half 1000baseT/Full
Link partner advertised pause frame use: Symmetric Receive-only
Link partner advertised auto-negotiation: Yes
Link partner advertised FEC modes: Not reported
Speed: 1000Mb/s
Duplex: Full
Port: MII
PHYAD: 1
Transceiver: internal
Auto-negotiation: on
Cannot get wake-on-lan settings: Operation not permitted
Current message level: 0x00000007 (7)
drv probe link
Link detected: yes
This tells a lot about the capabilities of the interface hardware and driver. Note the Speed: and Duplex: lines. They describe my current connection.
Also, you can try
Code:
pi@moode4b:~ $ ifconfig eth0
eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 192.168.1.174 netmask 255.255.255.0 broadcast 192.168.1.255
inet6 fe80::7ca3:e9ee:ee53:53f2 prefixlen 64 scopeid 0x20<link>
ether dc:a6:32:0e:e6:25 txqueuelen 1000 (Ethernet)
RX packets 4747 bytes 563750 (550.5 KiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 1724 bytes 1773130 (1.6 MiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
You should see all zeros on the RX errors/TX errors lines. (Don't know what your JRMC is running on but you could try the equivalent command on that host too.)
Regards,
Kent