You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
** A web-based tool to generate formatted multipath.conf stanzas from multipath -ll output.**
This project helps Linux system administrators working with SAN storage and multipath setups to easily extract and format WWID and alias information.
📦 Features
Paste multipath -ll output
Auto-extract WWID, alias, and size
Format as valid multipath.conf entries
Fully client-side — no data leaves your browser
Getting Started
1. Clone the repository
git clone https://github.com/safesploitOrg/multipath-config-generator.git
cd multipath-config-generator
chronme index.html
Example /etc/multipath.conf
This file defines how Linux handles multipath devices. It includes:
multipaths: Specific multipath maps (aliases to WWIDs)
devices: Rules for matching SAN hardware
defaults: System-wide fallback settings
Multipaths
multipaths {
multipath {
alias mpatha
wwid 360060160e7d0490097a8ea67adc99518
}
}
Use alias or mpathX naming. Set to no to prefer WWIDs or aliases.
find_multipaths
If yes, only create device if multiple paths are detected.
polling_interval
Time in seconds between path checks.
selector
Path selection algorithm. service-time is commonly used.
path_checker
Path health checker. tur (Test Unit Ready) is suitable for ALUA.
rr_min_io
Number of I/O requests before switching paths in round-robin mode.
failback
When a better path returns, fail back to it (immediate, manual).
no_path_retry
Retry count or mode (fail, queue, N times) on path failure.
max_fds
Max number of file descriptors multipathd can open.
mode
Permissions on multipath devices (e.g., 0644).
uid
Owner user ID for device files. Usually 0 (root).
gid
Owner group ID for device files. Usually 0 (root).
About
A lightweight web-based tool to generate multipath.conf aliases from multipath -ll output. Parses WWID, alias, and size to produce formatted multipathd stanzas for SAN storage setups.