Respected Sir,
I cannot ethernet with my Luckfox pico
# ip route
default via 192.168.0.5 dev eth0
172.32.0.0/16 dev usb0 scope link src 172.32.0.93
192.168.0.0/24 dev eth0 scope link src 192.168.0.128
i need to set it as static ip so can i achieve it
Cannot connect ethernet from Luckfox pico
Reflash the system and connect the other end of the development board to a router or switch. If you are connecting it to a computer, refer to this guide. Everything should work correctly.
https://wiki.luckfox.com/Luckfox-Pico/L ... er-to-eth0
https://wiki.luckfox.com/Luckfox-Pico/L ... er-to-eth0
Sir i have connected luckfox pico to the router but it is taking the router ip as default gateway ip but i want change it is not changing
# ip route add default via 192.168.0.11 dev eth0
ip: RTNETLINK answers: File exists
# ip route show default # Check default gateway
default via 192.168.0.5 dev eth0
172.32.0.0/16 dev usb0 scope link src 172.32.0.93
192.168.0.0/24 dev eth0 scope link src 192.168.0.128
# ip route add default via 192.168.0.11 dev eth0
ip: RTNETLINK answers: File exists
# ip route show default # Check default gateway
default via 192.168.0.5 dev eth0
172.32.0.0/16 dev usb0 scope link src 172.32.0.93
192.168.0.0/24 dev eth0 scope link src 192.168.0.128
# ip route del default via 192.168.0.5 dev eth0
# ip route show default # Check default gateway
default via 192.168.0.5 dev eth0
172.32.0.0/16 dev usb0 scope link src 172.32.0.93
192.168.0.0/24 dev eth0 scope link src 192.168.0.128
as it is holding the 192,168,0.5 i cannot access ping 8.8.8.8
# ip route show default # Check default gateway
default via 192.168.0.5 dev eth0
172.32.0.0/16 dev usb0 scope link src 172.32.0.93
192.168.0.0/24 dev eth0 scope link src 192.168.0.128
as it is holding the 192,168,0.5 i cannot access ping 8.8.8.8
Turn off the computer firewall; it is likely that the firewall on your computer is blocking ICMP (ping) requests.danielclover wrote: ↑2024-07-07 10:04 Hi Taylor, i was facing the same issue. can't usb over network.