Dynamic Topology Mapping - ISIS only
Is there a way to create a dynamic map depicting only the IGP ? By default, it appears LM wants to create a map with both the BGP adjacencies and the IGP adjacencies shown. Basically I want to keep LM from utilizing the discovered BGP adjacencies to draw the map. Is there a way to do this?
- Anonymous8 months ago
For the "nothing happening" bit, I'd reach out to support.
For the fact that they're all defined as "ROUTING" type, I ask, "what has LM done for topology in the last 5 years except update the icons?"
So, the topology sources are distinct, so there's no reason that the edges shouldn't be distinct. Looking at the BGP TS, it looks like it should be registering three edges, one Routing, one Endpoint, and one BGP Peer. If the TS isn't doing that, LM might be willing to help you figure out why. The code relies on snippets, so it's not easily decipherable what they're doing with it:
def bgpPeerEri = "bgp--" + peerASN + "--" + bgpPeer.peerId lmtopo.registerEdge("Routing", routerEri, bgpPeerEri, edges) def bgpEndpointEri = "endpoint:bgp--${bgpAsn}--${bgpId}--${bgpPeer.peerId}" lmtopo.registerEdge("Endpoint", routerEri, bgpEndpointEri, edges) def bgpPeerEndpointEri = "endpoint:bgp--${peerASN}--${bgpPeer.peerId}--${bgpId}" lmtopo.registerEdge("BGP Peer", bgpEndpointEri, bgpPeerEndpointEri, edges)