Hi,
I upgraded my Juno r1 board with the most recent Linaro release (18.01). Everything works well except the network. I tried both the android build and openembedded build, however, both builds failed to connect to the network. Once i revert it back to the release 15.09, the network comes back. I thought it may related to the ip protocol. My network still uses IPv4, but it seems that the release 18.01 is trying to use IPV6 to connect to the network. Am I right about this? And is there any easy fix to this problem?
Thanks in advance!
Best Regards,
Zhenyu
Thanks, Mark! It works now!
I don't think this is an IPv4/IPv6 issue.
I just tried the 18.01 LAMP binaries. Networking works fine for me. However...
By default eth0 isn't configured correctly. This looks like a bug introduced by a change of interface name. I'll raise this as an issue internally, but you can fix it fairly easily[1].
You can also bring up eth1 (note eth1 uses the *front* ethernet port)
root@genericarmv8:~# ifup eth1udhcpc (v1.24.1) startedSending discover...Sending select for 10.1.79.67...Lease of 10.1.79.67 obtained, lease time 3600/etc/udhcpc.d/50default: Adding DNS 10.1.2.24/etc/udhcpc.d/50default: Adding DNS 10.1.2.23
root@genericarmv8:~# ifconfigenp8s0 Link encap:Ethernet HWaddr 00:02:F7:00:66:E4 UP BROADCAST MULTICAST MTU:1500 Metric:1 RX packets:261 errors:0 dropped:0 overruns:0 frame:0 TX packets:25 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:25334 (24.7 KiB) TX bytes:3936 (3.8 KiB) Interrupt:51
eth1 Link encap:Ethernet HWaddr 00:02:F7:00:66:E3 inet addr:10.1.79.67 Bcast:10.1.79.255 Mask:255.255.254.0 UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:716 errors:0 dropped:12 overruns:0 frame:0 TX packets:42 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:67805 (66.2 KiB) TX bytes:6941 (6.7 KiB) Interrupt:30
lo Link encap:Local Loopback inet addr:127.0.0.1 Mask:255.0.0.0 UP LOOPBACK RUNNING MTU:65536 Metric:1 RX packets:171 errors:0 dropped:0 overruns:0 frame:0 TX packets:171 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:12966 (12.6 KiB) TX bytes:12966 (12.6 KiB)
Regards
MarkN.
[1] you can fix this by editing /etc/network/interfaces as follows:
# Wired or wireless interfaces
#auto eth0
#iface eth0 inet dhcp
auto enp8s0
iface enp8s0 inet dhcp
View all questions in Arm Development Platforms forum