Vom Fachmann für dein Motorrad
- Hersteller: YSS
- Artikelnummer: MZ456-330TRL-02-85
- Produktart: Federbein (Stoßdämpfer)
- Farbe: Schwarz/Silber (je nach Ausführung)
- Länge: 330 mm (laut Herstellerangabe)
- Einstellmöglichkeiten: Zugstufendämpfung, Federvorspannung
- ABE (Allgemeine Betriebserlaubnis) vorhanden
- Einbauort: Hinterachse
- Kompatibilität: Ducati SS 750, Ducati SS 900 (modellabhängig, bitte Fahrzeugdaten prüfen)
Das YSS Federbein ist ein hochwertiges, einstellbares Stoßdämpfersystem für die Hinterachse der Ducati SS 750 und SS 900. Es bietet individuelle Anpassungsmöglichkeiten für Fahrkomfort und Performance und ist mit einer ABE für den legalen Straßenbetrieb ausgestattet.
Vorteile auf einen Blick
Das Federbein von YSS überzeugt durch seine vielseitigen Einstellmöglichkeiten und geprüfte Qualität.
- Einstellbare Zugstufendämpfung für individuelles Fahrverhalten
- Anpassbare Federvorspannung zur optimalen Abstimmung auf Fahrergewicht und Beladung
- Mit ABE – keine zusätzliche Eintragung erforderlich (modellabhängig)
- Langlebige Konstruktion für zuverlässigen Einsatz im Alltag und auf Touren
Technische Daten
Kernmerkmale des YSS Federbeins im Überblick:
- Länge: ca. 330 mm (je nach Ausführung)
- Zugstufe stufenlos einstellbar
- Federvorspannung werkzeuglos verstellbar (je nach Modell)
- Dämpfergehäuse aus robustem Aluminium/Stahl-Kombination gefertigt
- Piggyback-Ausgleichsbehälter je nach Ausführung möglich
- Betriebserlaubnis gemäß ABE für viele Modelle vorhanden
Einsatzbereiche
Das YSS Federbein eignet sich besonders für Motorradfahrende, die Wert auf individuell anpassbares Fahrwerk legen. Typische Einsatzbereiche sind:
- Straßenmotorräder der Baureihe Ducati SS 750/900 (modellabhängig)
- Touring- und Alltagsbetrieb mit wechselnden Beladungen oder Soziusbetrieb
- Anwendende, die Komfort und sportliche Performance kombinieren möchten
- Nutzende, die eine zugelassene Nachrüstlösung mit ABE suchen
Lieferumfang
- 1x YSS Federbein MZ456-330TRL-02-85 für Hinterachse Ducati SS 750/900 (modellabhängig)
- Anbauteile/Montagematerial laut Herstellerangabe enthalten (je nach Ausführung)
- Detaillierte Montageanleitung in Deutsch/Englisch (sofern vom Hersteller vorgesehen)
- Achtung: Die genaue Ausstattung kann je nach Modelljahr oder Ausführung abweichen.
FAQ
Ist das Federbein direkt passend für meine Ducati?
Die Passgenauigkeit bezieht sich auf Ducati SS 750 und SS 900 Modelle. Bitte vor dem Einbau Fahrzeugdaten sowie Baujahr prüfen.
Muss das Federbein eingetragen werden?
Für viele Modelle liegt eine ABE vor; eine zusätzliche Eintragung ist dann nicht erforderlich. Angaben können je nach Modelljahr abweichen.
Können Einstellungen selbst vorgenommen werden?
Sowohl Zugstufe als auch Federvorspannung sind individuell einstellbar. Hinweise zur Einstellung finden sich in der beiliegenden Anleitung.
Brauche ich Spezialwerkzeug zur Montage?
In der Regel ist kein Spezialwerkzeug erforderlich. Die Montage kann mit Standardwerkzeugen erfolgen; bei Unsicherheiten empfiehlt sich die Installation durch Fachpersonal.
Wie sieht es mit Wartung oder Service aus?
Regelmäßige Sichtprüfung wird empfohlen. Für Servicearbeiten wie Ölwechsel oder Revision sollte eine Fachwerkstatt konsultiert werden.
Alle Angaben ohne Gewähr.
Du musst angemeldet sein, um eine Bewertung abgeben zu können.
Verwandte Produkte

<?php // Obtener el ID del producto actual $product_id = get_the_ID(); // Obtener todas las imágenes de la galería del producto $product_gallery = get_post_meta( $product_id, '_product_image_gallery', true ); // Obtener el enlace del producto $product_link = get_permalink( $product_id ); // Si la galería no está vacía, obtener la primera imagen de la galería if ( $product_gallery ) { $gallery_images = explode( ',', $product_gallery ); $first_image_id = $gallery_images[0]; $image_url = wp_get_attachment_image_src( $first_image_id, 'full' ); } else { // Si no hay imágenes en la galería, obtener la imagen principal del producto $image_id = get_post_thumbnail_id( $product_id ); $image_url = wp_get_attachment_image_src( $image_id, 'full' ); } // Mostrar la imagen con enlace al producto if ( $image_url ) { $image_width = $image_url[1]; $image_height = $image_url[2]; echo '<img src="' . esc_url( $image_url[0] ) . '" alt="' . esc_attr( get_the_title() ) . '" width="' . esc_attr( $image_width ) . '" height="' . esc_attr( $image_height ) . '" loading="lazy" aria-hidden="true">'; } ?><?php global $product; if (!$product->is_in_stock()) { $showText = '<span class="out">Out of stock</span>'; echo $showText; } if ($product->is_on_sale() && $product->get_type() !== 'grouped'){ if ( $product->get_type() == 'variable' ) { $vars = $product->get_available_variations(); $var_cero = $vars[0]['variation_id']; $variable_product = wc_get_product($var_cero); $regular_price = $variable_product->get_regular_price(); $sale_price = $variable_product->get_sale_price(); if($sale_price){ $percent_max = round((($regular_price - $sale_price) / $regular_price) * 100); } else { $percent_max = 0; } $cont_percent = 0; foreach ($vars as $varID) { $variable_product = wc_get_product($varID['variation_id']); $regular_price = $variable_product->get_regular_price(); $sale_price = $variable_product->get_sale_price(); if($sale_price){ $percent = round((($regular_price - $sale_price) / $regular_price) * 100); } else { $percent = 0; } if($percent_max != $percent){ if($percent_max > $percent){ $percent_max = $percent_max; } else { $percent_max = $percent; } } else { $cont_percent++; } #echo $regular_price." - ".$sale_price."%".$percent_max."<br>"; } if($cont_percent == count($vars)){ $showText = '<span class="onsale">'. __('-', 'woocommerce' ). $percent_max. '%</span>'; } else { $showText = '<span class="onsale">'. __('Up to -', 'woocommerce' ). $percent_max. '%</span>'; } } else { $regular_price = $product->get_regular_price(); $sale_price = $product->get_sale_price(); $percent = round((($regular_price - $sale_price) / $regular_price) * 100); $showText = '<span class="onsale">'. __('-', 'woocommerce' ). $percent . '%</span>'; } echo $showText; } ?>YSS Federbein Ducati 1098 Zugstufe + Vorspannung einstellbar (ABE)
Hersteller: YSS Artikelnummer: MZ456-295TR-16-85 Produktart: Federbein (Stoßdämpfer) Fahrzeugtyp: Ducati 1098 Einstellmöglichkeiten: Zugstufendämpfung und Federvorspannung ABE…
419,90€
<?php if (!function_exists('show_quantity')) { function show_quantity() { global $product; // Verificar si el producto no es variable, está en stock y no tiene precio vacío if ($product && !$product->is_type('variable') && !$product->is_type('grouped') && $product->is_in_stock() && !empty($product->get_price())) { return true; } else { return false; } } } ?>
<?php // Obtener el ID del producto actual $product_id = get_the_ID(); // Obtener todas las imágenes de la galería del producto $product_gallery = get_post_meta( $product_id, '_product_image_gallery', true ); // Obtener el enlace del producto $product_link = get_permalink( $product_id ); // Si la galería no está vacía, obtener la primera imagen de la galería if ( $product_gallery ) { $gallery_images = explode( ',', $product_gallery ); $first_image_id = $gallery_images[0]; $image_url = wp_get_attachment_image_src( $first_image_id, 'full' ); } else { // Si no hay imágenes en la galería, obtener la imagen principal del producto $image_id = get_post_thumbnail_id( $product_id ); $image_url = wp_get_attachment_image_src( $image_id, 'full' ); } // Mostrar la imagen con enlace al producto if ( $image_url ) { $image_width = $image_url[1]; $image_height = $image_url[2]; echo '<img src="' . esc_url( $image_url[0] ) . '" alt="' . esc_attr( get_the_title() ) . '" width="' . esc_attr( $image_width ) . '" height="' . esc_attr( $image_height ) . '" loading="lazy" aria-hidden="true">'; } ?><?php global $product; if (!$product->is_in_stock()) { $showText = '<span class="out">Out of stock</span>'; echo $showText; } if ($product->is_on_sale() && $product->get_type() !== 'grouped'){ if ( $product->get_type() == 'variable' ) { $vars = $product->get_available_variations(); $var_cero = $vars[0]['variation_id']; $variable_product = wc_get_product($var_cero); $regular_price = $variable_product->get_regular_price(); $sale_price = $variable_product->get_sale_price(); if($sale_price){ $percent_max = round((($regular_price - $sale_price) / $regular_price) * 100); } else { $percent_max = 0; } $cont_percent = 0; foreach ($vars as $varID) { $variable_product = wc_get_product($varID['variation_id']); $regular_price = $variable_product->get_regular_price(); $sale_price = $variable_product->get_sale_price(); if($sale_price){ $percent = round((($regular_price - $sale_price) / $regular_price) * 100); } else { $percent = 0; } if($percent_max != $percent){ if($percent_max > $percent){ $percent_max = $percent_max; } else { $percent_max = $percent; } } else { $cont_percent++; } #echo $regular_price." - ".$sale_price."%".$percent_max."<br>"; } if($cont_percent == count($vars)){ $showText = '<span class="onsale">'. __('-', 'woocommerce' ). $percent_max. '%</span>'; } else { $showText = '<span class="onsale">'. __('Up to -', 'woocommerce' ). $percent_max. '%</span>'; } } else { $regular_price = $product->get_regular_price(); $sale_price = $product->get_sale_price(); $percent = round((($regular_price - $sale_price) / $regular_price) * 100); $showText = '<span class="onsale">'. __('-', 'woocommerce' ). $percent . '%</span>'; } echo $showText; } ?>YSS Federbein Ducati Sporttouring ST2 Zugstufe + Vorspannung einstellbar (ABE)
Hersteller: YSS Artikelnummer: MZ456-305TRL-07-85 Produktart: Federbein (Stoßdämpfer) Fahrzeugtyp: Ducati Sporttouring ST2 (je nach Baujahr und…
419,90€
<?php if (!function_exists('show_quantity')) { function show_quantity() { global $product; // Verificar si el producto no es variable, está en stock y no tiene precio vacío if ($product && !$product->is_type('variable') && !$product->is_type('grouped') && $product->is_in_stock() && !empty($product->get_price())) { return true; } else { return false; } } } ?>
<?php // Obtener el ID del producto actual $product_id = get_the_ID(); // Obtener todas las imágenes de la galería del producto $product_gallery = get_post_meta( $product_id, '_product_image_gallery', true ); // Obtener el enlace del producto $product_link = get_permalink( $product_id ); // Si la galería no está vacía, obtener la primera imagen de la galería if ( $product_gallery ) { $gallery_images = explode( ',', $product_gallery ); $first_image_id = $gallery_images[0]; $image_url = wp_get_attachment_image_src( $first_image_id, 'full' ); } else { // Si no hay imágenes en la galería, obtener la imagen principal del producto $image_id = get_post_thumbnail_id( $product_id ); $image_url = wp_get_attachment_image_src( $image_id, 'full' ); } // Mostrar la imagen con enlace al producto if ( $image_url ) { $image_width = $image_url[1]; $image_height = $image_url[2]; echo '<img src="' . esc_url( $image_url[0] ) . '" alt="' . esc_attr( get_the_title() ) . '" width="' . esc_attr( $image_width ) . '" height="' . esc_attr( $image_height ) . '" loading="lazy" aria-hidden="true">'; } ?><?php global $product; if (!$product->is_in_stock()) { $showText = '<span class="out">Out of stock</span>'; echo $showText; } if ($product->is_on_sale() && $product->get_type() !== 'grouped'){ if ( $product->get_type() == 'variable' ) { $vars = $product->get_available_variations(); $var_cero = $vars[0]['variation_id']; $variable_product = wc_get_product($var_cero); $regular_price = $variable_product->get_regular_price(); $sale_price = $variable_product->get_sale_price(); if($sale_price){ $percent_max = round((($regular_price - $sale_price) / $regular_price) * 100); } else { $percent_max = 0; } $cont_percent = 0; foreach ($vars as $varID) { $variable_product = wc_get_product($varID['variation_id']); $regular_price = $variable_product->get_regular_price(); $sale_price = $variable_product->get_sale_price(); if($sale_price){ $percent = round((($regular_price - $sale_price) / $regular_price) * 100); } else { $percent = 0; } if($percent_max != $percent){ if($percent_max > $percent){ $percent_max = $percent_max; } else { $percent_max = $percent; } } else { $cont_percent++; } #echo $regular_price." - ".$sale_price."%".$percent_max."<br>"; } if($cont_percent == count($vars)){ $showText = '<span class="onsale">'. __('-', 'woocommerce' ). $percent_max. '%</span>'; } else { $showText = '<span class="onsale">'. __('Up to -', 'woocommerce' ). $percent_max. '%</span>'; } } else { $regular_price = $product->get_regular_price(); $sale_price = $product->get_sale_price(); $percent = round((($regular_price - $sale_price) / $regular_price) * 100); $showText = '<span class="onsale">'. __('-', 'woocommerce' ). $percent . '%</span>'; } echo $showText; } ?>YSS Federbein Ducati SS i.e. 750 / 900 Zugstufe + Vorspannung einstellbar (ABE)
Hersteller: YSS Artikelnummer: MZ456-340TRL-04-85 Produktart: Federbein (Stoßdämpfer) Fahrzeugtyp: Ducati SS i.e. 750 / 900 Einstellmöglichkeiten:…
419,90€
<?php if (!function_exists('show_quantity')) { function show_quantity() { global $product; // Verificar si el producto no es variable, está en stock y no tiene precio vacío if ($product && !$product->is_type('variable') && !$product->is_type('grouped') && $product->is_in_stock() && !empty($product->get_price())) { return true; } else { return false; } } } ?>
<?php // Obtener el ID del producto actual $product_id = get_the_ID(); // Obtener todas las imágenes de la galería del producto $product_gallery = get_post_meta( $product_id, '_product_image_gallery', true ); // Obtener el enlace del producto $product_link = get_permalink( $product_id ); // Si la galería no está vacía, obtener la primera imagen de la galería if ( $product_gallery ) { $gallery_images = explode( ',', $product_gallery ); $first_image_id = $gallery_images[0]; $image_url = wp_get_attachment_image_src( $first_image_id, 'full' ); } else { // Si no hay imágenes en la galería, obtener la imagen principal del producto $image_id = get_post_thumbnail_id( $product_id ); $image_url = wp_get_attachment_image_src( $image_id, 'full' ); } // Mostrar la imagen con enlace al producto if ( $image_url ) { $image_width = $image_url[1]; $image_height = $image_url[2]; echo '<img src="' . esc_url( $image_url[0] ) . '" alt="' . esc_attr( get_the_title() ) . '" width="' . esc_attr( $image_width ) . '" height="' . esc_attr( $image_height ) . '" loading="lazy" aria-hidden="true">'; } ?><?php global $product; if (!$product->is_in_stock()) { $showText = '<span class="out">Out of stock</span>'; echo $showText; } if ($product->is_on_sale() && $product->get_type() !== 'grouped'){ if ( $product->get_type() == 'variable' ) { $vars = $product->get_available_variations(); $var_cero = $vars[0]['variation_id']; $variable_product = wc_get_product($var_cero); $regular_price = $variable_product->get_regular_price(); $sale_price = $variable_product->get_sale_price(); if($sale_price){ $percent_max = round((($regular_price - $sale_price) / $regular_price) * 100); } else { $percent_max = 0; } $cont_percent = 0; foreach ($vars as $varID) { $variable_product = wc_get_product($varID['variation_id']); $regular_price = $variable_product->get_regular_price(); $sale_price = $variable_product->get_sale_price(); if($sale_price){ $percent = round((($regular_price - $sale_price) / $regular_price) * 100); } else { $percent = 0; } if($percent_max != $percent){ if($percent_max > $percent){ $percent_max = $percent_max; } else { $percent_max = $percent; } } else { $cont_percent++; } #echo $regular_price." - ".$sale_price."%".$percent_max."<br>"; } if($cont_percent == count($vars)){ $showText = '<span class="onsale">'. __('-', 'woocommerce' ). $percent_max. '%</span>'; } else { $showText = '<span class="onsale">'. __('Up to -', 'woocommerce' ). $percent_max. '%</span>'; } } else { $regular_price = $product->get_regular_price(); $sale_price = $product->get_sale_price(); $percent = round((($regular_price - $sale_price) / $regular_price) * 100); $showText = '<span class="onsale">'. __('-', 'woocommerce' ). $percent . '%</span>'; } echo $showText; } ?>YSS Federbein Ducati Monster 821 Zugstufe + Vorspannung einstellbar (ABE)
Hersteller: YSS Artikelnummer: MZ456-290TRL-31-85 Produktart: Federbein (Stoßdämpfer) Fahrzeugtyp: Ducati Monster 821 (modellabhängig, bitte Kompatibilität prüfen)…
419,90€
<?php if (!function_exists('show_quantity')) { function show_quantity() { global $product; // Verificar si el producto no es variable, está en stock y no tiene precio vacío if ($product && !$product->is_type('variable') && !$product->is_type('grouped') && $product->is_in_stock() && !empty($product->get_price())) { return true; } else { return false; } } } ?>

YSS Federbein Ducati 1098 Zugstufe + Vorspannung einstellbar (ABE)
Hersteller: YSS Artikelnummer: MZ456-295TR-16-85 Produktart: Federbein (Stoßdämpfer) Fahrzeugtyp: Ducati 1098 Einstellmöglichkeiten: Zugstufendämpfung und Federvorspannung ABE...
419,90€

YSS Federbein Ducati Sporttouring ST2 Zugstufe + Vorspannung einstellbar (ABE)
Hersteller: YSS Artikelnummer: MZ456-305TRL-07-85 Produktart: Federbein (Stoßdämpfer) Fahrzeugtyp: Ducati Sporttouring ST2 (je nach Baujahr und...
419,90€

YSS Federbein Ducati SS i.e. 750 / 900 Zugstufe + Vorspannung einstellbar (ABE)
Hersteller: YSS Artikelnummer: MZ456-340TRL-04-85 Produktart: Federbein (Stoßdämpfer) Fahrzeugtyp: Ducati SS i.e. 750 / 900 Einstellmöglichkeiten:...
419,90€

YSS Federbein Ducati Monster 821 Zugstufe + Vorspannung einstellbar (ABE)
Hersteller: YSS Artikelnummer: MZ456-290TRL-31-85 Produktart: Federbein (Stoßdämpfer) Fahrzeugtyp: Ducati Monster 821 (modellabhängig, bitte Kompatibilität prüfen)...
419,90€

Bewertungen
Es gibt noch keine Bewertungen.