FIOS users waiting for IPv6... script to let you know when it's ready
-
So for anyone who hasn't heard, after almost a decade of waiting, Verizon has started rolling out native IPv6 (dual stack) to their residential FIOS customers. There's a discussion over on the DSLReports forum.
I'm excited about this- but got tired of testing my connection every couple of days to see if V6 was available. I threw this simple script together which should send an email alert once the RAs start appearing on the WAN interface. Posting here in case anyone else might find it useful.
script & instructions on github:
https://gist.github.com/luckman212/124a81d5f295dfa5c6d1162aaef55842 -
How are they (finally) provisioning it?
-
I don't have it (yet) but I hear they are allocating a /56 via DHCPv6-PD.
-
@luckman212 said in FIOS users waiting for IPv6... script to let you know when it's ready:
I threw this simple script together which should send an email alert once the RAs start appearing on the WAN interface.
I was seeing RAs on Rogers long before they offered IPv6. When I examined the packets, they were missing minor details like defaut gateway.
-
Small update:
I rewrote the script in PHP and it now accepts a parameter to specify the interface you want to check, which is more flexible.
<?php include("notices.inc"); if (!empty($argv[1])) { $if = $argv[1]; } else { $if = "igb0"; } exec("/sbin/rtsol -DF $if 2>&1", $result, $retval); if (($retval == 0) && (count($result))) { $haystack = implode("\n", $result); $needle = "received RA from [a-f0-9:\.]+ on $if"; preg_match("/$needle/", $haystack, $matches); if (count($matches)) { $msg = "IPv6 RAs detected on interface $if"; notify_via_smtp($msg); } } ?>
-
Any dhcp6-pd packet captures from the G1100? I am having trouble determining the correct advanced DHCP6 settings for pfSense
-
I am running your PHP script daily and it does not seem like FiOS in NYC (Manhattan) has IPV6 yet.
However, I know IPV6 is supported by FiOS in other places in the Tri-State area.
Anyone in NYC have any luck getting IPV6 working with FiOS (besides with a HE.NET tunnel)?
-
@Paint Nope - I've been following the DSLReports thread and it's just page after page of people asking "when" with no real answers. The thread is 37 pages long now. "Branch" who seems loosely affiliated with VZ said the project was halted again due to COVID so I wouldn't hold my breath. It's been 20 years now we've been waiting for V6 from Verizon...
-
Don't lose hope... it's been just less than a month since it started working for me, so they may have re-started testing.