With all the chatter about IPV6 lately, I'm working on getting it setup on my home network. My ISP (Charter) does provide IPV6 addresses, but I'm struggling with making this work. I have an odroid C2 ARM board that is running Tumbleweed with 2 network interfaces: eth1 onboard interface is the WAN port. Uses wicked and dhcp to get an ipv4 and ipv6 address from my isp. eth0 on a usb to ethernet adapter is the LAN port. Uses wicked with a static ipv4 address assigned. walter@c2router:~> ip a 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 inet 127.0.0.1/8 scope host lo valid_lft forever preferred_lft forever inet6 ::1/128 scope host valid_lft forever preferred_lft forever 2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP group default qlen 1000 link/ether e8:fc:af:c7:a8:21 brd ff:ff:ff:ff:ff:ff inet 172.16.4.1/24 brd 172.16.4.255 scope global eth0 valid_lft forever preferred_lft forever inet6 fe80::eafc:afff:fec7:a821/64 scope link valid_lft forever preferred_lft forever 3: eth1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP group default qlen 1000 link/ether 00:1e:06:36:93:44 brd ff:ff:ff:ff:ff:ff inet 75.xxx.253.3/21 brd 255.255.255.255 scope global eth1 valid_lft forever preferred_lft forever inet6 2605:xxxx:afc0:2:ed44:6b09:12ab:2754/64 scope global dynamic valid_lft 518420sec preferred_lft 518420sec inet6 fe80::21e:6ff:fe36:9344/64 scope link valid_lft forever preferred_lft forever On the LAN side, I have dnsmasq handing out ipv4 addresses and taking care of DNS. This all works great for ipv4, but my workstations on the lan only have an ipv4 address plus an fe80... ipv6 address. In my /etc/sysctl.conf I have: net.ipv4.ip_forward = 1 net.ipv6.conf.all.forwarding = 1 net.ipv6.conf.all.accept_ra = 2 net.ipv6.conf.eth1.autoconf = 0 net.ipv6.conf.all.use_tempaddr = 0 net.ipv6.conf.default.use_tempaddr = 0 I was following this guide: https://taczanowski.net/linux-box-as-an-ipv6-router-with-slaac-and-dhcpv6-pd... which was running on openSUSE 42.2 using wide-dhcpv6-client. But wide-dhcpv6 is no longer available on openSUSE. So how can I get wicked to request the prefix from my isp, forward that prefix to dnsmasq so it can hand out ipv6 addresses, and using the prefix set an ipv6 address on the lan interface? Or is there another way? Thanks Mark -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse+owner@opensuse.org