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 | ... | 51 | 52 | 53 | 54 | 55 | 56 | 57
michaelmurfy

meow
13581 posts

Uber Geek
+1 received by user: 10914

Moderator
ID Verified
Trusted
Lifetime subscriber

  #2680348 25-Mar-2021 13:04
Send private message

normanc:

 

Well, OK. Fair that it's off topic. I hope I can find something useful because in the years I've been poking around the internet, I have yet to find anything more useful. I mean, latency and jitter sure. But those are pretty esoteric in many cases.

 

(And yeah, even in the SPeedtest app, if I test via the Vodafone servers, its about half the speed I get with something like Xtreme Networks or Citylink. So its not even down to MY setup. Which BTW is wired ethernet to my desktop, via Edgerouter X)

 

And yet I hear this exact same argument in the 100's of threads on here complaining about speed - never their issue, but it almost always is. It could be also caused by your Edgerouter configuration. There are many, many variables but again please don't discuss it here because it is very off-topic. Start a new thread if you want to discuss it further.

 

ligerzero:

 

Does this apply for slingshot? (i don't even know if they are on IPoE or PPPoE?)

 

Does what apply? You need to be more specific.





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.




ligerzero
14 posts

Geek


  #2680351 25-Mar-2021 13:07
Send private message

Sorry. I used the settings for when i was with Vodafone, but recently moved to Slingshot.

 

It was good for a time, but then i've had uploads just slowing down hard. used to do at least 300Mbps, but now its down to 150Mbps, so i thought when i upgraded the firmware of my edgerouter, something happened to the settings? i didn't touch any when i moved from Voda to Slingshot


michaelmurfy

meow
13581 posts

Uber Geek
+1 received by user: 10914

Moderator
ID Verified
Trusted
Lifetime subscriber

  #2680371 25-Mar-2021 13:34
Send private message

@ligerzero Double-check offloading is set up correctly as per the OP but as I've said Speedtest is not actually an ideal way to test speeds. Start a new thread if you want to discuss speeds.





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.




leaplae
218 posts

Master Geek
+1 received by user: 62

ID Verified

  #3201297 29-Feb-2024 09:46
Send private message

I'm wondering if anyone knows how to get IPV6 working with Quic:

 

 

 

Here is the full config: https://dpaste.org/htkyG

 

I've removed username/password and portforwards. Hopefully nothing else personal left in it!

 

The LAN get's a IPv6 PD and the endpoint's get a IPV6 address, but no data flows.


mentalinc
3385 posts

Uber Geek
+1 received by user: 1025

Trusted

  #3201431 29-Feb-2024 10:49
Send private message

You don't have this set

 

set protocols static interface-route6 ::/0 next-hop-interface eth

 

 

 

Will compare to my config tonight for you (i have vlan enabled)





CPU: AMD 5900x | RAM: GSKILL Trident Z Neo RGB F4-3600C16D-32GTZNC-32-GB | MB:  Asus X570-E | GFX: EVGA FTW3 Ultra RTX 3080Ti| Monitor: LG 27GL850-B 2560x1440

 

Quic: https://account.quic.nz/refer/473833 R473833EQKIBX 


ETLN01
21 posts

Geek
+1 received by user: 4


  #3201550 29-Feb-2024 13:02
Send private message

Please find my configuration for my ER-X here dpaste/yH4ir (Python)
I have removed the static DHCP leases but everything else should be there.

I have had no luck getting IPv6 to work on mine, have also tried a HG659b and that won't work either. I couldn't get IPv4 working on the HG659b either though.
If I change the configuration on both routers to DHCPv6-stateless they will receive IP Addresses, including DNS (which I didn't know QUIC offered for IPv6?) but they will not route any traffic.
My connection is on Enable.


HP

 
 
 
 

Shop now for HP laptops and other devices (affiliate link).
leaplae
218 posts

Master Geek
+1 received by user: 62

ID Verified

  #3201577 29-Feb-2024 13:39
Send private message

Hmm, I'm also on Enable.


mentalinc
3385 posts

Uber Geek
+1 received by user: 1025

Trusted

  #3201801 29-Feb-2024 21:21
Send private message

@leaplae

 

Maybe share the 'show configuration commands' as much easier to show what is missing and easier for you to add it in...

 

but my quic review...

 

Something wrong with your  ipv6-name WANv6_IN { Rule 30 should be icmpv6 

 

set rule 30 action accept

 

set rule 30 description "allow ICMPv6"

 

set rule 30 protocol icmpv6

you have

rule 30 {

 

action accept

 

description "allow ICMPv6"

 

protocol ipv6-icmp

 

}


You also have this:
ipv6 {
            address {
                autoconf
          }
        }

And missing this

protocols {
    static {
        interface-route6 ::/0 {
          next-hop-interface eth0 {
            }
        }


My nat rule 5010 looks like this, you dont have protocol all and log disable

nat {
        rule 5010 {
            description "masquerade for WAN"
            log disable
            outbound-interface eth0.10
            protocol all
            type masquerade
        }
    }


I'm sure on this one but your eth1 has a prefix-id of 1
I'm not sure if the first one needs to be 0?

set interfaces ethernet eth0 dhcpv6-pd pd 0 interface eth1 prefix-id ':0'

You also don't appear to have your MTU set, so set those as well
set interfaces ethernet eth0 mtu 1508





CPU: AMD 5900x | RAM: GSKILL Trident Z Neo RGB F4-3600C16D-32GTZNC-32-GB | MB:  Asus X570-E | GFX: EVGA FTW3 Ultra RTX 3080Ti| Monitor: LG 27GL850-B 2560x1440

 

Quic: https://account.quic.nz/refer/473833 R473833EQKIBX 


mentalinc
3385 posts

Uber Geek
+1 received by user: 1025

Trusted

  #3201804 29-Feb-2024 21:31
Send private message

@ETLN01 not sure it's wise to enable ping into your network like that

 

 name WAN_IN {

 

rule 40 {

 

action accept

 

description "allow ICMP"

 

protocol icmp

 

}






CPU: AMD 5900x | RAM: GSKILL Trident Z Neo RGB F4-3600C16D-32GTZNC-32-GB | MB:  Asus X570-E | GFX: EVGA FTW3 Ultra RTX 3080Ti| Monitor: LG 27GL850-B 2560x1440

 

Quic: https://account.quic.nz/refer/473833 R473833EQKIBX 


leaplae
218 posts

Master Geek
+1 received by user: 62

ID Verified

  #3201808 29-Feb-2024 21:42
Send private message

@mentalinc

 

Fair point, very difficult to read the config (unless you're a router!)

 

Here is my current config, with the changes made: https://dpaste.org/xNhFS

 

Not working sadly.

 

Edit: Also changed the WAN MTU to 1508, removed eth2 from the ipv6 (for now, but I'm not using that interface so doesn't need to be set) and have changed the :1 to :0.


mentalinc
3385 posts

Uber Geek
+1 received by user: 1025

Trusted

  #3201850 1-Mar-2024 06:55
Send private message

What version are you using latest is v2.0.9-hotfix.7 which is what I have running.

 

Nothing is really standing out as different from my config

 

I have the two below

 

#no sure this is needed for you, I run pi-hole and domain controllers for dns, you look to use cloudflare.
set interfaces ethernet eth0 dhcpv6-pd pd 0 interface eth1 no-dns 

 


#again not sure you need it, but my config has the top line before the following 4 lines which you already have.

 

set firewall options
set firewall receive-redirects disable
set firewall send-redirects enable
set firewall source-validation disable
set firewall syn-cookies enable

 

 

 

While you're there you should do the below for security purposes
set service gui older-ciphers disable

 

 

 

This is my config remove dhcp leases ad port forwards removed, i've also changed the config to remove my vlan 10 so it more closely matches yours.

 

https://dpaste.org/mmXqc





CPU: AMD 5900x | RAM: GSKILL Trident Z Neo RGB F4-3600C16D-32GTZNC-32-GB | MB:  Asus X570-E | GFX: EVGA FTW3 Ultra RTX 3080Ti| Monitor: LG 27GL850-B 2560x1440

 

Quic: https://account.quic.nz/refer/473833 R473833EQKIBX 


 
 
 

Support Geekzone with one-off or recurring donations Donate via PressPatron.
leaplae
218 posts

Master Geek
+1 received by user: 62

ID Verified

  #3201997 1-Mar-2024 13:42
Send private message

Same version as you.

 

 

 

Made the changes, still no luck.

 


Could it be a Quic/Enable issue with the way they're doing DHCPv6-PD?


mentalinc
3385 posts

Uber Geek
+1 received by user: 1025

Trusted

  #3202133 1-Mar-2024 16:46
Send private message

What are you seeing in the quic portal?

 

Are you rebooting the router after you have finished the config?

 

have you rebooted the devices (PC, phone etc), once the router is rebooted?

 

 

 

I recall issues where needed a reboot for the addresses to stick and traffic flow.

 

Are you getting IPv6 addresses on devices? 

 

What are you getting on online ipv6 tests?





CPU: AMD 5900x | RAM: GSKILL Trident Z Neo RGB F4-3600C16D-32GTZNC-32-GB | MB:  Asus X570-E | GFX: EVGA FTW3 Ultra RTX 3080Ti| Monitor: LG 27GL850-B 2560x1440

 

Quic: https://account.quic.nz/refer/473833 R473833EQKIBX 


ratsun81
516 posts

Ultimate Geek
+1 received by user: 183


  #3202168 1-Mar-2024 17:41
Send private message

leaplae:

 

Same version as you.

 

 

 

Made the changes, still no luck.

 


Could it be a Quic/Enable issue with the way they're doing DHCPv6-PD?

 

 

I have my ER-X working no VLAN and DHCP, quic on Chorus. 

 

here is my config... 

 

https://dpaste.org/gFLXF

 

 


ETLN01
21 posts

Geek
+1 received by user: 4


  #3202218 1-Mar-2024 19:48
Send private message

mentalinc:

 

What are you seeing in the quic portal?

 

Are you rebooting the router after you have finished the config?

 

have you rebooted the devices (PC, phone etc), once the router is rebooted?

 

 

 

I recall issues where needed a reboot for the addresses to stick and traffic flow.

 

Are you getting IPv6 addresses on devices? 

 

What are you getting on online ipv6 tests?

 

 

 

 

I am beginning to wonder if it is an issue with Enable and perhaps the certain ONT model. Mine is a Huawei HG8240H, is yours the same?

I've made a few changes based on the feedback from other users, I haven't been rebooting the ONT or the router, but I have tried doing that previously, I even left the router and ONT powered down for a couple of hours in case something needed to timeout.


1 | ... | 51 | 52 | 53 | 54 | 55 | 56 | 57
View this topic in a long page with up to 500 replies per page Create new topic








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.