Vom Fachmann für dein Motorrad
Druckplattenlager Kupplung passend für Ducati Modelle mit Trockenkupplung
Passend für alle Ducati Modelle mit Trockenkupplung.
12,20€
Vorrätig
- Hersteller: FAG
- Artikelnummer: 6201-2RS2/LHT23
- Produktart: Druckplattenlager für Kupplung
- Passend für: Ducati Modelle mit Trockenkupplung (modellabhängig)
- Lagerbauart: Rillenkugellager, beidseitig abgedichtet (2RS)
- Abmessungen (ca.): Innendurchmesser 12 mm, Außendurchmesser 32 mm, Breite 10 mm
- Material: Hochwertiger Wälzlagerstahl
Das FAG Druckplattenlager ist ein speziell für Ducati Motorräder mit Trockenkupplung entwickeltes Kugellager. Es dient als zentrales Bauteil zur reibungsarmen Lagerung der Kupplungsdruckplatte und sorgt für eine zuverlässige Funktion der Kupplungseinheit.
Vorteile auf einen Blick
Das Druckplattenlager bietet zahlreiche Vorteile für den Einsatz in Ducati Trockenkupplungen.
- Langlebige und wartungsarme Konstruktion durch hochwertige Dichtungen
- Optimale Passgenauigkeit für viele Ducati Modelle mit Trockenkupplung
- Zuverlässige Funktion auch unter hohen Belastungen im Alltags- und Sportbetrieb
- Korrosionsgeschützt durch beidseitige Abdichtung gegen Schmutz und Feuchtigkeit
Technische Daten
Kernmerkmale des Druckplattenlagers im Überblick:
- Bauform: Rillenkugellager, beidseitig abgedichtet (2RS)
- Maße: ca. 12 x 32 x 10 mm (Innen-Ø x Außen-Ø x Breite)
- Dichtungstyp: LHT23 – spezielle Fettfüllung und Dichtlippen für erhöhte Lebensdauer laut Herstellerangabe
- Einsatztemperaturbereich: typischerweise -30 °C bis +110 °C (laut Herstellerangabe)
Einsatzbereiche
Das Druckplattenlager eignet sich insbesondere für folgende Anwendungen:
- Ducati Motorräder mit Trockenkupplungssystemen (modellabhängig, bitte Kompatibilität prüfen)
- Ersatzteilbedarf bei Wartung oder Instandsetzung der Kupplungseinheit
- Anwendende aus den Bereichen Werkstatt, Fachhandel sowie ambitionierte Privatpersonen mit technischem Know-how
Lieferumfang
- 1x FAG Druckplattenlager Kupplung (Rillenkugellager, beidseitig abgedichtet)
- Verpackt in Originalverpackung des Herstellers (je nach Ausführung kann die Verpackungsform variieren)
FAQ
- Für welche Ducati Modelle ist das Lager geeignet?
Das Lager ist passend für viele Ducati Modelle mit Trockenkupplung. Die genaue Kompatibilität hängt vom jeweiligen Modell und Baujahr ab. - Muss das Lager gefettet werden?
Das Lager ist werkseitig lebensdauergeschmiert und benötigt keine zusätzliche Schmierung vor dem Einbau. - Können auch andere Motorradmarken dieses Lager verwenden?
Die Verwendung ist primär auf Ducati Modelle mit passender Aufnahme ausgelegt. Bei anderen Marken sollte die Maßhaltigkeit geprüft werden. - Muss beim Austausch Spezialwerkzeug verwendet werden?
Für den fachgerechten Einbau wird geeignetes Werkzeug empfohlen, um Beschädigungen zu vermeiden. - Sind Ersatzteile von FAG qualitativ hochwertig?
FAG zählt zu den führenden Herstellern von Wälzlagern und steht laut Branchenangaben für hohe Qualität und Zuverlässigkeit.
Alle Angaben ohne Gewähr.
Passend für alle Ducati Modelle mit Trockenkupplung.
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; } ?>Druckplatte Kupplung für Ducati mit Trockenkupplung -gold schwarz rot-
-passend für alle Ducati Modelle mit Trockenkupplung-
62,00€
<?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; } ?>Ducati Kupplungsfederteller – 748-999, 900,1000 SS, Monster, S2R, S4, S4R, S, ST2, ST4, Multistrada
Hersteller: Ducati Artikelnummer: 84110022A Produktart: Kupplungsfederteller Farbe: Metallisch (je nach Ausführung) Material: Hochwertiger Stahl oder…
5,45€
<?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; } ?>Ducati Kupplungsfeder Ölbadkupplung – 400, 600, 750 SS, Monster, 851 SP…
Hersteller: Ducati Artikelnummer: 066716550 Produktart: Kupplungsfeder für Ölbadkupplung Farbe: Metallisch (je nach Ausführung) Material: Federstahl…
6,49€
<?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; } ?>Kbike Kupplungsfedernset für Ducati Modelle
Hersteller: Kbike Artikelnummer: K05N Produktart: Kupplungsfedernset Material: Hochwertiger Federstahl (laut Herstellerangabe) Einsatzbereich: Kupplungssystem verschiedener Ducati…
32,99€
<?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; } } } ?>

Druckplatte Kupplung für Ducati mit Trockenkupplung -gold schwarz rot-
-passend für alle Ducati Modelle mit Trockenkupplung-
62,00€

Ducati Kupplungsfederteller – 748-999, 900,1000 SS, Monster, S2R, S4, S4R, S, ST2, ST4, Multistrada
Hersteller: Ducati Artikelnummer: 84110022A Produktart: Kupplungsfederteller Farbe: Metallisch (je nach Ausführung) Material: Hochwertiger Stahl oder...
5,45€

Ducati Kupplungsfeder Ölbadkupplung – 400, 600, 750 SS, Monster, 851 SP…
Hersteller: Ducati Artikelnummer: 066716550 Produktart: Kupplungsfeder für Ölbadkupplung Farbe: Metallisch (je nach Ausführung) Material: Federstahl...
6,49€

Kbike Kupplungsfedernset für Ducati Modelle
Hersteller: Kbike Artikelnummer: K05N Produktart: Kupplungsfedernset Material: Hochwertiger Federstahl (laut Herstellerangabe) Einsatzbereich: Kupplungssystem verschiedener Ducati...
32,99€





Bewertungen
Es gibt noch keine Bewertungen.