How to get IPv6 address for my wlan0?

Hi,

I have MiWiFi device. I followed this guide and configured it to be a WiFi client. But I only get IPv4 address on my wireless interface.

I want to know how to configure my wireless interface to have both IPv4 and IPv6 addresses. If not possible, how to check if IPv6 is available on my wireless interface.

Thanks,

1 Like
uci del_list firewall.@zone[1].network="wwan6"
uci add_list firewall.@zone[1].network="wwan6"
uci commit firewall
/etc/init.d/firewall restart

uci -q delete network.wwan6
uci set network.wwan6="interface"
uci set network.wwan6.proto="dhcpv6"
uci set network.wwan6.ifname="@wwan"
uci commit network
/etc/init.d/network restart

https://openwrt.org/docs/guide-user/network/network_interface_alias

1 Like

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