Vom Fachmann für dein Motorrad
- Hersteller: Ducati
- Artikelnummer: 400520258
- Produktart: Anlasserfreilauf
- Farbe: Metallisch (je nach Ausführung)
- Material: Hochwertiger Stahl
- Einbauort: Motor/Getriebeeinheit
- Kompatibilität: Ducati Diavel 1200, Diavel 1260, X-Diavel, Multistrada 1200 (Modelljahre 2015–2017)
- Funktion: Übertragung des Anlasserdrehmoments auf die Kurbelwelle; verhindert Rücklaufbewegungen beim Startvorgang
Der Anlasserfreilauf ist ein zentrales Bauteil im Startsystem verschiedener Ducati Motorräder. Er sorgt dafür, dass der Anlasser das Motordrehmoment zuverlässig überträgt und schützt das System vor Rückdrehungen. Dieses Originalteil ist speziell für ausgewählte Modelle wie die Ducati Diavel und Multistrada entwickelt.
Vorteile auf einen Blick
Der Anlasserfreilauf bietet zahlreiche Vorteile für den zuverlässigen Betrieb des Motorrads.
- Zuverlässige Kraftübertragung beim Startvorgang
- Langlebige Konstruktion aus robustem Stahl
- Passgenaue Fertigung für Ducati Modelle
- Sicherer Schutz vor Rücklaufbewegungen des Motors
Technische Daten
Kernmerkmale des Anlasserfreilaufs in kompakter Übersicht:
- Konstruiert für hohe Belastungen im Motorradbetrieb
- Spezielle Bauform für Ducati V2- und V4-Motoren (je nach Modell)
- Einfache Integration in das bestehende Startsystem möglich
- Laufruhige Funktion durch präzise Fertigungstoleranzen
- Korrosionsbeständige Oberflächenbehandlung (laut Hersteller)
Einsatzbereiche
Der Anlasserfreilauf wird typischerweise in folgenden Bereichen eingesetzt:
- Ducati Diavel 1200 / 1260 (alle Varianten, laut Modelljahr)
- Ducati X-Diavel (je nach Ausführung)
- Ducati Multistrada 1200 (Baujahre 2015–2017)
- Anwendende im Bereich Motorradwartung und -reparatur, Fachwerkstätten sowie ambitionierte Hobbyschrauberinnen und -schrauber
Lieferumfang
- Anlasserfreilauf passend für die genannten Ducati Modelle (1 Stück)
- Hinweis: Dichtungen oder Montagematerial sind nicht enthalten – bitte je nach Bedarf separat bestellen.
FAQ
Ist der Anlasserfreilauf mit allen Ducati Diavel Modellen kompatibel?
Die Kompatibilität bezieht sich auf die Ducati Diavel 1200, Diavel 1260 sowie X-Diavel und Multistrada 1200 der Baujahre 2015–2017. Bei Unsicherheiten empfiehlt sich ein Abgleich mit der Fahrgestellnummer.
Muss der Einbau durch eine Fachwerkstatt erfolgen?
Für optimale Funktion wird der Einbau durch qualifiziertes Fachpersonal empfohlen.
Sind Dichtungen oder weiteres Zubehör im Lieferumfang enthalten?
Im Lieferumfang befindet sich ausschließlich der Anlasserfreilauf. Weitere Komponenten sind separat zu beziehen.
Muss der Freilauf regelmäßig gewartet werden?
Das Bauteil ist wartungsarm. Eine Kontrolle bei Servicearbeiten am Motor wird dennoch empfohlen.
Bietet das Produkt eine Garantie?
Es gelten die gesetzlichen Gewährleistungsbestimmungen. Details können je nach Land oder Händler variieren.
Alle Angaben ohne Gewähr.
Ducati Diavel / X-Diavel 1200 / 1260 2015 – 2017
Ducati Multistrada 1200 2015 – 2017
Cavalieri Ducati 3
40132 Bologna
Italien
infodmd@ducati.com
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; } ?>Anlasserfreilauf für Ducati Monster 748 916 ST2 bis ca 1998
DUC Ducati 400 Monster (400 ccm, 1994 - 1997) DUC Ducati 400 SS (400 ccm,…
99,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; } ?>Anlasserfreilauf Ducati 750-900 SS i.e., Monster, 748, 996, 998, 999, Hypermotard, ST2, ST3, ST4..
DUC Ducati 1000 DS Multistrada (1000 ccm, 2003 - 2006) DUC Ducati 1000 DS Multistrada…
74,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; } ?>Anlasserfreilauf Set Ducati 748–999 – 3-teilig & passgenau
Hersteller: DucorDie Artikelnummer: Freilauf 999 komplett Produktart: Anlasserfreilauf Komplettset (3-teilig) Farbe: Metallisch (je nach Ausführung)…
399,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; } ?>Anlasserfreilauf Set Ducati 748–999 – Passgenau & komplett
Hersteller: DucorDie Artikelnummer: Freilauf 999 Produktart: Anlasserfreilauf Komplettset, 2-teilig Kompatibilität: Ducati 748, 749, 996, 998,…
199,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; } } } ?>

Anlasserfreilauf für Ducati Monster 748 916 ST2 bis ca 1998
DUC Ducati 400 Monster (400 ccm, 1994 - 1997) DUC Ducati 400 SS (400 ccm,...
99,00€

Anlasserfreilauf Ducati 750-900 SS i.e., Monster, 748, 996, 998, 999, Hypermotard, ST2, ST3, ST4..
DUC Ducati 1000 DS Multistrada (1000 ccm, 2003 - 2006) DUC Ducati 1000 DS Multistrada...
74,90€

Anlasserfreilauf Set Ducati 748–999 – 3-teilig & passgenau
Hersteller: DucorDie Artikelnummer: Freilauf 999 komplett Produktart: Anlasserfreilauf Komplettset (3-teilig) Farbe: Metallisch (je nach Ausführung)...
399,00€

Anlasserfreilauf Set Ducati 748–999 – Passgenau & komplett
Hersteller: DucorDie Artikelnummer: Freilauf 999 Produktart: Anlasserfreilauf Komplettset, 2-teilig Kompatibilität: Ducati 748, 749, 996, 998,...
199,00€









