Vom Fachmann für dein Motorrad
- Hersteller: Brembo
- Artikelnummer: 20279960
- Produktart: Bremssattel Reparatursatz
- Passend für: Brembo P4 32 D / P 32 G Bremssättel
- Inklusive Kolben
- Einsatzbereich: Motorrad-Bremssysteme (je nach Ausführung vorn oder hinten)
- Verpackungsinhalt: Reparaturkomponenten für einen Bremssattel
Der Brembo Bremssattel Reparatursatz P4 32 D / P 32 G mit Kolben ist ein speziell zusammengestelltes Set zur Instandsetzung und Wartung von Brembo-Bremssätteln der genannten Baureihen. Entwickelt für den Austausch verschlissener oder beschädigter Komponenten, sorgt das Set für eine zuverlässige Funktion des hydraulischen Bremssystems.
Vorteile auf einen Blick
Mit diesem Reparatursatz lassen sich Wartungsarbeiten am Bremssattel effizient und fachgerecht durchführen.
- Passgenaue Komponenten für die genannten Brembo-Modelle
- Erhöht die Betriebssicherheit des Bremssystems
- Längere Lebensdauer durch Austausch aller relevanten Verschleißteile
- Kosteneffiziente Alternative zum Kompletttausch des Sattels
Technische Daten
- Kolbendurchmesser: 32 mm (je nach Ausführung)
- Geeignet für 4-Kolben-Bremssättel der Typen P4 32 D und P 32 G
- Dichtungen und Kolben aus hochwertigen Materialien gefertigt
- Anwendung im hydraulischen Scheibenbremssystem von Motorrädern
- Bauform und Lieferumfang können je nach Modelljahr variieren (laut Herstellerangabe)
Einsatzbereiche
Der Reparatursatz eignet sich für die Wartung und Instandsetzung von Motorradbremssätteln im Straßen- und gelegentlichen Sporteinsatz. Zielgruppen sind Motorradwerkstätten, Fachbetriebe sowie technisch versierte Privatpersonen, die Wert auf Sicherheit und Zuverlässigkeit legen.
Lieferumfang
- Bremssattelkolben (Anzahl je nach Ausführung)
- Dichtungssätze (Staub- und Dichtringe)
- Kleinteile zur Montage (z. B. Führungsringe, falls erforderlich)
- Anleitung oder Hinweise zur Montage können beiliegen (modellabhängig)
- Ausstattung kann je nach Ausführung abweichen – bitte auf Kompatibilität achten.
FAQ
Für welche Modelle ist der Reparatursatz geeignet?
Der Satz ist passend für viele Motorräder mit verbauten Brembo P4 32 D oder P 32 G Sätteln. Die genaue Kompatibilität sollte anhand der Fahrgestellnummer oder Teilenummer geprüft werden.
Sind alle benötigten Dichtungen enthalten?
Ja, der Satz enthält in der Regel alle relevanten Dichtungen sowie die passenden Kolben. Der Lieferumfang kann jedoch je nach Ausführung variieren.
Muss der Einbau durch Fachpersonal erfolgen?
Es wird empfohlen, den Einbau durch qualifizierte Fachkräfte durchführen zu lassen, um die Sicherheit des Bremssystems zu gewährleisten.
Können einzelne Komponenten auch separat bestellt werden?
Die Verfügbarkeit einzelner Ersatzteile hängt vom jeweiligen Modell ab. Informationen hierzu bietet in der Regel der Hersteller.
Muss das System nach dem Einbau entlüftet werden?
Nach dem Austausch von Komponenten am Bremssattel ist eine Entlüftung des Hydrauliksystems zwingend erforderlich.
Alle Angaben ohne Gewähr.
Via Brembo 14
24035 Curno
Italien
acquisti@brembo.it
Via Stezzano 87
24126 Bergamo
Italien
acquisti@brembo.it
https://www.brembo.com/en/company/contacts
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; } ?>Bremskolben Reparatur-Satz für Brembo P2 09 / 48mm
Moto Guzzi 1000 California 2 (948 ccm, 1982 - 1987) Moto Guzzi 1000 SP 1…
42,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; } ?>Dichtsatz Brembo Bremssattel P4 32 Ducati Monster 696 796 1100 Hypermotard 796 1100 848 Multistrada 1200
Ducati Monster 696 796 1100 / 1100 EVO Ducati Hypermotard 796 1100 / 1100 EVO…
49,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; } ?>Bremsleitung hinten Ducati Monster S2R 800 1000 S4R S4RS
Hersteller: Ducati Artikelnummer: 61940351A Produktart: Bremsleitung hinten Farbe: Schwarz (je nach Ausführung) Material: Hochwertiges Hydraulikschlauchmaterial…
63,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; } ?>Ducati Sicherungsblech Bremssattel P4 Radial M50 1098 Monster Panigale Multistrada etc
Hersteller: Ducati Artikelnummer: 61240371A Produktart: Sicherungsblech für Bremssattel Passend für: Radialbremssättel P4, M50 Typische Modelle:…
20,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; } } } ?>

Bremskolben Reparatur-Satz für Brembo P2 09 / 48mm
Moto Guzzi 1000 California 2 (948 ccm, 1982 - 1987) Moto Guzzi 1000 SP 1...
42,90€

Dichtsatz Brembo Bremssattel P4 32 Ducati Monster 696 796 1100 Hypermotard 796 1100 848 Multistrada 1200
Ducati Monster 696 796 1100 / 1100 EVO Ducati Hypermotard 796 1100 / 1100 EVO...
49,00€

Bremsleitung hinten Ducati Monster S2R 800 1000 S4R S4RS
Hersteller: Ducati Artikelnummer: 61940351A Produktart: Bremsleitung hinten Farbe: Schwarz (je nach Ausführung) Material: Hochwertiges Hydraulikschlauchmaterial...
63,90€

Ducati Sicherungsblech Bremssattel P4 Radial M50 1098 Monster Panigale Multistrada etc
Hersteller: Ducati Artikelnummer: 61240371A Produktart: Sicherungsblech für Bremssattel Passend für: Radialbremssättel P4, M50 Typische Modelle:...
20,90€




Bewertungen
Es gibt noch keine Bewertungen.