Netgate Discussion Forum
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Search
    • Register
    • Login

    FIOS users waiting for IPv6... script to let you know when it's ready

    Scheduled Pinned Locked Moved IPv6
    9 Posts 5 Posters 3.1k Views
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • luckman212L
      luckman212 LAYER 8
      last edited by

      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

      JKnottJ 1 Reply Last reply Reply Quote 2
      • DerelictD
        Derelict LAYER 8 Netgate
        last edited by

        How are they (finally) provisioning it?

        Chattanooga, Tennessee, USA
        A comprehensive network diagram is worth 10,000 words and 15 conference calls.
        DO NOT set a source address/port in a port forward or firewall rule unless you KNOW you need it!
        Do Not Chat For Help! NO_WAN_EGRESS(TM)

        1 Reply Last reply Reply Quote 0
        • luckman212L
          luckman212 LAYER 8
          last edited by

          I don't have it (yet) but I hear they are allocating a /56 via DHCPv6-PD.

          1 Reply Last reply Reply Quote 0
          • JKnottJ
            JKnott @luckman212
            last edited by

            @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. ๐Ÿ˜‰

            PfSense running on Qotom mini PC
            i5 CPU, 4 GB memory, 32 GB SSD & 4 Intel Gb Ethernet ports.
            UniFi AC-Lite access point

            I haven't lost my mind. It's around here...somewhere...

            1 Reply Last reply Reply Quote 0
            • luckman212L
              luckman212 LAYER 8
              last edited by

              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);
                  }
                }
              
              ?>
              
              1 Reply Last reply Reply Quote 1
              • P
                Paint
                last edited by

                Any dhcp6-pd packet captures from the G1100? I am having trouble determining the correct advanced DHCP6 settings for pfSense

                pfSense i5-4590
                940/880 mbit Fiber Internet from FiOS
                BROCADE ICX6450 48Port L3-Managed Switch w/4x 10GB ports
                Netgear R8000 AP (DD-WRT)

                1 Reply Last reply Reply Quote 0
                • P
                  Paint
                  last edited by Paint

                  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)?

                  pfSense i5-4590
                  940/880 mbit Fiber Internet from FiOS
                  BROCADE ICX6450 48Port L3-Managed Switch w/4x 10GB ports
                  Netgear R8000 AP (DD-WRT)

                  1 Reply Last reply Reply Quote 0
                  • luckman212L
                    luckman212 LAYER 8
                    last edited by

                    @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... ๐Ÿ˜ž

                    1 Reply Last reply Reply Quote 0
                    • MikeV7896M
                      MikeV7896
                      last edited by MikeV7896

                      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.

                      The S in IOT stands for Security

                      1 Reply Last reply Reply Quote 0
                      • First post
                        Last post
                      Copyright 2025 Rubicon Communications LLC (Netgate). All rights reserved.