olympe
Uploaded by
21 SLIDES
364 VUES
210LIKES

Network Simulator 3: A Practical Implementation Guide for Distributed Control Systems

DESCRIPTION

This document presents a comprehensive guide to using Network Simulator 3 (ns-3) for developing and testing distributed control systems. Written in C++ and Python, this project has evolved since mid-2006 and leverages Mercurial for version control and Waf for compilation. The guide highlights key abstractions such as nodes, applications, and topological helpers, and provides detailed code snippets for setting up a simple UDP echo server-client model. Utilize freely available online resources from Bitbucket to enhance your development process.

1 / 21

Download Presentation
Télécharger la présentation

Network Simulator 3: A Practical Implementation Guide for Distributed Control Systems

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Ns(network simulator)-3 2014/5/20 報告者:蘇宏仁

  2. Programming languages: C++, Python • Manage: Mercurial • Compile: Waf • Project started around mid 2006

  3. Mercurial • 分散式控制系統 • 以PYTHON實作-容易擴充 • 有免費的線上資料庫可以使用 • Bitbucket.org

  4. Key Abstractions • Node • Application • Channel • Net Device • Topology Helpers

  5. 標準寫法 • http://www.nsnam.org/developers/contributing-code/coding-style/

  6. First.cc • #include "ns3/core-module.h" • #include "ns3/network-module.h" • #include "ns3/internet-module.h" • #include "ns3/point-to-point-module.h" • #include "ns3/applications-module.h"

  7. using namespace ns3; • NS_LOG_COMPONENT_DEFINE ("FirstScriptExample");

  8. Main Function • Time::SetResolution (Time::NS); • LogComponentEnable("UdpEchoClientApplication", LOG_LEVEL_INFO); • LogComponentEnable("UdpEchoServerApplication", LOG_LEVEL_INFO);

  9. Topology Helpers

  10. NodeContainer • NodeContainer nodes; • nodes.Create (2);

  11. PointToPointHelper • PointToPointHelper pointToPoint; • pointToPoint.SetDeviceAttribute ("DataRate", StringValue ("5Mbps")); • pointToPoint.SetChannelAttribute ("Delay", StringValue ("2ms"));

  12. NetDeviceContainer • NetDeviceContainer devices; • devices = pointToPoint.Install (nodes);

  13. InternetStackHelper • InternetStackHelper stack; • stack.Install (nodes);

  14. Ipv4AddressHelper • Ipv4AddressHelper address; • address.SetBase ("10.1.1.0", "255.255.255.0"); • Ipv4InterfaceContainer interfaces = address.Assign (devices);

  15. Applications

  16. UdpEchoServerHelper • UdpEchoServerHelper echoServer (9); • ApplicationContainer serverApps = echoServer.Install (nodes.Get (1)); • serverApps.Start (Seconds (1.0)); • serverApps.Stop (Seconds (10.0));

  17. UdpEchoClientHelper-1 • UdpEchoClientHelper echoClient (interfaces.GetAddress (1), 9); • echoClient.SetAttribute ("MaxPackets", UintegerValue (1)); • echoClient.SetAttribute ("Interval", TimeValue (Seconds (1.0)));

  18. UdpEchoClientHelper-2 • echoClient.SetAttribute ("PacketSize", UintegerValue (1024)); • ApplicationContainer clientApps = echoClient.Install (nodes.Get (0)); • clientApps.Start (Seconds (2.0)); • clientApps.Stop (Seconds (10.0));

  19. Simulator

  20. Simulator • Simulator::Run (); • Simulator::Destroy (); • return 0;

  21. result • 執行範例之後,會產生.pcap的檔案 • Tcpdump 可觀看.pcap檔案內容 • 代表真實封包的樣子

More Related
SlideServe
Audio
Live Player
Audio Wave
Play slide audio to activate visualizer