Geekzone: technology news, blogs, forums
Guest
Welcome Guest.
You haven't logged in yet. If you don't have an account you can register now.


View this topic in a long page with up to 500 replies per page Create new topic
1 | 2 | 3 | 4 | 5 | 6 | 7
dfnt
1511 posts

Uber Geek

Lifetime subscriber

  #2131202 21-Nov-2018 16:49
Send private message

Lost again today, getting a bit old now




llama233

15 posts

Geek


  #2131204 21-Nov-2018 16:59
Send private message

dfnt:

 

Lost again today, getting a bit old now

 

 

 

 

Same - lost IPv6 just after 9:30, haven't got it back yet (I'm leaving it for now rather than down/upping it).


michaelmurfy
meow
13240 posts

Uber Geek

Moderator
ID Verified
Trusted
Lifetime subscriber

  #2131234 21-Nov-2018 18:01
Send private message

Yep seeing the same also.

I've found that renewing via the following solves it for me:

 

release dhcpv6-pd interface pppoe0
delete dhcpv6-pd duid
renew dhcpv6-pd interface pppoe0

 

It is in-fact a bug with the Edgerouter. I've found PPPoE re-establishes causing IPv6 to drop. I believe this will be fixed in the next software release.





Michael Murphy | https://murfy.nz
Referral Links: Quic Broadband (use R122101E7CV7Q for free setup)

Are you happy with what you get from Geekzone? Please consider supporting us by subscribing.
Opinions are my own and not the views of my employer.




dfnt
1511 posts

Uber Geek

Lifetime subscriber

  #2131253 21-Nov-2018 19:12
Send private message

Sent a a pcap to Nick anyway

The same thing happened in 2 beta 1

michaelmurfy
meow
13240 posts

Uber Geek

Moderator
ID Verified
Trusted
Lifetime subscriber

  #2131284 21-Nov-2018 20:42
Send private message

As a workaround for the meantime I have a 2 part script:

 

First - runs on a server on my local network - I call this ping.sh - it runs every 5min via Cron:

 

#!/bin/bash
ping6 -c 1 murfy.nz
if [ $? -eq 0 ]; then
echo "We're alive!"
else
echo "`date -u`: IPv6 dropped. Running resetv6.sh on router" >> ping.log
ssh router 'at now -f /config/scripts/restartv6.sh' >> ping.log
echo "-----" >> ping.log
fi

 

The second is located in /config/scripts/restartv6.sh on the Edgerouter:

 

#!/bin/vbash
echo "Resetting IPv6"
/opt/vyatta/bin/vyatta-op-cmd-wrapper release dhcpv6-pd interface pppoe0
/opt/vyatta/bin/vyatta-op-cmd-wrapper delete dhcpv6-pd duid
/opt/vyatta/bin/vyatta-op-cmd-wrapper renew dhcpv6-pd interface pppoe0

 

It is horrible hack. Also this requires you to have a SSH key on your Edgerouter. You can use the loadkey utility under "configure" in EdgeOS to do this.





Michael Murphy | https://murfy.nz
Referral Links: Quic Broadband (use R122101E7CV7Q for free setup)

Are you happy with what you get from Geekzone? Please consider supporting us by subscribing.
Opinions are my own and not the views of my employer.


vulcannz
436 posts

Ultimate Geek
Inactive user


  #2131460 22-Nov-2018 07:19
Send private message

It's back up for me this morning. I did nothing. This on a SonicWall, I did try and manual restablish/renew the DHCP lease etc. That didn't work. So I left it.

 

Definitely something going on upstream and independent of equipment.


Aredwood
3885 posts

Uber Geek


  #2131495 22-Nov-2018 08:35

Weird. As my IPv6 just seems to keep on working just fine for me. Using an Edgerouter Lite firmware 1.9.7 hotfix 4.

Ironically I instead had a problem with IPV6 not working on Windows 10. Verified by visiting IPv6 test websites from both windows and Android.

To fix IPv6 in Win10, I downloaded and ran the "prefer IPv6 over ipv4 in prefix policies" and the "re enable IPv6 on all non tunnel interfaces" easy fix wizards from

https://support.microsoft.com/en-us/help/929852/guidance-for-configuring-ipv6-in-windows-for-advanced-users





 
 
 

Cloud spending continues to surge globally, but most organisations haven’t made the changes necessary to maximise the value and cost-efficiency benefits of their cloud investments. Download the whitepaper From Overspend to Advantage now.
Benoire
2798 posts

Uber Geek


  #2131574 22-Nov-2018 10:05
Send private message

So mines not working now. I've got IPv6 addresses being assigned to all devices on my network but I've got no connectivity out via IPv6; all servers and machines fail to connect.  Nothing has changed on my config on the USG for months so something is happening at 2degrees end I'm sure.


llama233

15 posts

Geek


  #2131676 22-Nov-2018 11:32
Send private message

Mine came back at around 10pm last night (without me doing anything). I've had to disable some remote checks to IPv6 services so I don't wake up to a ton of alerts, but otherwise it isn't impacting me very much as 99% of what I do is over IPv4. Would be nice to know what's happening and when it might get fixed though (still haven't heard anything from 2degrees about the ticket I raised a few weeks ago).


dfnt
1511 posts

Uber Geek

Lifetime subscriber

  #2131786 22-Nov-2018 12:40
Send private message

michaelmurfy:

 

Yep seeing the same also.

I've found that renewing via the following solves it for me:

 

release dhcpv6-pd interface pppoe0
delete dhcpv6-pd duid
renew dhcpv6-pd interface pppoe0

 

It is in-fact a bug with the Edgerouter. I've found PPPoE re-establishes causing IPv6 to drop. I believe this will be fixed in the next software release.

 

 

 

 

This is what I've been doing as well, as opposed to reconnecting the pppoe0 interface, cleaner as nothing goes down doing it


Eitsop
583 posts

Ultimate Geek

ID Verified

  #2132098 22-Nov-2018 18:12
Send private message

I am staying on IPv4 now until resolved. Pain in backside

batdan
79 posts

Master Geek

ID Verified

  #2132307 22-Nov-2018 21:58
Send private message

Benoire:

 

So mines not working now. I've got IPv6 addresses being assigned to all devices on my network but I've got no connectivity out via IPv6; all servers and machines fail to connect.  Nothing has changed on my config on the USG for months so something is happening at 2degrees end I'm sure.

 

 

Yep seeing same behaviour on a Turris Omnia, OpenWRT based. Worked fine for months but playing up recently.

 

 


NickMack
962 posts

Ultimate Geek

Trusted
Lifetime subscriber

  #2132702 23-Nov-2018 13:42
Send private message

dfnt: Sent a a pcap to Nick anyway

The same thing happened in 2 beta 1

 

 

 

Yeah, not something we see as an issue on our side, sorry. When is the new code due?





vulcannz
436 posts

Ultimate Geek
Inactive user


  #2133127 24-Nov-2018 10:59
Send private message

I wonder if it's related to those weird PPPoE outages we see sometimes (on IPv4). Its when the PPPoE session appears to be up but nothing routes over the connection. I've seen it happen across a number of different brands of products (Fortinet, Sonicwall, Zyxel, etc). On the Sonicwall we've overcome it using a logical probe (ICMP or TCP) under WAN Load Balancing (except we only have 1 WAN connection), when the probe fails it forces a complete PPPoE disconnect reconnect. Unfortunately on the Sonicwall because we are not getting assigned an IP for WAN (or gateway) and only using LL I cannot enable this feature for v6.

 

 

 

Is anyone still using static v6?


vulcannz
436 posts

Ultimate Geek
Inactive user


  #2134067 26-Nov-2018 07:05
Send private message

Finally clicked at what I'd done wrong in my static configuration - bit of a derp moment. Anyway now I have static working again I'm able monitor my IPv6 WAN interface for logical failures.


1 | 2 | 3 | 4 | 5 | 6 | 7
View this topic in a long page with up to 500 replies per page Create new topic





News and reviews »

Air New Zealand Starts AI adoption with OpenAI
Posted 24-Jul-2025 16:00


eero Pro 7 Review
Posted 23-Jul-2025 12:07


BeeStation Plus Review
Posted 21-Jul-2025 14:21


eero Unveils New Wi-Fi 7 Products in New Zealand
Posted 21-Jul-2025 00:01


WiZ Introduces HDMI Sync Box and other Light Devices
Posted 20-Jul-2025 17:32


RedShield Enhances DDoS and Bot Attack Protection
Posted 20-Jul-2025 17:26


Seagate Ships 30TB Drives
Posted 17-Jul-2025 11:24


Oclean AirPump A10 Water Flosser Review
Posted 13-Jul-2025 11:05


Samsung Galaxy Z Fold7: Raising the Bar for Smartphones
Posted 10-Jul-2025 02:01


Samsung Galaxy Z Flip7 Brings New Edge-To-Edge FlexWindow
Posted 10-Jul-2025 02:01


Epson Launches New AM-C550Z WorkForce Enterprise printer
Posted 9-Jul-2025 18:22


Samsung Releases Smart Monitor M9
Posted 9-Jul-2025 17:46


Nearly Half of Older Kiwis Still Write their Passwords on Paper
Posted 9-Jul-2025 08:42


D-Link 4G+ Cat6 Wi-Fi 6 DWR-933M Mobile Hotspot Review
Posted 1-Jul-2025 11:34


Oppo A5 Series Launches With New Levels of Durability
Posted 30-Jun-2025 10:15









Geekzone Live »

Try automatic live updates from Geekzone directly in your browser, without refreshing the page, with Geekzone Live now.



Are you subscribed to our RSS feed? You can download the latest headlines and summaries from our stories directly to your computer or smartphone by using a feed reader.