[Media] [Architecture feedback needed] Designing a trait for a protocol-agnostic network visualization app
reddit.com·10h·
Discuss: r/rust
Flag this post

Hi Rustaceans,

I’m writing my engineering thesis in Rust — it’s a network visualizer that retrieves data from routers via protocols like SNMP, NETCONF, and RESTCONF, and uses routing protocol data (like the OSPF LSDB) to reconstruct and visualize the network topology.

I want the app to be extensible, so adding another data acquisition client or routing protocol parser would be easy.

Here’s a high-level overview of the architecture (see image):

Data Acquisition — handles how data is retrieved (SNMP, NETCONF, RESTCONF) and returns RawRouterData. Routing Protocol Parsers — convert raw data into protocol-specific structures (e.g., OSPF LSAs), then into a protocol-agnostic NetworkGraph. Network Graph — defines NetworkGraph, Node, and Edge structures. **G…

Similar Posts

Loading similar posts...