proxmox update download 70kb

AMnewb

New Member
May 6, 2024
11
1
1
I have been trying to figure this out since OCT

I searched and the DNS is fine
root@ARMS:~# ping download.proxmox.com
PING download.proxmox.com (2607:5300:400:7d00::80) 56 data bytes
64 bytes from na.cdn.proxmox.com (2607:5300:400:7d00::80): icmp_seq=1 ttl=53 time=39.1 ms
64 bytes from na.cdn.proxmox.com (2607:5300:400:7d00::80): icmp_seq=2 ttl=53 time=39.5 ms
64 bytes from na.cdn.proxmox.com (2607:5300:400:7d00::80): icmp_seq=3 ttl=53 time=41.7 ms
64 bytes from na.cdn.proxmox.com (2607:5300:400:7d00::80): icmp_seq=4 ttl=53 time=36.8 ms
64 bytes from na.cdn.proxmox.com (2607:5300:400:7d00::80): icmp_seq=5 ttl=53 time=74.5 ms

i did try change the DNS just in case and it did not make diff

I have 1G internet and its the only device having a slow d/l issue - even the hosts seem fine. I'm trying to upgrade to 9.1 but this is making it difficult - I did not had this issue going to m8.x to 8.4 at all
 
Try to use IPv4 instead, at least for troubleshooting to exclude IPv6 has problems:

Run this on a root shell:
Code:
apt -o Acquire::ForceIPv4=true update && apt -o Acquire::ForceIPv4=true -d -y full-upgrade
 
Try to use IPv4 instead, at least for troubleshooting to exclude IPv6 has problems:

Run this on a root shell:
Code:
apt -o Acquire::ForceIPv4=true update && apt -o Acquire::ForceIPv4=true -d -y full-upgrade
I dont know why it is getting v6 nothing in my house is v6
 
Last edited:
Try to use IPv4 instead, at least for troubleshooting to exclude IPv6 has problems:

Run this on a root shell:
Code:
apt -o Acquire::ForceIPv4=true update && apt -o Acquire::ForceIPv4=true -d -y full-upgrade
this made it fast - how do i make it permeant or fix the ipv6? ?
 
  • Like
Reactions: UdoB
So the problem may be that your IPv4 setup is not... correct?

Everything else works?

A simple configuration for one NIC and one bridge: https://pve.proxmox.com/pve-docs/pve-admin-guide.html#_default_configuration_using_a_bridge - of course it needs to fit to your actual LAN...

Edit: if both IPv4 and IPv6 is available then IPv6 has priority and is used. So another idea would be to disable IPv6 for this host...
Yes everything is IPV6 - my Firewalla Firewall is IPV6 (ipv6 can work) be no networks on the FW are IPV6
 
okay i managne to disable IPV6 (i think) and didn't help - I edited the host file with 66.70.154.82 download.proxmox.com and that seem to have fixed it I still cannot figure out why the its get the IPV6 address though
 
this made it fast - how do i make it permeant
For example:
Code:
echo 'Acquire::ForceIPv4 "true";' | tee /etc/apt/apt.conf.d/99force-ipv4

This works obviously only for apt; the rest of the IP stack is not affected by this.