X

Iron & Oak 24-Ton Wood Splitter

x Iron & Oak 24-Ton Wood Splitter


The Iron & Oak 24-ton log splitter gives you the ability to split both vertically and horizontally. The 24 tons of pressure can split through most logs — ideal for rental properties and homeowners. This commercial-grade model comes standard with bells and whistles such as a log cradle, log dislodger, fenders, and more.

  • Auto latch system locks beam into the horizontal position for safe towing
  • Enhanced handle to assist with transitioning the unit between horizontal and vertical operating positions
  • The 4-stage hydraulic filtration system prevents damage to the hydraulic system by removing metal particles and other micro-particles that can contaminate and damage the machine - components include a suction strainer, return line filter, breather cap air filter, and magnetic drain plug
  • Offset valve for a better operator position
  • Heavy-duty wedge design with five bolts per side
  • Halite commercial cylinder seals
  • Log dislodger and log cradle standard
  • Larger jack wheel makes it easier to move
  • Tow cables included

    Equipment Type Log Splitter (Tow-behind)

    Country of Origin Made in the USA (with US and imported components)

    Cycle Time 13 Seconds

    Cylinder Size 4 in. x 24 in. Clevis Type, 1.75-in. Rod

    Displacement 163cc

    Dry Weight 675 Lbs

    Engine Gx160

    Engine Brand Honda

    Hitch 2 In.

    Hydraulic Capacity 10.0 Gal. System Total (tank 9 Gal. System Total)

    Log Length 25 in. Max

    Operation Horizontal And Vertical

    Pump Type 11 Gpm Hi-lo 2 Stage

    SKU BHVH2418GX

    Splitting Force (Tons) 24 Tons

    Splitting Height 32 In.

    Tires 4.8 In. X 8.0 In. Highway Rated

    Wedge Heavy-duty, 5 Bolts Per Side

Iron & Oak 24-Ton Wood Splitter
Our Price! $3,779
Blue - Wood Splitter
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: 240024
VIN: VH2418GXJ06240024
Condition: New
Year: 2025
Manufacturer: Iron & Oak
Model: 24-Ton
Length:
Width:
Height:
GVWR (lbs): 0
Weight (lbs): 675
Payload (lbs): 0
Features:

Other Recommendations

// Function to set a cookie on the Message Box function setCookie(name, value, days) { const date = new Date(); date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000)); document.cookie = `${name}=${value}; expires=${date.toUTCString()}; path=/`; } // Function to get a cookie function getCookie(name) { const cookies = document.cookie.split('; '); for (let cookie of cookies) { const [key, value] = cookie.split('='); if (key === name) return value; } return null; } // Check if the cookie exists and hide the message box if it does document.addEventListener('DOMContentLoaded', () => { const messageBox = document.querySelector('.message-box'); const closeButton = document.querySelector('.mb-close'); if (getCookie('hideMessageBox')) { messageBox.style.display = 'none'; } // Set a cookie when the close button is clicked and hide the message box closeButton.addEventListener('click', () => { setCookie('hideMessageBox', 'true', 7); // Cookie expires in 7 days messageBox.style.display = 'none'; }); });