[Solved] "easybox 904 xdsl" und VDSL2

Der Status wird so in der Admin-Übersicht gezeigt:
The status is shown in the admin overview:

" DSL Status: UP
Line State: showtime_tc_sync [0x801]
Line Mode: G.993.2 (VDSL2)
Annex: B
Profile: 17a
Data Rate: 25.379 Mb/s / 5.556 Mb/s
Max. Attainable Data Rate (ATTNDR): 123.347 Mb/s / 48.123 Mb/s
Latency: 8.0 ms / 4.0 ms
Line Attenuation (LATN): 9.9 dB / 9.5 dB
Signal Attenuation (SATN): 10.1 dB / 14.3 dB
Noise Margin (SNR): 39.7 dB / 39.6 dB
Aggregate Transmit Power(ACTATP): -2.1 dB / 12.9 dB
Forward Error Correction Seconds (FECS): 0 / 46
Errored seconds (ES): 0 / 8
Severely Errored Seconds (SES): 0 / 0
Loss of Signal Seconds (LOSS): 0 / 0
Unavailable Seconds (UAS): 33 / 33
Header Error Code Errors (HEC): 0 / 0
Non Pre-emtive CRC errors (CRC_P): 0 / 0
Pre-emtive CRC errors (CRCP_P): 0 / 0
Line Uptime: 59m 14s
ATU-C System Vendor ID: Broadcom 177.158
Power Management Mode: L0 - Synchronized"


Ein Login ist jedoch nicht moeglich.
Bei "Interfaces" ist "G.993.2" nicht auswählbar. Was dann nehmen ?

A login is not possible.
For "Interfaces" "G.993.2" can not be selected. What to take then?

best regards
Horan

Which OpenWrt version are we talking about?

root@LEDE:~# cat /proc/version
Linux version 4.9.31 ... (gcc version 6.3.0 (LEDE GCC 6.3.0 r4540-3d457764e2)
luci 	git-17.165.70928-dd6cb31-1

I have a suspicion, but to confirm please paste your /etc/config/network (blank out usernames and passwords)

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

config globals 'globals'
        option ula_prefix 'fd06:5a3d:f9cb::/48'

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

config dsl 'dsl'
        option xfer_mode 'ptm'
        option annex 'b'
        option tone 'bv'
        option line_mode 'vdsl'

config interface 'lan'
        option type 'bridge'
        option proto 'static'
        option netmask '255.255.255.0'
        option ip6assign '60'
        list ifname 'eth0.1'
        list ifname 'eth0.66'
        option ipaddr '10.10.10.19'

config device 'lan_dev'
        option name 'eth0.1'
        option macaddr '18:80:bf:0e:45:7e'

config interface 'wan'
        option ifname 'ptm0'
        option proto 'pppoe'
        option ipv6 'auto'
        option username 'xxxxxxxxxxxxxxx'
        option password 'xxxxxxxxxxxxxxx'

config device 'wan_dev'
        option name 'ptm0'
        option macaddr '18:80:bf:0e:45:7f'

config interface 'wan6'
        option ifname 'pppoe-wan'
        option proto 'dhcpv6'

config switch
        option name 'switch0'
        option reset '1'
        option enable_vlan '1'

config switch_vlan
        option device 'switch0'
        option vlan '1'
        option ports '0 6t'
        option vid '1'

config switch_vlan
        option device 'switch0'
        option vlan '2'
        option ports '4 6t'
        option vid '2'

config switch
        option name 'switch1'
        option reset '1'
        option enable_vlan '1'
        option enable_vlan4k '1'

config switch_vlan
        option device 'switch1'
        option vlan '1'
        option ports '0 1 2 3 6t'

config device 'inic_dev'
        option name 'eth0.3'

config interface 'inic'
        option proto 'none'
        option ifname 'eth0.3'

config switch_vlan
        option device 'switch0'
        option vlan '3'
        option vid '3'
        option fid '3'
        option ports '6t'

config device 'wlan_dev'
        option name 'eth0.66'

config device 'guest_wlan_dev'
        option name 'eth0.71'

config switch_vlan
        option device 'switch0'
        option vlan '4'
        option vid '66'
        option fid '4'
        option ports '6t'

config switch_vlan
        option device 'switch0'
        option vlan '5'
        option vid '71'
        option fid '5'
        option ports '6t'

config switch_vlan
        option device 'switch0'
        option vlan '6'
        option ports '4t'
        option vid '132'

That is a very old version, please consider to update, I'm mentioning this as ptm has been replaced with using dsl as ifname quite a while ago (but I'm not going through git logs to confirm if your revision already had it or not, at least the easybox-904 patches only got fixed ~2 or 3 months ago).

Furthermore VDSL2+vectoring suggests to me that you probably are on a BNG platform, but I don't see any vlan tagging (usually "option ifname 'dsl0.7'" for most ISPs in germany) in your configuration.

Please upgrade to one of the current snapshots (2018-07-26 would be the most current prebuilt image at the time of this writing) first and don't keep your existing config (at least not /etc/config/network), to get the fresh/ fixed defaults.

Solved!

Statt VLAN-ID (hier 132) bei "Switch" zu konfigurieren, musste sie im WAN-Eintrag per SSH konfiguriert werden (über die Web-Oberläche geht das nicht ? Wenn doch, wo ? )

Instead of configuring VLAN-ID (here 132) in "Switch", it had to be configured in the WAN entry via ssh (this is not possible via the web interface, if so, where?)

from nano/etc/config/network:

config interface 'wan'
        option ifname 'ptm0'
        option proto 'pppoe'
        option ipv6 'auto'
        option username 'xxxxxxxxxxxxxxx'
        option password 'xxxxxxxxxxxxxxx'

now with VLAN-ID 132

config interface 'wan'
        option ifname 'ptm0.132'
        option proto 'pppoe'
        option ipv6 'auto'
        option username 'xxxxxxxxxxxxxxx'
        option password 'xxxxxxxxxxxxxxx'
  • that's how it works now with Easybox 904 xdsl
1 Like

The solution is synonymous for other routers here in the forum

In english please, so that other users worldwide can follow the discussion.

1 Like

comes with google-translate

Network > Interfaces > WAN > Edit > Common Configuration > Physical Settings > Interface: "Custom Interface" > there is a box to enter an interface name

2 Likes

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