What's new
  • SNBForums Code of Conduct

    SNBForums is a community for everyone, no matter what their level of experience.

    Please be tolerant and patient of others, especially newcomers. We are all here to share and learn!

    The rules are simple: Be patient, be nice, be helpful or be gone!

How much IPv6 usage are you seeing?

RMerlin

Asuswrt-Merlin dev
Staff member
Posting it here to avoid derailing the other thread - if you are curious at how much IPv6 traffic you get while browsing the Internet, look at the Chrome IPvFoo addon. For instance when accessing snbforums, this is what I get here:

1745261873595.png


The list is truncated because it's too long, but the missing portion below is a fairly similar ratio of IPv4 vs IPv6.

Interesting to see so many ad providers still being IPv4-only.
 
Last time I checked using the same IPvFoo addon very few sites were using IPv6 only. Mostly Google and Facebook related.
 
Not yet a good approximation since I restarted the firewall recently, but I think over time this will give a good proxy for the ratio of new IPv4 versus IPv6 connections leaving my LAN.
Code:
# iptables -nvL FORWARD | grep pkts; iptables -nvL FORWARD | grep ACCEPT | tail -1; ip6tables -nvL FORWARD | grep ACCEPT | tail -1;
 pkts bytes target     prot opt in     out     source               destination        
  527  155K ACCEPT     all  --  br0    *       0.0.0.0/0            0.0.0.0/0          
  806  503K ACCEPT     all      br0    eth0    ::/0                 ::/0
 
Not yet a good approximation since I restarted the firewall recently, but I think over time this will give a good proxy for the ratio of new IPv4 versus IPv6 connections leaving my LAN.
Code:
# iptables -nvL FORWARD | grep pkts; iptables -nvL FORWARD | grep ACCEPT | tail -1; ip6tables -nvL FORWARD | grep ACCEPT | tail -1;
 pkts bytes target     prot opt in     out     source               destination      
  527  155K ACCEPT     all  --  br0    *       0.0.0.0/0            0.0.0.0/0        
  806  503K ACCEPT     all      br0    eth0    ::/0                 ::/0
Interesting result on dual stack, even by my standards.
Selection_001.png
 
Last edited:
pkts bytes target prot opt in out source destination
0 0 ACCEPT all -- br0 * 0.0.0.0/0 0.0.0.0/0
3879 1514K ACCEPT all br0 eth0 ::/0 ::/0
 
IPv6 still winning more than 2:1, surprisingly.
Code:
 pkts bytes target     prot opt in     out     source               destination         
10702 4268K ACCEPT     all  --  br0    *       0.0.0.0/0            0.0.0.0/0 
22378   14M ACCEPT     all      br0    eth0    ::/0                 ::/0
 
Not yet a good approximation since I restarted the firewall recently, but I think over time this will give a good proxy for the ratio of new IPv4 versus IPv6 connections leaving my LAN.
Code:
# iptables -nvL FORWARD | grep pkts; iptables -nvL FORWARD | grep ACCEPT | tail -1; ip6tables -nvL FORWARD | grep ACCEPT | tail -1;
 pkts bytes target     prot opt in     out     source               destination       
  527  155K ACCEPT     all  --  br0    *       0.0.0.0/0            0.0.0.0/0         
  806  503K ACCEPT     all      br0    eth0    ::/0                 ::/0
I don't think this command works for IPv4 on 3004.388.x.

Code:
# iptables -nvL FORWARD | grep ACCEPT | tail -1
    0     0 ACCEPT     all  --  br0    *       0.0.0.0/0            0.0.0.0/0
Code:
# iptables -nvL FORWARD | grep ACCEPT
Chain FORWARD (policy ACCEPT 0 packets, 0 bytes)
 767K  236M ACCEPT     all  --  *      *       0.0.0.0/0            0.0.0.0/0            state RELATED,ESTABLISHED
   13  1196 ACCEPT     all  --  br0    br0     0.0.0.0/0            0.0.0.0/0
 134K   59M ACCEPT     all  --  br0    eth0    0.0.0.0/0            0.0.0.0/0
    0     0 ACCEPT     all  --  *      *       0.0.0.0/0            0.0.0.0/0            ctstate DNAT
    0     0 ACCEPT     all  --  br0    *       0.0.0.0/0            0.0.0.0/0
 
This intrigued me because when I first tried this (with adblockers turned off - on I mirror @sfx2000) I got:
1745339432343.png

That was with FireFox. But if I use Edge or Chrome, I get:
1745339488280.png


Edit: Some of the IPv6 test sites give startlingly different results dependent on the browser used!
 
Last edited:
Similar threads
Thread starter Title Forum Replies Date
thiggins Are you using IPv6? Other LAN and WAN 31
rborth Mystery Mac address showing data usage Other LAN and WAN 0

Similar threads

Support SNBForums w/ Amazon

If you'd like to support SNBForums, just use this link and buy anything on Amazon. Thanks!

Sign Up For SNBForums Daily Digest

Get an update of what's new every day delivered to your mailbox. Sign up here!
Back
Top