Playing around with the OpenWrt One i got, trying to set it up.
I can ssh inside and access internet:
root@OpenWrt:~# ping -c 4 8.8.8.8
PING 8.8.8.8 (8.8.8.8): 56 data bytes
64 bytes from 8.8.8.8: seq=0 ttl=115 time=10.234 ms
64 bytes from 8.8.8.8: seq=1 ttl=115 time=11.998 ms
^C
--- 8.8.8.8 ping statistics ---
2 packets transmitted, 2 packets received, 0% packet loss
round-trip min/avg/max = 10.234/11.116/11.998 ms
However i cannot do :
root@OpenWrt:~# ping -c 4 google.com
PING google.com (2a00:1450:4007:80d::200e): 56 data bytes
--- google.com ping statistics ---
4 packets transmitted, 0 packets received, 100% packet loss
Which means i cannot update or install packages either:
root@OpenWrt:~# ping -c 4 google.com
PING google.com (2a00:1450:4007:80d::200e): 56 data bytes
--- google.com ping statistics ---
4 packets transmitted, 0 packets received, 100% packet loss
root@OpenWrt:~# opkg update
Downloading https://downloads.openwrt.org/releases/24.10.0-rc2/targets/mediatek/filogic/packages/Packages.gz
SSL error: NET - Sending information through the socket failed
*** Failed to download the package list from https://downloads.openwrt.org/releases/24.10.0-rc2/targets/mediatek/filogic/packages/Packages.gz
Downloading https://downloads.openwrt.org/releases/24.10.0-rc2/packages/aarch64_cortex-a53/base/Packages.gz
SSL error: NET - Sending information through the socket failed
*** Failed to download the package list from https://downloads.openwrt.org/releases/24.10.0-rc2/packages/aarch64_cortex-a53/base/Packages.gz
Collected errors:
* opkg_download: Failed to download https://downloads.openwrt.org/releases/24.10.0-rc2/targets/mediatek/filogic/packages/Packages.gz, wget returned 4.
* opkg_download: Check your network settings and connectivity.
* opkg_download: Failed to download https://downloads.openwrt.org/releases/24.10.0-rc2/packages/aarch64_cortex-a53/base/Packages.gz, wget returned 4.
* opkg_download: Check your network settings and connectivity.
root@OpenWrt:~# cat /etc/resolv.conf
search lan
nameserver 127.0.0.1
nameserver ::1
Im assuming the dns server isnt set to 8.8.8.8, does anyone know whats missing in the setup?