ISP is giving me just ipv6 /64 prefix (I think)

Hi, I had a problem a few days ago (I have ipv6 on my router on wan6 and LAN interfaces) and reading this forum I found these two topics with the same problem.

What settings should I change to achieve this?

Whts the relay setting @dlakelan is talking about?

According to the odhcpd documentation
you need to add the following sections:

ra string disabled Router Advert service. Set to disabled, server, relay or hybrid.
dhcpv6 string disabled DHCPv6 service. Set to disabled, server, relay or hybrid.
dhcpv4 string disabled DHCPv4 service. Set to disabled or server.
ndp string disabled Neighbor Discovery Proxy. Set to disabled, relay or hybrid.
probably to /etc/config/dhcp as part of config dhcp 'wan' or maybe config dhcp 'wan6' and lan:

Something like this might work:

# file: /etc/config/dhcp
config dhcp 'lan'
        option interface 'lan'
        option start '100'
        option limit '150'
        option leasetime '12h'
        option dhcpv4 'server'
        option ra 'relay'
        list ra_flags 'none'
        option dhcpv6 'relay'
        option ndp 'relay'

config dhcp 'wan'
        option interface 'wan'
        option ignore '1'
        option master '1'
        option ra 'relay'
        option dhcpv6 'relay'
        option ndp 'relay'
        list ra_flags 'none'

I just have to put that code in ssh console?

Thank you

its fixed now, from anyone wondering specially from Mexico ISP Megacable, they are issuing /64 prefixes, these are just enough bits for address but no for host, so, in wan6 interface just change IPV6 prefix request to disabled, and set RA, DHCPV6 and NDP to relay, i did it in both wan6 and lan,and disabled DHCP on wan6.

Megacable technical support said it wasnt possible and i'm proud of my self, regards :laughing:

1 Like

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.