Vom Fachmann für dein Motorrad
- Hersteller: K&N
- Artikelnummer: DU-0901
- Produktart: Luftfilter
- Farbe: Rot/Schwarz
- Material: Spezielles Baumwollgewebe mit Mehrschicht-Öl-Imprägnierung
- Abmessungen: Passgenau für Ducati Monster Modelle (Details siehe Kompatibilität)
- Wiederverwendbar und waschbar
- Einsatzort: Ansaugsystem / Luftfilterkasten
- Verpackungsinhalt: 1 Luftfiltereinsatz
Der K&N Luftfilter DU-9001 ist ein hochwertiger Austauschluftfilter, der speziell für verschiedene Ducati Monster Modelle entwickelt wurde. Er ersetzt den serienmäßigen Papierfilter und sorgt für eine optimierte Luftzufuhr im Ansaugsystem.
Vorteile auf einen Blick
Dieser Luftfilter bietet zahlreiche Vorteile gegenüber herkömmlichen Filtern.
- Langlebiges, mehrfach verwendbares Filterelement
- Bessere Luftdurchlässigkeit für optimierte Motorleistung (laut Hersteller)
- Einfache Reinigung und Wartung möglich
- Passgenaue Konstruktion für Ducati Monster Modelle
Technische Daten
Kernmerkmale des K&N DU-9001 Luftfilters:
- Spezial-Baumwollgewebe mit Öl-Imprägnierung zur effektiven Filterung von Schmutzpartikeln
- Kann mehrfach gereinigt und wiederverwendet werden (kein Austausch bei Wartung notwendig)
- Konstruktion ermöglicht hohe Durchflussraten bei gleichzeitigem Schutz des Motors vor Verunreinigungen
- Lange Lebensdauer – laut Hersteller oft über die gesamte Lebensdauer des Motorrads nutzbar (bei sachgemäßer Pflege)
Einsatzbereiche
Der K&N DU-9001 eignet sich für den Einsatz in folgenden Bereichen:
- Ducati Monster Modelle wie Monster 620, Monster 695, Monster 800, Monster S2R, Monster S4, Monster S4R und weitere kompatible Baureihen (je nach Baujahr und Ausführung)
- Anwendende aus dem Bereich Motorradservice, Werkstätten sowie private Motorradbegeisterte und Tuning-Fans
- Sowohl für den alltäglichen Straßeneinsatz als auch für sportlich orientierte Nutzung geeignet (keine Rennsportzulassung beachten!)
Lieferumfang
- K&N Austauschluftfilter DU-9001 (einzeln)
- Anleitung zur Reinigung und Pflege (je nach Ausführung enthalten)
- Hinweis: Die Kompatibilität kann je nach Modelljahr oder Ausführung variieren. Bitte vor Einbau prüfen.
FAQ
Ist der K&N DU-9001 mit allen Ducati Monster Modellen kompatibel?
Die Kompatibilität bezieht sich auf ausgewählte Modelle wie die Ducati Monster 620, 695, 800, S2R, S4 und S4R. Je nach Baujahr oder Ausführung können Abweichungen auftreten. Bitte vor dem Einbau die Maße und Modellzuordnung prüfen.
Muss der Filter regelmäßig gewechselt werden?
Der Filter ist wiederverwendbar. Bei sachgemäßer Reinigung kann er über viele Jahre genutzt werden.
Wie wird der Filter gereinigt?
Zur Reinigung empfiehlt sich ein spezielles Reinigungsset von K&N. Die genauen Schritte sind in der beiliegenden Anleitung beschrieben.
Beeinflusst der Filter die Motorleistung?
Laut Hersteller kann durch die erhöhte Luftdurchlässigkeit eine Optimierung der Motorleistung erreicht werden. Die tatsächliche Wirkung hängt vom jeweiligen Fahrzeug ab.
Muss nach dem Einbau eine Anpassung am Steuergerät erfolgen?
In der Regel ist keine Anpassung notwendig. Bei umfangreichen Modifikationen am Ansaugsystem sollte jedoch eine Überprüfung erfolgen.
Alle Angaben ohne Gewähr.
W Citrus St 1455
92507 Riverside
CA United States Minor Outlying Islands
https://tech@knfilters.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; } ?>K&N Luftfilter passend für Ducati Monster Modelle 620 – 1000
Passend für folgende Ducati Modelle: 2008 Ducati Monster S4Rs Tricolore 998 alle Modelle 2008 Ducati…
79,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; } ?>K&N Luftfilter DU-1007 passend für Ducati Diavel Streetfighter 848 1098 1198
Passend für folgende Modelle: 2018 Ducati Diavel Diesel 1198 alle Modelle 2018 Ducati Diavel Carbon…
89,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; } ?>K&N Luftfilter DU-8015 – Passend für Ducati Scrambler Modelle
Hersteller: K&N Artikelnummer: DU-8015 Produktart: Luftfilter Farbe: Rot/Schwarz (je nach Ausführung) Material: Spezielles Baumwollgewebe mit…
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; } ?>K&N Luftfilter DU-6908 – Für Ducati Monster, Hypermotard, Scrambler
Hersteller: K&N Artikelnummer: DU-6908 Produktart: Austausch-Luftfilter Farbe: Rot/Schwarz Material: Spezielles Baumwollgewebe mit Mehrlagenölung Abmessungen: Passgenau…
79,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; } } } ?>

K&N Luftfilter passend für Ducati Monster Modelle 620 – 1000
Passend für folgende Ducati Modelle: 2008 Ducati Monster S4Rs Tricolore 998 alle Modelle 2008 Ducati...
79,90€

K&N Luftfilter DU-1007 passend für Ducati Diavel Streetfighter 848 1098 1198
Passend für folgende Modelle: 2018 Ducati Diavel Diesel 1198 alle Modelle 2018 Ducati Diavel Carbon...
89,90€

K&N Luftfilter DU-8015 – Passend für Ducati Scrambler Modelle
Hersteller: K&N Artikelnummer: DU-8015 Produktart: Luftfilter Farbe: Rot/Schwarz (je nach Ausführung) Material: Spezielles Baumwollgewebe mit...
74,90€

K&N Luftfilter DU-6908 – Für Ducati Monster, Hypermotard, Scrambler
Hersteller: K&N Artikelnummer: DU-6908 Produktart: Austausch-Luftfilter Farbe: Rot/Schwarz Material: Spezielles Baumwollgewebe mit Mehrlagenölung Abmessungen: Passgenau...
79,90€



