FREE NATIONWIDE DELIVERY ON ORDERS OVER R10,000 | CODE: RAUBEX FENCING2026
Home / Shop / Razor Wire Mesh / Posts for Razor Wire Mesh
Posts for Razor Wire Mesh

Razor Wire Mesh

Posts for Razor Wire Mesh

In Stock
From R150.00 each

VAT included

Brand
Raubex Fencing
SKU
posts-for-razor-wire-mesh

Delivery & installation quoted separately.

In stock Delivery by 18 Jun 2026
34 people are viewing this right now

Specifications

Brand
Raubex Fencing
Condition
New
Category
Razor Wire Mesh

Need Help?

Mon to Fri 08:00 – 17:00

Details

Product Details

To estimate the number of Razor Mesh sheets or rolls required for your project, please enter your perimeter length or total area below.Select Measurement MethodI know my…Perimeter (m) → Razor Mesh Sheet – 6mPerimeter (m) → Razor Mesh – 29.85m rollArea (m²) → Razor Mesh – 29.85m rollArea (hectares) → Razor Mesh – 29.85m rollPerimeter, mRazor Wire MeshAperture Size 300mm x 150mm| Standard DensitySelectStandard razor mesh (300mm x 150mm) 6m L x 1.2m HStandard razor mesh (300mm x 150mm) 6m L x 1.8m HStandard razor mesh (300mm x 150mm) 6m L x 2.1m HStandard razor mesh (300mm x 150mm) 6m L x 2.4m HQuantityAperture Size 150mm x 75mm| High DensitySelectStandard razor mesh (150mm x 75mm) 6m L x 1.2m HStandard razor mesh (150mm x 75mm) 6m L x 1.8m HStandard razor mesh (150mm x 75mm) 6m L x 2.1m HStandard razor mesh (150mm x 75mm) 6m L x 2.4m HQuantityRound Posts & StaysMain Round PostsSelect— Height 2.4m —Main Posts diam.101mm 2.0mm x 2.4m HMain Posts diam.76mm 1.6mm x 2.4m HMain Posts diam.50.8mm 1.6mm x 2.4m H— Height 2.7m —Main Posts diam.101mm 2.0mm x 2.7m HMain Posts diam.76mm 1.6mm x 2.7m HMain Posts diam.50.8mm 1.6mm x 2.7m H— Height 3.0m —Main Posts diam.101mm 2.0mm x 3.0m HMain Posts diam.76mm 1.6mm x 3.0m HMain Posts diam.50.8mm 1.6mm x 3.0m HQuantityIntermediate PostsSelect— Height 2.4m —Intermedia Posts diam.48mm 1.6mm x 2.4m HIntermedia Posts diam.38mm 1.6mm x 2.4m H— Height 2.7m —Intermedia Posts diam.48mm 1.6mm x 2.7m HIntermedia Posts diam.38mm 1.6mm x 2.7m H— Height 3.0m —Intermedia Posts diam.48mm 1.6mm x 3.0m HIntermedia Posts diam.38mm 1.6mm x 3.0m HQuantityOrder Summary••••Order Weight Summary:••••Please give VALID email to receive the quote.Email Address *SUBMIT ORDERRESET FORM(function ($) {“use strict”;// =====================================================// FORMAT HELPERS// =====================================================const fmtZAR = (n) =>‘R ‘ + Number(n).toFixed(2).replace(/\B(?=(\d{3})+(?!\d))/g, ‘,’);const fmtKG = (n) =>Number(n).toFixed(2).replace(/\B(?=(\d{3})+(?!\d))/g, ‘,’) + ‘ kg’;const formatNumber = (n) =>Number(n).toFixed(2).replace(/\B(?=(\d{3})+(?!\d))/g, ‘,’);// =====================================================// PRODUCT CONFIGS// =====================================================const allProductConfigs = [{id: 1,select: ‘#optionGroup1RazorMesh’,qtyInput: ‘#optionGroupPerimeterQty1RazorMesh’,sidebarItem: ‘#optionGroup1SumTotal’,sidebarWeightItem: ‘#optionGroup1SumWeight’,titleField: ‘#option1Title’,priceField: ‘#option1Price’,weightField: ‘#option1Weight’},{id: 2,select: ‘#optionGroup2RazorMesh’,qtyInput: ‘#optionGroupPerimeterQty2RazorMesh’,sidebarItem: ‘#optionGroup2SumTotal’,sidebarWeightItem: ‘#optionGroup2SumWeight’,titleField: ‘#option2Title’,priceField: ‘#option2Price’,weightField: ‘#option2Weight’},{id: 3,select: ‘#optionGroup3RazorMesh’,qtyInput: ‘#optionGroupPerimeterQty3RazorMesh’,sidebarItem: ‘#optionGroup3SumTotal’,sidebarWeightItem: ‘#optionGroup3SumWeight’,titleField: ‘#option3Title’,priceField: ‘#option3Price’,weightField: ‘#option3Weight’},{id: 4,select: ‘#optionGroup4RazorMesh’,qtyInput: ‘#optionGroupPerimeterQty4RazorMesh’,sidebarItem: ‘#optionGroup4SumTotal’,sidebarWeightItem: ‘#optionGroup4SumWeight’,titleField: ‘#option4Title’,priceField: ‘#option4Price’,weightField: ‘#option4Weight’}];// =====================================================// PRODUCT CALCULATOR CLASS// =====================================================class ProductCalculator {constructor(config) {this.config = config;this.$select = $(config.select);this.$qtyInput = config.qtyInput ? $(config.qtyInput) : $();this.$sidebarItem = config.sidebarItem ? $(config.sidebarItem) : $();this.$sidebarWeightItem = config.sidebarWeightItem ? $(config.sidebarWeightItem) : $();this.init();}init() {this.$select.on(‘change’, () => this.update());if (this.$qtyInput.length) {this.$qtyInput.on(‘input keyup change’, () => this.update());}}update() {const $selected = this.$select.find(‘option:selected’);const price = parseFloat($selected.val()) || 0;const weight = parseFloat($selected.data(‘weight’)) || 0;const qty = parseFloat(this.$qtyInput.val()) || 0;let title = $selected.text().trim() || ”;title = title.replace(/\s*[⇒→].*$/, ”).trim();const totalCost = price * qty;const totalWeight = weight * qty;const resetLink = ` * Reset `;const sidebarHTML = (price > 0 && qty > 0)? `${resetLink}${title} × ${fmtZAR(price)} × ${qty} qty = ${fmtZAR(totalCost)} `: ”;const sidebarWeightHTML = (weight > 0 && qty > 0)? `${resetLink}${title} × ${qty} qty = ${fmtKG(totalWeight)} `: ”;if (this.$sidebarItem.length) this.$sidebarItem.html(sidebarHTML);if (this.$sidebarWeightItem.length) this.$sidebarWeightItem.html(sidebarWeightHTML);$(this.config.titleField).val(title || ‘Select’);$(this.config.priceField).val(totalCost.toFixed(2));$(this.config.weightField).val(totalWeight.toFixed(2));updateGrandTotal();}reset() {this.$select.val(0);if (typeof $.fn.niceSelect === ‘function’) {this.$select.niceSelect(‘update’);}if (this.$qtyInput.length) this.$qtyInput.val(”);if (this.$sidebarItem.length) this.$sidebarItem.html(”);if (this.$sidebarWeightItem.length) this.$sidebarWeightItem.html(”);$(this.config.titleField).val(‘Select’);$(this.config.priceField).val(0);$(this.config.weightField).val(0);updateGrandTotal();}}// =====================================================// GRAND TOTAL// =====================================================window.updateGrandTotal = function () {let totalPrice = 0;let totalWeight = 0;allProductConfigs.forEach(config => {totalPrice += parseFloat($(config.priceField).val()) || 0;totalWeight += parseFloat($(config.weightField).val()) || 0;});const totalVat = totalPrice * 0.15;const totalInclVat = totalPrice + totalVat;$(‘#totalExclVat’).val(fmtZAR(totalPrice));$(‘#totalVat’).val(fmtZAR(totalVat));$(‘#totalInclVat’).val(fmtZAR(totalInclVat));$(‘#totalWeight’).val(fmtKG(totalWeight));};// =====================================================// RAZOR MESH PERIMETER CALCULATOR// =====================================================function initPerimeterCalculator() {const $method = $(‘#optionPerimeterListRazorMesh’);const $qty = $(‘#optionGroupPerimeterQtyRazorMesh’);const $suffix = $(‘#unitSuffixRazorMesh’);const $label = $(‘#qtyLabelRazorMesh’);const $result = $(‘#optionGroupPerimeterQtySumRazorMesh’);const unitLabels = {meters: { label: ‘Perimeter’, suffix: ‘m’ },sqm: { label: ‘Area’, suffix: ‘m²’ },hectares: { label: ‘Area’, suffix: ‘ha’ }};function calculate() {const $selected = $method.find(‘option:selected’);const rollLength = parseFloat($selected.data(‘roll-length’)) || 30;const unit = $selected.data(‘unit’) || ‘meters’;const value = parseFloat($qty.val()) || 0;const ui = unitLabels[unit] || unitLabels.meters;$label.text(ui.label);$suffix.text(ui.suffix);if (!value || !rollLength) {$result.html(”).hide();return;}let html = `Result: `;let totalSheets = 0;let p = value;if (unit === ‘sqm’) p = Math.sqrt(value) * 4;else if (unit === ‘hectares’) p = Math.sqrt(value * 10000) * 4;if (unit === ‘meters’) {if (rollLength ${value} m ÷ ${rollLength}m sheet = ${sh.toFixed(2)} sheets ` +` You need approximately ${totalSheets} sheets `;} else {const ro = value / rollLength;const sh = ro * 5;totalSheets = Math.ceil(sh);html += `Perimeter ${value} m ÷ ${rollLength}m = ${ro.toFixed(2)} rolls × 5 sheets = ${sh.toFixed(2)} sheets → ${totalSheets} sheets `;}} else {const ro = p / rollLength;const sh = ro * 5;totalSheets = Math.ceil(sh);const areaStr = (unit === ‘hectares’)? `Area ${value} ha → ${(value * 10000).toLocaleString()} m² → `: `Area ${value} m² → `;html += areaStr + `Perimeter ${p.toFixed(1)} m ÷ ${rollLength}m = ${ro.toFixed(2)} rolls × 5 = ${sh.toFixed(2)} sheets → ${totalSheets} sheets `;}// Support Requirementshtml += ` Support Requirements: ` +`Perimeter ${formatNumber(p)} m ÷ 30m = ${Math.ceil(p / 30)} Main Posts ` +`Perimeter ${formatNumber(p)} m ÷ 3m = ${Math.ceil(p / 3)} Intermediate Posts ` +`Perimeter ${formatNumber(p)} m ÷ 15m = ${Math.ceil(p / 15)} Support Stays`;html += ``;$result.html(html).show();}$method.on(‘change’, calculate);$qty.on(‘input keyup change’, calculate);window.resetPerimeterCalculator = function () {$method.val(0);$qty.val(”);$label.text(‘Perimeter’);$suffix.text(‘m’);$result.html(”).hide();};}// =====================================================// FORMAT DROPDOWN OPTIONS (Single clean version)// =====================================================function formatPriceOptions() {$(‘.price-list option’).each(function () {const $opt = $(this);const price = parseFloat($opt.data(‘price’) || $opt.val());if (price > 0) {let text = $opt.text().replace(/\s*[⇒→].*$/, ”).trim();$opt.text(`${text} ⇒ ${fmtZAR(price)}`);}});}function initAccordion() {$(‘.faq-accordion .card-header a[data-toggle=”collapse”]’).on(‘click’, function (e) {e.preventDefault();const $link = $(this);const $target = $($link.attr(‘href’));const $accordion = $link.closest(‘.faq-accordion’);const $icon = $link.find(‘.indicator’);if ($target.hasClass(‘show’)) {$target.slideUp(350, () => $target.removeClass(‘show’));$icon.removeClass(‘icon-minus’).addClass(‘icon-plus’);} else {$accordion.find(‘.collapse.show’).slideUp(350, function () {$(this).removeClass(‘show’);$(this).prev(‘.card-header’).find(‘.indicator’).removeClass(‘icon-minus’).addClass(‘icon-plus’);});$target.slideDown(350, () => $target.addClass(‘show’));$icon.removeClass(‘icon-plus’).addClass(‘icon-minus’);}});// Ensure both are open on load$(‘#subTopic1, #subTopic2’).addClass(‘show’).css(‘display’, ‘block’);}// =====================================================// DOCUMENT READY// =====================================================$(document).ready(function () {$(‘#totalTitle’).val(‘Total Excl. VAT’);$(‘#totalTitleVat’).val(‘VAT (15%)’);$(‘#totalTitleInclVat’).val(‘Total Incl. VAT’);$(‘#totalTitleWeight’).val(‘Total Weight’);$(‘#totalInclVatCheckbox’).prop(‘checked’, true);// Initialize calculatorsconst allCalculators = allProductConfigs.map(config => new ProductCalculator(config));formatPriceOptions();if (typeof $.fn.niceSelect !== ‘undefined’) {$(‘.price-list’).niceSelect();}setTimeout(formatPriceOptions, 300);initPerimeterCalculator();initAccordion();// Reset single item$(document).on(‘click’, ‘a.reset’, function (e) {e.preventDefault();const id = parseInt($(this).attr(‘id’).replace(‘reset’, ”));const calc = allCalculators.find(c => c.config.id === id);if (calc) calc.reset();});// Reset entire form$(‘#resetBtn’).on(‘click’, function () {if (confirm(‘Reset the entire form?’)) {allCalculators.forEach(calc => calc.reset());$(‘#orderSumList li, #orderSumWeightList li’).html(”);if (typeof window.resetPerimeterCalculator === ‘function’) {window.resetPerimeterCalculator();}updateGrandTotal();}});// Initial calculationupdateGrandTotal();});})(jQuery); Round Posts for Razor Wire Mesh · Direct from Manufacturer SAEnsure your razor wire mesh or any other fencing material is securely supported with our high-quality hot-dip galvanized round posts, the essential foundation for any high-security fencing system. These posts are designed to withstand tough conditions, offering the structural integrity necessary for razor wire mesh as well as other fencing types, making them ideal for securing industrial, commercial, and residential properties.Crafted from high-strength steel, our round posts are hot-dip galvanized for superior resistance against corrosion. Whether you’re installing razor wire mesh, chain-link, or roll mesh fencing, these posts provide the necessary support for a long-lasting perimeter solution.Multiple Applications: From residential to industrial, these round posts provide reliable support across various fencing materials.Available Sizes:• 1.8m Round Post (Standard): Perfect for medium-security applications, providing strong support for razor wire mesh or other fencing materials.• 2.1m Round Post (Heavy-duty): Enhanced stability for high-security perimeters or tall fencing structures.• 2.4m Round Post (Extra heavy-duty): Designed for ultra-high security locations, perfect for extra height and strength needsStay Posts for Razor Wire MeshProduct Features:• Versatile Support: Suitable for razor wire mesh, chain-link fencing, roll mesh, or any high-security fence.• Corrosion Resistant: Hot-dip galvanized to withstand rust and harsh weather, ideal for South Africa’s climate.• Robust Structural Integrity: High-quality steel construction prevents sagging, ensuring lasting durability.• Easy Installation: Pre-drilled holes and a smooth round design make installation simple for both new and existing fences.• Available in 2.4m, 2.7m and 3.0m heights• Hot-dip galvanized for maximum corrosion resistance• Ideal for industrial, commercial and residential projectsRAZOR WIRE MESH POST SOLUTIONSpdf | 422.0 KbRELATED PRODUCTS•Posts for Razor Wire MeshFrom: R 150,00Select options This product has multiple variants. The options may be chosen on the product pageDetails•Concertina Razor Wire Coils · Direct from Manufacturer SAFrom: R 362,25Select options This product has multiple variants. The options may be chosen on the product pageDetails•Electrified Concertina Razor Wire · Direct from Manufacturer SAFrom: R 887,80Select options This product has multiple variants. The options may be chosen on the product pageDetails•Razor Wire Flat Wrap · Direct from Manufacturer SAFrom: R 455,40Select options This product has multiple variants. The options may be chosen on the product pageDetailsWIRE VENTURES HEAD OFFICE• +27 (0) 11 437 8903• +27 (0) 11 437 8915• Giuliano: +27 (0) 82 659 0301• mail: info@fencing-supplier.com• Fabian: +27 (0) 82 542 3670• mail: fabian@fencing-supplier.comINTERNATIONAL SALES• mobile: +1 (954) 7565216• mail: export@fencing-supplier.comAddress: 10 Burnley street, Benoni South Extn., Benoni South, Gauteng,1501 .Get Google Map DirectionsFacebookPinterestX Linkedin TikTokREQUEST A QUOTEYour name*Email Address*Contact NumberSelect Aperture of Razor Mesh:Standard Density 150mm x 300mm High Density 75mm x 150mmSelect Post Height2.4m 2.7m 3.0m requiredTo assist you with the quotation, please, specify the qty of sheets (5m L) // qty of rolls (30m L) or linear perimeter.Your message×

Someone enquired about

Verified