Hello, dear all experts
It seems like the method to utilise IPv4 route helper to print out routing table can be :
// Trace routing tables
Ptr<OutputStreamWrapper> routingStream =
Create<OutputStreamWrapper>("dynamic-global-routing.routes", std::ios::out);
Ipv4RoutingHelper::PrintRoutingTableAllAt(Seconds(10), routingStream);
or
Ipv4RoutingHelper::PrintRoutingTableAllEvery(Seconds(0.5), routingStream);
According to example from the source code, however, I tried to use python bindings to generate the routing table also, but I can not convert them based on my experience:
routingStream =ueNodes.GetObject[ns.core.OutputStreamWrapper]().__deref__()
ipv4RoutingHelper.PrintRoutingTableAllAt(ns.core.Seconds(10), routingStream)
Any instructions or advice would be grateful since routing table is a really good method to identify the transmission flow here.