Skip to content
Discussion options

You must be logged in to vote

I have Deco X55 as well, and I'm able to make it work with ipv6 for my AGH on ubuntu server 22.04 LTS:

Approach 1 - Not using AGH DHCP server:
In Deco app, under Internet Connection (IPV6) use DHCPv6 and there is a LAN section, note down the router's ipv6 address and the prefix. Now in ubuntu add below netplan config and then sudo netplan apply

network:
  version: 2
  renderer: networkd
  ethernets:
    enp0s31f6:
      dhcp6: false
      accept-ra: false
      addresses:
        - {your lan ipv6 prefix}::1/64
      routes:
        - to: default
          via: {your router's ipv6}
      nameservers:
        addresses:
          - 2606:4700:4700::1111
          - 2606:4700:4700::1001

Then…

Replies: 1 comment 6 replies

Comment options

You must be logged in to vote
6 replies
@dtrannc
Comment options

@ppfeufer
Comment options

@angorn23
Comment options

@dtrannc
Comment options

Answer selected by dtrannc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants