Ubuntu IPv6 down? How to get around it?

Notice: Page may contain affiliate links for which we may earn a small commission through services like Amazon Affiliates or Skimlinks.

TangoWhiskey9

Active Member
Jun 28, 2013
402
59
28
I'm running into an issue. I have IPv6 enabled but I cannot get updates from Ubuntu now. I just installed a new machine and after trying an apt-get update I'm getting:

Code:
0% [Connecting to us.archive.ubuntu.com (2001:67c:1562::15)]
And it never moves. Is anyone else having this problem? How can I fix? I even removed IPv6 from /etc/network/interfaces and did service networking restart and rebooted, but it's still trying to get to the IPv6 update domain.

I'm at a loss...
 

MiniKnight

Well-Known Member
Mar 30, 2012
3,073
974
113
NYC
That's strange. I'd have thought Ubuntu would be good at ipv6.

do this as sudo or su -:
Code:
nano /etc/sysctl.conf
add this to the end:
Code:
net.ipv6.conf.all.disable_ipv6 = 1
net.ipv6.conf.default.disable_ipv6 = 1
net.ipv6.conf.lo.disable_ipv6 = 1
then:
Code:
sudo sysctl -p
 

Gary Gapinski

New Member
Oct 24, 2015
17
3
3
73
While I have seen long-lived IPv6 transit problems in the past (usually dying at/inside Telia), this one might be peculiar to your location or time of event. I can reach that address at this time.

traceroute to 2001:67c:1562::15 (2001:67c:1562::15), 30 hops max, 80 byte packets
1 edge.23887er.pw (2001:470:c161:2::1) 0.462 ms 0.492 ms 0.659 ms
2 GaryGapinski-1.tunnel.tserv9.chi1.ipv6.he.net (2001:470:1f10:6d6::1) 29.256 ms 32.021 ms 29.350 ms
3 ge3-4.core1.chi1.he.net (2001:470:0:6e::1) 40.330 ms 40.444 ms 40.453 ms
4 100ge5-2.core1.nyc4.he.net (2001:470:0:298::2) 49.741 ms 49.936 ms 50.000 ms
5 nyk-111-s1-link.telia.net (2001:2000:3080:1b8::1) 50.096 ms 49.948 ms 50.067 ms
6 bost-b1-v6.telia.net (2001:2000:3018:84::1) 57.341 ms 53.614 ms 53.468 ms
7 internap-ic-304640-bost-b1.c.telia.net (2001:2000:3080:93b::2) 53.913 ms 49.760 ms 48.745 ms
8 mpr1-bbnet1.bsn004.pnap.net (2600:c0d:0:101:0:4:2:1) 52.310 ms mpr1-bbnet2.bsn004.pnap.net (2600:c0d:0:102:0:4:2:1) 49.101 ms mpr1-bbnet1.bsn004.pnap.net (2600:c0d:0:101:0:4:2:1) 49.206 ms
9 2600:c0d:4002:3::2 (2600:c0d:4002:3::2) 49.231 ms 49.332 ms 54.272 ms
10 likho.canonical.com (2001:67c:1562::15) 54.350 ms 53.492 ms 53.235 ms
gapinski@eins:~$
 

voodooFX

Active Member
Jan 26, 2014
247
52
28
Had the same issue with my ISP for a while
I used this as temp workaround

Code:
apt-get -o Acquire::ForceIPv4=true update
apt-get -o Acquire::ForceIPv4=true upgrade