Wie kann ich PPP-Fehler erhalten bzw. diagnostizieren, warum der Router selbst keine Verbindung zum Internet über VDSL an der Fritzbox 7360 herstellen kann?

Wie kann ich PPP-Fehler erhalten bzw. diagnostizieren, warum der Router selbst keine Verbindung zum Internet über VDSL an der Fritzbox 7360 herstellen kann?

Ich versuche über eine Fritzbox 7360 per VDSL eine Verbindung zum Internet herzustellen. Meine Netzwerkeinstellungen sind:

config interface 'loopback'
    option device 'lo'
    option proto 'static'
    option ipaddr '127.0.0.1'
    option netmask '255.0.0.0'

config globals 'globals'
    option ula_prefix 'fdd2:a40d:d919::/48'

config atm-bridge 'atm'
    option vpi '1'
    option vci '32'
    option encaps 'llc'
    option payload 'bridged'
    option nameprefix 'dsl'

config dsl 'dsl'
        option annex 'b'
    option ds_snr_offset '0'
        option line_mode 'vdsl'
        option tone 'auto'

config device
    option name 'br-lan'
    option type 'bridge'
    list ports 'lan1'
    list ports 'lan2'
    list ports 'lan3'
    list ports 'lan4'

config interface 'lan'
    option device 'br-lan'
    option proto 'static'
    option ipaddr '192.168.1.1'
    option netmask '255.255.255.0'
    option ip6assign '60'

config interface 'wan'
    option ifname 'dsl0.835'
        option device 'dsl0'
    option proto 'pppoe'
    option username '^censored^'
    option password '^censored^'
        option ipv6 'auto'

config interface 'wan6'
    option device '@wan'
    option proto 'dhcpv6'

Die Einstellungen sind für Vodafone Griechenland. Um das PPP durchzuführen, habe ich Folgendes versucht:

ifup wan

Das hat keinen Fehler ergeben. Danach habe ich versucht

ping 8.8.8.8

Und ich habe die folgende Fehlermeldung erhalten:

PING 8.8.8.8 (8.8.8.8): 56 data bytes
ping: sendto: Network unreachable

Der Ping-Befehl wurde innerhalb des Routers selbst ausgeführt. Außerdem hat OpenWRT überhaupt kein Lucy, sondern einen SSH-Daemon.

Die OpenWRT-Version ist:

NAME="OpenWrt"
VERSION="SNAPSHOT"
ID="openwrt"
ID_LIKE="lede openwrt"
PRETTY_NAME="OpenWrt SNAPSHOT"
VERSION_ID="snapshot"
HOME_URL="https://openwrt.org/"
BUG_URL="https://bugs.openwrt.org/"
SUPPORT_URL="https://forum.openwrt.org/"
BUILD_ID="r17237-7c4d79aa1c"
OPENWRT_BOARD="lantiq/xrx200"
OPENWRT_ARCH="mips_24kc"
OPENWRT_TAINTS=""
OPENWRT_DEVICE_MANUFACTURER="OpenWrt"
OPENWRT_DEVICE_MANUFACTURER_URL="https://openwrt.org/"
OPENWRT_DEVICE_PRODUCT="Generic"
OPENWRT_DEVICE_REVISION="v0"
OPENWRT_RELEASE="OpenWrt SNAPSHOT r17237-7c4d79aa1c"

Irgendeine Idee, warum?

verwandte Informationen