Important note about SSL VPN compatibility for 20.0 MR1 with EoL SFOS versions and UTM9 OS. Learn more in the release notes.

This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Howto "VDSL von T-COM und ASG V7"

Hallo zusammen,

VDSL (25 oder 50mbit) der Deutschen Telekom kommt als PPPoE über VLAN-ID 7 und genau dies muss am PPPoE-Interface wie folgt eingestellt werden:

Als root auf console einloggen:

- in /var/sec/chroot-pppoe/etc/ppp/options folgende neue Werte setzen (Originalwert ist jeweils 1492):
 mtu 1476
 mru 1476


cp /usr/sbin/vconfig /var/chroot-pppoe/bin/

cd /var/chroot-pppoe/bin/
cp DSL.sh DSL.sh.orig

- in /var/chroot-pppoe/bin/DSL.sh folgenden Block löschen
 
   # Initialise network interface with empty IP address
   ifconfig $HW down
   ifconfig $HW 0.0.0.0 up


  und dafür diesen einsetzen:

   # Initialise network interface with empty IP address
   ifconfig "$HW.7" down
   vconfig rem "$HW.7"
   ifconfig $HW down
    
   # setup VLAN7
   ifconfig $HW up
   vconfig add $HW 7
   ifconfig $HW.7 up
   
   # set new vlan interface as $HW interface
   HW="$HW.7"



Einloggen im WebAdmin:

- das PPPoE Interface für VDSL wie gehabt konfigurieren, aber die MTU auf 1476 (Defaultwert ist 1492) setzen

Das ganz funktioniert auch, wenn ein konfiguriertes PPPoE Interface für DSL wegen Umstellung auf VDSL weitergenutzt werden soll: einfach die Änderungen oben auf der Kommandozeile machen, im WebAdmin die MTU auf 1476 setzen und das Interface deaktivieren/aktivieren.

Logging/Reporting, VPN usw. funktioniert wie gehabt und ohne Änderung weiter.

Achtung: die Änderungen führen dazu, dass alle(!) PPPoE Interfaces nur noch VDSL (d.h. Ethernet mit VLAN ID 7) beherrschen!

Ich hoffe das hilft dem einen oder anderen.


This thread was automatically locked due to age.