LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Networking
User Name
Password
Linux - Networking This forum is for any issue related to networks or networking.
Routing, network cards, OSI, etc. Anything is fair game.

Notices


Reply
  Search this Thread
Old 08-08-2021, 09:55 AM   #1
grumpyskeptic
Member
 
Registered: Apr 2016
Posts: 472

Rep: Reputation: Disabled
Do not have access to IPv6: is this the fault of Linux, the router/modem, or the ISP?


I am using Linux Mint 20.2 Mate.

According to https://test-ipv6.com/ and another similar website I do not have any access to IPv6.

How can I find out where the fault is?

Does Linux Mint forbid IPv6? In the past IPv6 was thought of as a security risk, I do not know if it still is. Where in the settings can I see if IPv6 is potentially active or not?

I have tinkered with my router/modem in the past so I may have turned it off perhaps, but I cannot find any mention of either IPv6 or IPv4 in its config file. Does it have some other name?

The website above says: "Your DNS server (possibly run by your ISP) appears to have no access to the IPv6 Internet, or is not configured to use it. This may in the future restrict your ability to reach IPv6-only sites."

Could the ISP (Talktalk UK) restrict access to IPv6 or is this very unlikely?

My router-modem is set up to use an external DNS Server for IPv4 rather than that of the ISP, but not for IPv6.

Thanks.
 
Old 08-08-2021, 11:12 AM   #2
smallpond
Senior Member
 
Registered: Feb 2011
Location: Massachusetts, USA
Distribution: Fedora
Posts: 4,141

Rep: Reputation: 1264Reputation: 1264Reputation: 1264Reputation: 1264Reputation: 1264Reputation: 1264Reputation: 1264Reputation: 1264Reputation: 1264
Issue the command

Code:
ip a
Lines starting with inet are IPv4 addresses. Lines starting with inet6 would be IPv6. If you have no inet6 addresses then you have IPv6 disabled in Linux.

If you have inet6, then see if you have any neighbors:

Code:
ip -6 neighbor show
Mine gives the link-local address of my router:
Code:
fe80::9683:c4ff:fe02:3397 dev wlo1 lladdr 94:83:c4:xx:xx:xx router
If you get this far, then you can use dig and traceroute to see where you are blocked:

Code:
dig -t AAAA www.google.com
www.google.com.		87	IN	AAAA	2607:f8b0:4006:800::2004
traceroute -6 www.google.com
 
Old 08-08-2021, 12:10 PM   #3
TB0ne
LQ Guru
 
Registered: Jul 2003
Location: Birmingham, Alabama
Distribution: SuSE, RedHat, Slack,CentOS
Posts: 26,636

Rep: Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965
Quote:
Originally Posted by grumpyskeptic View Post
I am using Linux Mint 20.2 Mate.

According to https://test-ipv6.com/ and another similar website I do not have any access to IPv6.

How can I find out where the fault is?

Does Linux Mint forbid IPv6? In the past IPv6 was thought of as a security risk, I do not know if it still is. Where in the settings can I see if IPv6 is potentially active or not?

I have tinkered with my router/modem in the past so I may have turned it off perhaps, but I cannot find any mention of either IPv6 or IPv4 in its config file. Does it have some other name?

The website above says: "Your DNS server (possibly run by your ISP) appears to have no access to the IPv6 Internet, or is not configured to use it. This may in the future restrict your ability to reach IPv6-only sites."

Could the ISP (Talktalk UK) restrict access to IPv6 or is this very unlikely?

My router-modem is set up to use an external DNS Server for IPv4 rather than that of the ISP, but not for IPv6.
You need to go back to your other thread where you're complaining about getting an updated router/modem (for FREE) from your ISP, and saying you don't want to use it. Congratulations; you may now be seeing the fruits of your labors. You're running an old device, most probably with old firmware, with settings you've 'tinkered' with...do not be surprised if things aren't working correctly.

And did you do ANY research at all before asking here??
https://community.talktalk.co.uk/t5/...s/td-p/2709406
https://community.talktalk.co.uk/t5/...y/td-p/2406789

Linux has supported IPv6 for some time now....call your ISP if you have questions.
 
2 members found this post helpful.
Old 08-09-2021, 02:30 AM   #4
grumpyskeptic
Member
 
Registered: Apr 2016
Posts: 472

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by smallpond View Post
Issue the command

Code:
ip a
Lines starting with inet are IPv4 addresses. Lines starting with inet6 would be IPv6. If you have no inet6 addresses then you have IPv6 disabled in Linux.

If you have inet6, then see if you have any neighbors:

Code:
ip -6 neighbor show
The result I get for the ip a command:
Code:
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    inet 127.0.0.1/8 scope host lo
       valid_lft forever preferred_lft forever
    inet6 ::1/128 scope host 
       valid_lft forever preferred_lft forever
2: enp0s7: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc fq_codel state UP group default qlen 1000
    link/ether 00:1a:a0:4c:ab:c2 brd ff:ff:ff:ff:ff:ff
    inet 192.168.1.4/24 brd 192.168.1.255 scope global dynamic noprefixroute enp0s7
       valid_lft 84336sec preferred_lft 84336sec
    inet6 fe80::ff15:3057:1c3c:7de6/64 scope link noprefixroute 
       valid_lft forever preferred_lft forever
When I type in ip -6 neighbor show, nothing is shown. I just get the prompt on the next line.
 
Old 08-09-2021, 03:45 AM   #5
ondoho
LQ Addict
 
Registered: Dec 2013
Posts: 19,872
Blog Entries: 12

Rep: Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053
Quote:
Originally Posted by TB0ne View Post
You need to go back to your other thread where you're complaining about getting an updated router/modem (for FREE) from your ISP, and saying you don't want to use it. Congratulations; you may now be seeing the fruits of your labors. You're running an old device, most probably with old firmware, with settings you've 'tinkered' with...do not be surprised if things aren't working correctly.
Thank you again for your incessant detective work!
It's always the info OP doesn't provide that turns out to be crucial, isn't it.
 
Old 08-09-2021, 07:54 AM   #6
TB0ne
LQ Guru
 
Registered: Jul 2003
Location: Birmingham, Alabama
Distribution: SuSE, RedHat, Slack,CentOS
Posts: 26,636

Rep: Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965
Quote:
Originally Posted by grumpyskeptic View Post
The result I get for the ip a command:
Code:
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    inet 127.0.0.1/8 scope host lo
       valid_lft forever preferred_lft forever
    inet6 ::1/128 scope host 
       valid_lft forever preferred_lft forever
2: enp0s7: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc fq_codel state UP group default qlen 1000
    link/ether 00:1a:a0:4c:ab:c2 brd ff:ff:ff:ff:ff:ff
    inet 192.168.1.4/24 brd 192.168.1.255 scope global dynamic noprefixroute enp0s7
       valid_lft 84336sec preferred_lft 84336sec
    inet6 fe80::ff15:3057:1c3c:7de6/64 scope link noprefixroute 
       valid_lft forever preferred_lft forever
When I type in ip -6 neighbor show, nothing is shown. I just get the prompt on the next line.
Did you bother to read the links that (apparently) had to be looked up for you?? The ones from your ISP, stating the availability of IPv6??

Did you also bother to think about the fact your router is not only old, but unsupported (at this point), and 'tinkered with'?? Don't you think that would have bearing on things??
 
Old 08-09-2021, 07:55 AM   #7
TB0ne
LQ Guru
 
Registered: Jul 2003
Location: Birmingham, Alabama
Distribution: SuSE, RedHat, Slack,CentOS
Posts: 26,636

Rep: Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965
Quote:
Originally Posted by ondoho View Post
Thank you again for your incessant detective work! It's always the info OP doesn't provide that turns out to be crucial, isn't it.
Not really detective work; I responded in the OP's other thread, so I knew of it.
 
Old 08-23-2021, 07:12 AM   #8
grumpyskeptic
Member
 
Registered: Apr 2016
Posts: 472

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by TB0ne View Post
Thanks, I thought it very unlikely that an ISP would not be allowing or providing IPv6 access in 2021, so I did not search for it. But the second thread above has recent 2021 posts that say that indeed it does not give IPv6 access.

Am I missing anything by having no access to IPv6?
 
Old 08-23-2021, 09:34 AM   #9
hazel
LQ Guru
 
Registered: Mar 2016
Location: Harrow, UK
Distribution: LFS, AntiX, Slackware
Posts: 7,581
Blog Entries: 19

Rep: Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453Reputation: 4453
Interesting thread. I've been wondering for some time why my Slackware system always tries to start up ipv6 at boot and then falls back to ipv4. /sbin/ip -6 neighbor gives me nothing, so probably my router doesn't support that protocol. That's not surprising as it's very old equipment.

I'd be interested in the answer to grumpyskeptic's question.
Quote:
Originally Posted by grumpyskeptic View Post
Am I missing anything by having no access to IPv6?

Last edited by hazel; 08-23-2021 at 09:36 AM.
 
Old 08-23-2021, 10:54 AM   #10
TB0ne
LQ Guru
 
Registered: Jul 2003
Location: Birmingham, Alabama
Distribution: SuSE, RedHat, Slack,CentOS
Posts: 26,636

Rep: Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965
Quote:
Originally Posted by grumpyskeptic View Post
Thanks, I thought it very unlikely that an ISP would not be allowing or providing IPv6 access in 2021, so I did not search for it. But the second thread above has recent 2021 posts that say that indeed it does not give IPv6 access.

Am I missing anything by having no access to IPv6?
You tell us; is there anything you can't access that you need/want to access by NOT having it?? And again, the information provided was readily available to you, before you posted this thread.
 
Old 08-23-2021, 04:55 PM   #11
computersavvy
Senior Member
 
Registered: Aug 2016
Posts: 3,345

Rep: Reputation: 1484Reputation: 1484Reputation: 1484Reputation: 1484Reputation: 1484Reputation: 1484Reputation: 1484Reputation: 1484Reputation: 1484Reputation: 1484
Many ISPs, even today, do not provide IPv6 networks.
1. There is a cost to the equipment.
2. Not everything on the internet requires IPv6 and everything is required to remain IPv4 compatible
3. Many major interlink trunks still are not 100% IPv6 compatible even after 20+ years of progress.

Only you can tell us if something you NEED is blocked by lack of IPv6 acceess.
 
Old 08-24-2021, 02:00 AM   #12
ondoho
LQ Addict
 
Registered: Dec 2013
Posts: 19,872
Blog Entries: 12

Rep: Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053
IPv4 addresses have run out already. "Mitigation efforts" have been applied for decades, but there will come the time when that just won't cut it anymore.

There even might be a few already that are only accessible via IPv6, although I do not think so. You can play around with 'ping -4 $IP' to see if you find one.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] have access to ipv6.google.com but not other ipv6 address superweijiafeng Linux - Networking 6 12-08-2014 02:28 PM
no access to config on wired access, but modem/router and wired access point work littlejoe5 Linux - Networking 1 10-22-2014 02:40 PM
need to have a review on a script for radvd ipv6 , user can get ipv6 dns ??!! dr.x Linux - Networking 1 09-01-2014 04:45 AM
Setting up Linux box as IPv6 router to replace Netgear WNR1000 wireless router samcan Linux - Networking 1 06-19-2011 05:30 AM
How to set IPv6 address on IPv6 router tlemons Linux - Networking 3 09-17-2007 01:25 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Networking

All times are GMT -5. The time now is 07:05 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration