23import ns.point_to_point
35cmd = ns.core.CommandLine()
38cmd.AddValue(
"nCsma",
"Number of \"extra\" CSMA nodes/devices")
39cmd.AddValue(
"verbose",
"Tell echo applications to log if true")
46 ns.core.LogComponentEnable(
"UdpEchoClientApplication", ns.core.LOG_LEVEL_INFO)
47 ns.core.LogComponentEnable(
"UdpEchoServerApplication", ns.core.LOG_LEVEL_INFO)
48nCsma = 1
if int(nCsma) == 0
else int(nCsma)
50p2pNodes = ns.network.NodeContainer()
53csmaNodes = ns.network.NodeContainer()
54csmaNodes.Add(p2pNodes.Get(1))
55csmaNodes.Create(nCsma)
57pointToPoint = ns.point_to_point.PointToPointHelper()
58pointToPoint.SetDeviceAttribute(
"DataRate", ns.core.StringValue(
"5Mbps"))
59pointToPoint.SetChannelAttribute(
"Delay", ns.core.StringValue(
"2ms"))
61p2pDevices = pointToPoint.Install(p2pNodes)
63csma = ns.csma.CsmaHelper()
64csma.SetChannelAttribute(
"DataRate", ns.core.StringValue(
"100Mbps"))
65csma.SetChannelAttribute(
"Delay", ns.core.TimeValue(ns.core.NanoSeconds(6560)))
67csmaDevices = csma.Install(csmaNodes)
69stack = ns.internet.InternetStackHelper()
70stack.Install(p2pNodes.Get(0))
71stack.Install(csmaNodes)
73address = ns.internet.Ipv4AddressHelper()
74address.SetBase(ns.network.Ipv4Address(
"10.1.1.0"), ns.network.Ipv4Mask(
"255.255.255.0"))
75p2pInterfaces = address.Assign(p2pDevices)
77address.SetBase(ns.network.Ipv4Address(
"10.1.2.0"), ns.network.Ipv4Mask(
"255.255.255.0"))
78csmaInterfaces = address.Assign(csmaDevices)
80echoServer = ns.applications.UdpEchoServerHelper(9)
82serverApps = echoServer.Install(csmaNodes.Get(nCsma))
83serverApps.Start(ns.core.Seconds(1.0))
84serverApps.Stop(ns.core.Seconds(10.0))
86echoClient = ns.applications.UdpEchoClientHelper(csmaInterfaces.GetAddress(nCsma), 9)
87echoClient.SetAttribute(
"MaxPackets", ns.core.UintegerValue(1))
88echoClient.SetAttribute(
"Interval", ns.core.TimeValue(ns.core.Seconds (1.0)))
89echoClient.SetAttribute(
"PacketSize", ns.core.UintegerValue(1024))
91clientApps = echoClient.Install(p2pNodes.Get(0))
92clientApps.Start(ns.core.Seconds(2.0))
93clientApps.Stop(ns.core.Seconds(10.0))
95ns.internet.Ipv4GlobalRoutingHelper.PopulateRoutingTables()
97pointToPoint.EnablePcapAll(
"second")
98csma.EnablePcap (
"second", csmaDevices.Get (1),
True)
100ns.core.Simulator.Run()
101ns.core.Simulator.Destroy()