是否可以在 ns3 中创建 PointToPointDumbbell 但在左侧节点上有不同的应用程序
Is it possible to create PointToPointDumbbell in ns3 but have different applications on the left nodes
是否可以在 ns3 中创建 PointToPointDumbbell 但在左侧节点上有不同的应用程序,例如 OnOffApplication、UdpClientServer 等
是的,这是可能的。
首先使用 PointToPointDumbbellHelper. Next, use the GetLeft(uint32_t) and GetRight(uint32_t) 创建哑铃拓扑,以获得哑铃每一侧的各个节点。
只需使用 Node::InstallApplication(Ptr<Application>) or using OnOffHelper::Install(Ptr<Node>)(或您要安装的任何应用程序的助手)在该节点上安装您想要的应用程序。
是否可以在 ns3 中创建 PointToPointDumbbell 但在左侧节点上有不同的应用程序,例如 OnOffApplication、UdpClientServer 等
是的,这是可能的。
首先使用 PointToPointDumbbellHelper. Next, use the GetLeft(uint32_t) and GetRight(uint32_t) 创建哑铃拓扑,以获得哑铃每一侧的各个节点。
只需使用 Node::InstallApplication(Ptr<Application>) or using OnOffHelper::Install(Ptr<Node>)(或您要安装的任何应用程序的助手)在该节点上安装您想要的应用程序。