This shows you the differences between two versions of the page.
| Next revision | Previous revision | ||
|
dhcpv6_for_isp [2018/06/28 10:30] admin created |
dhcpv6_for_isp [2018/06/28 10:44] (current) admin |
||
|---|---|---|---|
| Line 1: | Line 1: | ||
| Where 2803:1920:0:1::/64 is the WAN ONU, then the network connection ONU and OLT. | Where 2803:1920:0:1::/64 is the WAN ONU, then the network connection ONU and OLT. | ||
| + | |||
| + | == /etc/dhcp/dhcpd.conf == | ||
| subnet6 2803:1920:0:1::/64 { | subnet6 2803:1920:0:1::/64 { | ||
| Line 16: | Line 18: | ||
| } | } | ||
| } | } | ||
| + | | ||
| + | == /etc/radvd.conf == | ||
| + | interface eth1 | ||
| + | { | ||
| + | AdvSendAdvert on; | ||
| + | AdvDefaultPreference medium; | ||
| + | AdvSourceLLAddress on; | ||
| + | # Advertise at least every 30 seconds | ||
| + | MaxRtrAdvInterval 30; | ||
| + | AdvLinkMTU 1280; | ||
| + | AdvManagedFlag on; | ||
| + | AdvLinkMTU 1480; | ||
| + | AdvOtherConfigFlag on; | ||
| + | MinRtrAdvInterval 3; | ||
| + | | ||
| + | prefix 2803:1920:0:1:0:0:0:0/112 | ||
| + | { | ||
| + | AdvOnLink on; | ||
| + | AdvAutonomous on; | ||
| + | AdvRouterAddr on; | ||
| + | }; | ||
| + | }; | ||