Hi,
I'm using a OpenWRT device with version OpenWrt 21.02.1 r16325-88151b8303 / LuCI Master git-25.065.60377-7e25441
How do I create a PPPoE WAN with only IPv6 ??
Currently with PPPoE,
- Dual Stack config is working
- IPv4 only is working, as we have option to configure it in GUI
[ option ipv6 can take the value:
0: disable IPv6 on the interface
1: enable IPCP6 negotiation on the interface, but nothing else. If successful, the parent interface will be assigned a link-local address (prefix fe80::/10). All other IPv6 configuration is made in thewan6
interface which must be configured manually, as described below.
auto: (default) enable IPv6 on the interface. Spawn a virtual interface wan_6 (note the underscore) and start DHCPv6 client odhcp6c to manage prefix assignment. Ensure the lan interface hasoption ip6assign 64
(or a larger prefix size) set to redistribute the received prefix downstream.
]
But I can not figure out how to provision a WAN with IPv6 alone
Here is the configuration from my device
config interface 'PPPoE'
option proto 'pppoe'
option device 'pon'
option username 'testuser'
option password '1234'
option ipv6 'auto'
Would appreciate any help!!!!
Thanks in advance