Node.js node: error while loading shared libraries: libatomic.so.1: cannot open shared object file: No such file or directory

Was installing Node.js v25.9.0 as a standalone pre-built binary installation and ended up after a successful installation getting the following when attempting to run a “node -v”. To resolve this, I just needed to install the missing library. Then attempting to re-run the command, I get the version output as expected.

BGP Test Lab – Part 20 – Routing Information Base (RIB), BGP Debug Logging and other Things

The Routing Information Base (RIB) is one of the key workings of the BGP protocol on a router. The RIB is not just a routing table, it’s a dynamic repository of all the information that a router has learned from BGP Neighbours, along with a host of associated other attributes, such as the route’s AS … Read more

BGP Test Lab – Part 18 – BGP with Equal Cost Multi-Pathing (ECMP)

Equal Cost Multi-Pathing (ECMP) is a mechanism where rather than finding the single best path and installing that into the route table, you instead install two (or more) equal best paths into the routing table; traffic then uses all of these best paths in a load balanced way using the switch’s hashing algorithm. For Extreme Networks XOS this appears … Read more

BGP Test Lab – Part 17 – BGP with Bidirectional Forwarding Detection (BFD)

In previous articles, we have mentioned the use of BFD – Bidirectional Forwarding Detection. RFC 5880. Essentially BGP failure detection is slow by design and for good reason when you are dealing with truly massive networks. BFD exists to make it fast, but also while being safe too. As was discussed in previous articles BGP … Read more