SimSim
February 16, 2025, 7:17pm
1
Hi
I've just upgraded to version 24.10 (Netgear R7800). Evereything seems to work well, execpt the software. I can't update the softwarelist. The following error occurs:
Downloading https://downloads.openwrt.org/releases/24.10.0/targets/ipq806x/generic/packages/Packages.gz
*** Failed to download the package list from https://downloads.openwrt.org/releases/24.10.0/targets/ipq806x/generic/packages/Packages.gz
(etc., etc....)
Downloading https://downloads.openwrt.org/releases/24.10.0/packages/arm_cortex-a15_neon-vfpv4/telephony/Packages.gz
*** Failed to download the package list from https://downloads.openwrt.org/releases/24.10.0/packages/arm_cortex-a15_neon-vfpv4/telephony/Packages.gz
Errors
SSL error: NET - Sending information through the socket failed
SSL error: NET - Sending information through the socket failed
SSL error: NET - Sending information through the socket failed
SSL error: NET - Sending information through the socket failed
SSL error: NET - Sending information through the socket failed
SSL error: NET - Sending information through the socket failed
SSL error: NET - Sending information through the socket failed
Collected errors:
(....)
What could the problem be?
Thanks for your help! SimSim
Do you have the internet connected to the wan port?
Can you run the following and post the output
ping 1.1.1.1
SimSim
February 17, 2025, 9:26pm
3
Thanks for your reply. All my devices have trough the router internet. Ping shows the following:
Is this your main router?
Did you upgrade this from a previous version? If so, what version were you coming from? And did you keep your settings? Is the time on the router correct?
Let's take a quick look at the config.
Please connect to your OpenWrt device using ssh and copy the output of the following commands and post it here using the "Preformatted text </>
" button:
Remember to redact passwords, MAC addresses and any public IP addresses you may have:
ubus call system board
cat /etc/config/network
cat /etc/config/wireless
cat /etc/config/dhcp
cat /etc/config/firewall
date
SimSim
February 26, 2025, 7:31am
6
Thanks for your help. Please find the answer to the ping:
SimSim
February 26, 2025, 7:36am
7
Thank you very much for your help!
I upgraded from Open Wrt 23. I don't know which version it was, but the version was a newer one, maybe from autumn 24.
I didn't keep any setting, I did a complete restore. But I used the webinterface for the upgrade
Time is set correct
Please find attached the code (sensitive information is overwritten by "xxx":
root@OpenWrt:~# ubus call system board
{
"kernel": "6.6.73",
"hostname": "OpenWrt",
"system": "ARMv7 Processor rev 0 (v7l)",
"model": "Netgear Nighthawk X4S R7800",
"board_name": "netgear,r7800",
"rootfs_type": "squashfs",
"release": {
"distribution": "OpenWrt",
"version": "24.10.0",
"revision": "r28427-6df0e3d02a",
"target": "ipq806x/generic",
"description": "OpenWrt 24.10.0 r28427-6df0e3d02a",
"builddate": "1738624177"
}
}
root@OpenWrt:~# cat /etc/config/network
config interface 'loopback'
option device 'lo'
option proto 'static'
option ipaddr '127.0.0.1'
option netmask '255.0.0.0'
config globals 'globals'
option ula_prefix 'fde3:e63e:68b3::/48'
config device
option name 'br-lan'
option type 'bridge'
list ports 'lan1'
list ports 'lan2'
list ports 'lan3'
list ports 'lan4'
config interface 'lan'
option device 'br-lan'
option proto 'static'
option ipaddr '192.168.1.1'
option netmask '255.255.255.0'
option ip6assign '60'
config interface 'wan'
option device 'wan'
option proto 'dhcp'
config interface 'wan6'
option device 'wan'
option proto 'dhcpv6'
root@OpenWrt:~# cat /etc/config/wireless
config wifi-device 'radio0'
option type 'mac80211'
option path 'soc/1b500000.pci/pci0000:00/0000:00:00.0/0000:01:00.0'
option band '5g'
option channel 'auto'
option htmode 'VHT80'
option country 'xxx'
option cell_density '0'
config wifi-iface 'default_radio0'
option device 'radio0'
option network 'lan'
option mode 'ap'
option ssid 'xxxx'
option encryption 'psk2'
option key 'xxxx'
config wifi-device 'radio1'
option type 'mac80211'
option path 'soc/1b700000.pci/pci0001:00/0001:00:00.0/0001:01:00.0'
option band '2g'
option channel 'auto'
option country 'xxx'
option cell_density '0'
config wifi-iface 'default_radio1'
option device 'radio1'
option network 'lan'
option mode 'ap'
option ssid 'xxxx'
option encryption 'psk2'
option key 'xxxx'
root@OpenWrt:~# cat /etc/config/dhcp
config dnsmasq
option domainneeded '1'
option localise_queries '1'
option rebind_protection '1'
option rebind_localhost '1'
option local '/lan/'
option domain 'lan'
option expandhosts '1'
option cachesize '1000'
option authoritative '1'
option readethers '1'
option leasefile '/tmp/dhcp.leases'
option resolvfile '/tmp/resolv.conf.d/resolv.conf.auto'
option localservice '1'
option ednspacket_max '1232'
config dhcp 'lan'
option interface 'lan'
option start '100'
option limit '150'
option leasetime '12h'
option dhcpv4 'server'
option dhcpv6 'server'
option ra 'server'
option ra_slaac '1'
list ra_flags 'managed-config'
list ra_flags 'other-config'
config dhcp 'wan'
option interface 'wan'
option ignore '1'
config odhcpd 'odhcpd'
option maindhcp '0'
option leasefile '/tmp/hosts/odhcpd'
option leasetrigger '/usr/sbin/odhcpd-update'
option loglevel '4'
config host
option name 'xxxxx'
list mac '00:11:32:5C:D9:94'
option ip '192.168.1.2'
root@OpenWrt:~# cat /etc/config/firewall
config defaults
option input 'REJECT'
option output 'ACCEPT'
option forward 'REJECT'
option synflood_protect '1'
option flow_offloading '1'
config zone
option name 'lan'
list network 'lan'
option input 'ACCEPT'
option output 'ACCEPT'
option forward 'ACCEPT'
config zone
option name 'wan'
list network 'wan'
list network 'wan6'
option input 'REJECT'
option output 'ACCEPT'
option forward 'REJECT'
option masq '1'
option mtu_fix '1'
config forwarding
option src 'lan'
option dest 'wan'
config rule
option name 'Allow-DHCP-Renew'
option src 'wan'
option proto 'udp'
option dest_port '68'
option target 'ACCEPT'
option family 'ipv4'
config rule
option name 'Allow-Ping'
option src 'wan'
option proto 'icmp'
option icmp_type 'echo-request'
option family 'ipv4'
option target 'ACCEPT'
config rule
option name 'Allow-IGMP'
option src 'wan'
option proto 'igmp'
option family 'ipv4'
option target 'ACCEPT'
config rule
option name 'Allow-DHCPv6'
option src 'wan'
option proto 'udp'
option dest_port '546'
option family 'ipv6'
option target 'ACCEPT'
config rule
option name 'Allow-MLD'
option src 'wan'
option proto 'icmp'
option src_ip 'fe80::/10'
list icmp_type '130/0'
list icmp_type '131/0'
list icmp_type '132/0'
list icmp_type '143/0'
option family 'ipv6'
option target 'ACCEPT'
config rule
option name 'Allow-ICMPv6-Input'
option src 'wan'
option proto 'icmp'
list icmp_type 'echo-request'
list icmp_type 'echo-reply'
list icmp_type 'destination-unreachable'
list icmp_type 'packet-too-big'
list icmp_type 'time-exceeded'
list icmp_type 'bad-header'
list icmp_type 'unknown-header-type'
list icmp_type 'router-solicitation'
list icmp_type 'neighbour-solicitation'
list icmp_type 'router-advertisement'
list icmp_type 'neighbour-advertisement'
option limit '1000/sec'
option family 'ipv6'
option target 'ACCEPT'
config rule
option name 'Allow-ICMPv6-Forward'
option src 'wan'
option dest '*'
option proto 'icmp'
list icmp_type 'echo-request'
list icmp_type 'echo-reply'
list icmp_type 'destination-unreachable'
list icmp_type 'packet-too-big'
list icmp_type 'time-exceeded'
list icmp_type 'bad-header'
list icmp_type 'unknown-header-type'
option limit '1000/sec'
option family 'ipv6'
option target 'ACCEPT'
config rule
option name 'Allow-IPSec-ESP'
option src 'wan'
option dest 'lan'
option proto 'esp'
option target 'ACCEPT'
config rule
option name 'Allow-ISAKMP'
option src 'wan'
option dest 'lan'
option dest_port '500'
option proto 'udp'
option target 'ACCEPT'
root@OpenWrt:~# date
I don't see anything here that would cause a problem.
What do you get with the following:
ping 151.101.194.132
ping downloads.openwrt.org
wget https://downloads.openwrt.org/releases/24.10.0/targets/bcm27xx/bcm2711/packages/Packages.gz
sorry... this should be run from the command line (via ssh) of the router, not your computer.
And the time is correct on the router??
date
(the above should also be run from within an ssh session)
Assuming that the time is indeed correct, I think the problem is IPv6 -- you may not have a functioning IPv6 upstream. In that case...
Delete this:
Then reboot and try again.
1 Like
it worked for me, thanks a lot!!!!!!!!!!
SimSim
March 1, 2025, 7:22pm
14
Just checked the time and the date. Both are correct. What do I have to do now? I didn't understand your instruction.
Delete the wan6 network interface (from the network config (/etc/config/network
) and then reboot. Try again once the router has finished booting.
SimSim
March 1, 2025, 7:58pm
16
How can I do that? (Sorry for my stupid question, but I m a beginner)
In LuCI, navigate to Network > Interfaces
and then hit the delete button next to wan6
. Save and apply. Test again.
1 Like
SimSim
March 2, 2025, 1:24pm
18
That was the solution! Thank you very much! Do I have now any disadvantages?
Nope. If ipv6 wasn’t working, it means your isp doesn’t give you a true dual stack. Deleting the wan6 interface is therefore harmless (and beneficial because of the failure).
If your problem is solved, please consider marking this topic as [Solved]. See How to mark a topic as [Solved] for a short how-to.
Thanks!
SimSim
March 2, 2025, 7:48pm
20
Thank you very much for your help! I just tryed to edit the first post and mark the toppic as solved, but I can't edit the post. Instead I marked your answer as "solution".