Vom Fachmann für dein Motorrad
- Hersteller: K&N
- Artikelnummer: DU-0900
- Produktart: Luftfilter
- Farbe: Rot/Schwarz (je nach Ausführung)
- Material: Spezielles Baumwollgewebe mit Mehrschicht-Öl-Imprägnierung
- Bauart: Austausch-Luftfilter, wiederverwendbar und waschbar
- Kompatibilität: Passend für verschiedene Ducati Modelle, insbesondere Monster und SS (je nach Baujahr und Ausführung)
- Verpackungsinhalt: 1 Luftfilter
Der K&N Luftfilter DU-0900 ist ein hochwertiger Austausch-Luftfilter, der speziell für verschiedene Ducati Modelle wie Monster und SS entwickelt wurde. Er dient als direkter Ersatz für den serienmäßigen Luftfilter und sorgt für eine optimierte Luftzufuhr zum Motor.
Vorteile auf einen Blick
Der K&N DU-0900 bietet zahlreiche Vorteile gegenüber herkömmlichen Papierfiltern:
- Langlebiges, mehrfach verwendbares Filterelement
- Optimierte Luftdurchlässigkeit für verbesserte Motorleistung (laut Hersteller)
- Einfache Reinigung und Wartung möglich
- Passgenaue Konstruktion für Ducati Modelle Monster und SS (modellabhängig)
Technische Daten
Zentrale Merkmale des Produkts im Überblick:
- Austauschbarer Hochleistungs-Luftfilter aus Baumwollgewebe mit Öl-Imprägnierung
- Kann mehrfach gereinigt und wiederverwendet werden
- Spezielle Bauform zur optimalen Anpassung an das jeweilige Ducati Modell (modellabhängig)
- Konstruiert zur Verbesserung des Luftstroms gegenüber Standardfiltern (laut Herstellerangabe)
Einsatzbereiche
Der K&N DU-0900 eignet sich besonders für folgende Anwendungsbereiche:
- Ducati Motorräder der Baureihen Monster und SS (modellabhängig)
- Straßenbetrieb sowie gelegentliche sportliche Nutzung auf der Straße oder Rennstrecke (je nach Modellzulassung)
- Anwendende, die Wert auf einfache Wartung und Langlebigkeit legen
Lieferumfang
- 1 x K&N Luftfilter DU-0900 passend für ausgewählte Ducati Modelle Monster/SS
- Anleitung zur Reinigung und Pflege (je nach Verpackungsausführung enthalten)
- Hinweis: Die genaue Passform ist modellabhängig. Bitte vor dem Einbau die Kompatibilität prüfen.
FAQ
Ist der Filter waschbar?
Ja, der K&N DU-0900 kann gereinigt und wiederverwendet werden. Eine spezielle Reinigungsanleitung liegt in der Regel bei oder ist beim Hersteller erhältlich.
Passen alle Ducati Monster/SS Modelle?
Die Kompatibilität hängt vom jeweiligen Baujahr und Modell ab. Es wird empfohlen, die Fahrzeugdaten vorab zu prüfen.
Muss der Filter geölt werden?
Der Filter ist bereits vorgeölt. Nach jeder Reinigung sollte er erneut mit speziellem Filteröl behandelt werden.
Bietet der Filter mehr Leistung?
Laut Hersteller kann durch den verbesserten Luftdurchsatz eine Leistungssteigerung erzielt werden. Die tatsächliche Wirkung ist jedoch modellabhängig.
Muss das Steuergerät angepasst werden?
In den meisten Fällen ist keine Anpassung erforderlich. Bei umfangreichen Modifikationen am Ansaugsystem kann eine Abstimmung sinnvoll sein.
Hinweis: 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; } ?>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 Modelle Scrambler
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-9001 Ducati Monster 620 695 800 1000 S4 S2r S4R
Hersteller: K&N Artikelnummer: DU-0901 Produktart: Luftfilter Farbe: Rot/Schwarz Material: Spezielles Baumwollgewebe mit Mehrschicht-Öl-Imprägnierung Abmessungen: Passgenau…
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; } } } ?>

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 Modelle Scrambler
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-9001 Ducati Monster 620 695 800 1000 S4 S2r S4R
Hersteller: K&N Artikelnummer: DU-0901 Produktart: Luftfilter Farbe: Rot/Schwarz Material: Spezielles Baumwollgewebe mit Mehrschicht-Öl-Imprägnierung Abmessungen: Passgenau...
74,90€







Bewertungen
Es gibt noch keine Bewertungen.