Replies: 3 comments 9 replies
-
Export to CSV for OSP: Location,Label A,Buffer Color,Strand Color,Splice Identifier,Status,Strand Color,Buffer Color,Label B
{% for cable in queryset %}{% if cable.a_terminations[0].device == cable.b_terminations[0].device %}{{cable.a_terminations[0].device}},{{cable.a_terminations[0].rear_port.cable}},{{cable.a_terminations[0].rear_port.cable.color}},{{cable.a_terminations[0].color}},{{cable}},{% if cable.status=="connected" %}Splice{% else %}{% endif %},{{cable.b_terminations[0].color}},{{cable.b_terminations[0].rear_port.cable.color}},{{cable.b_terminations[0].rear_port.cable}}
{% endif %}{% endfor %} Fiber "splice" script: https://gist.github.com/DanSheps/a72b1e9f40dd9d92e48d05bdc3e6d44f |
Beta Was this translation helpful? Give feedback.
-
In case it's useful, there's also a generic script which connects one-to-one between a port range on two devices here: |
Beta Was this translation helpful? Give feedback.
-
Hi @DanSheps interesting approach, it's good to see others also trying to use Netbox for OSP (Outside Plant) management. IMHO, Netbox really revolutionized inside cable management, unfortunately there's nothing similar for outside plant. I understand that Netbox has been designed mainly for in-building use, but it would be amazing to have a OSP module in Netbox, @jeremystretch, I don't see it as a FTTH-focused solution, in mainly focused on point to point and xWDM ptmp fiber links. That Netbox module could handle ODF as cable termination points in the DC, Splice boxes, outdoor cables, MUXes). And if all that information is connected it would really simplify troubleshooting of fiber links, since you would be able to trace a fiber strain from the device in one DC to another device in a different DC or building Best regards, Salvador |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hey all,
I just wanted to share my experiences modelling our OSP in hopes of helping someone else.
First, we use FOSC 400D5, Panduit FC29N-24-10U, and a mix of loose fiber and ribbon (with MPO-12 on one end).
This will mainly focus on the FOSC models.
i started with a FOSC device type, with 5 module bays. Then I created a module type (FOSC-ACC-D-TRAY-36) with 2 rear port and 72 front ports. Both a A and a B side.
I quickly realized 1 rear port would not work and adjusted to 6 rear ports, 12 positions each. As there are sometimes split 12 counts between various trays.
After a little more trial and error, I broke out the A and B sides to separate modules (using a position of "T#-A"). This proved to work in most instances however there were still some corner cases. After trying a few more iterations, I finally settled on 2 module types with 1 module per tray splice group (12 fibers).
An additional type of "FOSC-ACC-D-TRAY-36 12x12" could be added.
For the device type, the module bay creation string I used is:
T[1-6]-SG[1-3]-[A-B]
This would generate 36 module bays, 18 for both the A and B side. I would slot a tray in each bay. This proved to allow the most flexible deployment.
You basically splice all front-ports 1:1 as the "fusion splice" and then your rear ports are your cables.
All of this is to say that while this works for me, it might not work for everyone but I figured it might save a bunch of time for someone who might have a similar situation.
I have a script to connect all front ports on each device which I will upload tomorrow.
I would love to see what everyone else does.
Beta Was this translation helpful? Give feedback.
All reactions