Quickstart¶
This walkthrough takes you from an empty plugin to a fully modeled fiber cable with splice mappings. It assumes NetBox FMS is already installed (see Installation).
1. Create a Manufacturer¶
If your NetBox instance does not yet have a cable manufacturer defined, create one first:
- Navigate to Devices > Manufacturers.
- Click Add and enter the manufacturer name (e.g., "Corning").
- Save.
2. Define a Fiber Cable Type¶
A FiberCableType is the blueprint that describes how a cable is constructed.
- Navigate to FMS > Fiber Cable Types and click Add.
- Select the manufacturer created above.
- Enter a model name (e.g., "ALTOS 48F Loose Tube").
- Set the fiber type (e.g., SMF OS2) and total strand count (e.g., 48).
- Choose the construction style. For a loose tube cable, add BufferTubeTemplates -- for example, 4 tubes with 12 fibers each.
- Save the cable type.
3. Create Two Devices¶
Fiber cables connect between devices. If you do not already have devices in NetBox:
- Navigate to Devices > Devices and create two devices (e.g., "Panel-A" and "Panel-B").
- Ensure each device has a device type with front ports defined, so that fiber strands can terminate to them.
4. Create a Cable¶
- Navigate to Devices and select one of the devices.
- Under the device's interface or front port listing, click Connect to create a
dcim.Cablebetween the two devices. - Save the cable.
5. Create a Fiber Cable¶
This is where the plugin takes over.
- Navigate to FMS > Fiber Cables and click Add.
- Select the dcim.Cable created in the previous step.
- Select the FiberCableType defined earlier.
- Save.
On save, the plugin automatically instantiates the internal cable structure based on the type's templates:
- BufferTubes are created matching each BufferTubeTemplate.
- FiberStrands are created inside each tube, automatically assigned EIA-598 standard colors.
Navigate to the new FiberCable's detail page to inspect the generated tubes and strands.
6. Create a Splice Project and Plan¶
Splice projects organize the splicing work at a specific location (typically a fiber closure).
- Navigate to FMS > Splice Projects and click Add.
- Give the project a name and associate it with a closure device.
- Save, then navigate to FMS > Splice Plans and click Add.
- Associate the plan with the splice project created above.
- Save.
7. Add Splice Plan Entries¶
Splice plan entries define the fiber-to-fiber mappings inside a closure.
- Open the splice plan and add SplicePlanEntries.
- Each entry maps a fiber strand from one cable to a fiber strand on another cable.
- Repeat for each fiber pair that will be spliced at this location.
Once complete, the splice plan provides a full record of which fibers are connected through the closure.
Next Steps¶
For a deeper explanation of the type/instance pattern, cable construction models, and splice planning concepts, see the Concepts guide.