IPv6 PPPoE mit FortiGate

sixxs.net gibt es nicht mehr. Sie möchten aber trotzdem eine direkte IPv6 Verbindung zu Ihrem Provider via DSL aufbauen?

Dazu benötigen Sie FortiOS 5.4.6 oder 5.6.2:

Konfigurieren Sie Ihr externes Interfaces mit PPPoE:

config system interface
        edit "wan1"
        set mode pppoe
        set allowaccess ping
        set type physical
        set role wan
        config ipv6
            set ip6-mode pppoe
            set ip6-allowaccess ping
            set dhcp6-prefix-delegation enable
            set dhcp6-prefix-hint 2001:db8::/48
            set dhcp6-prefix-hint-plt 900
            set dhcp6-prefix-hint-vlt 10800
            set autoconf enable
        end
        set username "<your username>"
        set password ENC <your password>
        set dns-server-override disable
    next
end

Die entscheidenden Parameter sind:

config ipv6
     set ip6-mode pppoe
     set dhcp6-prefix-delegation enable
     set autoconf enable
next

Eventuell benötigt Ihr Provider andere Einstellungen. Diese Konfiguration funktioniert seit ein paar Monaten.