2023-11-19 19:47:44 -03:00
|
|
|
#
|
2024-06-17 16:17:10 +02:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
2023-11-19 19:47:44 -03:00
|
|
|
#
|
|
|
|
|
# Ported to Python by Mohit P. Tahiliani
|
|
|
|
|
#
|
2015-06-24 19:40:03 -07:00
|
|
|
|
2023-11-03 01:28:26 +00:00
|
|
|
try:
|
|
|
|
|
from ns import ns
|
|
|
|
|
except ModuleNotFoundError:
|
|
|
|
|
raise SystemExit(
|
|
|
|
|
"Error: ns3 Python module not found;"
|
|
|
|
|
" Python bindings may not be enabled"
|
|
|
|
|
" or your PYTHONPATH might not be properly configured"
|
|
|
|
|
)
|
2015-06-24 19:40:03 -07:00
|
|
|
import sys
|
2023-11-19 20:07:19 -03:00
|
|
|
from ctypes import c_bool, c_int
|
2015-06-24 19:40:03 -07:00
|
|
|
|
|
|
|
|
# // Default Network Topology
|
|
|
|
|
# //
|
|
|
|
|
# // 10.1.1.0
|
|
|
|
|
# // n0 -------------- n1 n2 n3 n4
|
|
|
|
|
# // point-to-point | | | |
|
|
|
|
|
# // ================
|
|
|
|
|
# // LAN 10.1.2.0
|
2022-10-14 22:13:55 -03:00
|
|
|
|
2023-11-19 20:07:19 -03:00
|
|
|
|
2022-06-06 06:44:42 -07:00
|
|
|
nCsma = c_int(3)
|
|
|
|
|
verbose = c_bool(True)
|
2022-10-14 22:13:55 -03:00
|
|
|
cmd = ns.CommandLine(__file__)
|
|
|
|
|
cmd.AddValue("nCsma", "Number of extra CSMA nodes/devices", nCsma)
|
|
|
|
|
cmd.AddValue("verbose", "Tell echo applications to log if true", verbose)
|
2015-06-24 19:40:03 -07:00
|
|
|
cmd.Parse(sys.argv)
|
|
|
|
|
|
2022-10-14 22:13:55 -03:00
|
|
|
if verbose.value:
|
2024-05-15 00:01:33 -03:00
|
|
|
ns.LogComponentEnable("UdpEchoClientApplication", ns.LOG_LEVEL_INFO)
|
|
|
|
|
ns.LogComponentEnable("UdpEchoServerApplication", ns.LOG_LEVEL_INFO)
|
2022-10-14 22:13:55 -03:00
|
|
|
nCsma.value = 1 if nCsma.value == 0 else nCsma.value
|
2015-06-24 19:40:03 -07:00
|
|
|
|
2024-05-15 00:01:33 -03:00
|
|
|
p2pNodes = ns.NodeContainer()
|
2015-06-24 19:40:03 -07:00
|
|
|
p2pNodes.Create(2)
|
|
|
|
|
|
2024-05-15 00:01:33 -03:00
|
|
|
csmaNodes = ns.NodeContainer()
|
2015-06-24 19:40:03 -07:00
|
|
|
csmaNodes.Add(p2pNodes.Get(1))
|
2022-10-14 22:13:55 -03:00
|
|
|
csmaNodes.Create(nCsma.value)
|
2015-06-24 19:40:03 -07:00
|
|
|
|
2024-05-15 00:01:33 -03:00
|
|
|
pointToPoint = ns.PointToPointHelper()
|
|
|
|
|
pointToPoint.SetDeviceAttribute("DataRate", ns.StringValue("5Mbps"))
|
|
|
|
|
pointToPoint.SetChannelAttribute("Delay", ns.StringValue("2ms"))
|
2015-06-24 19:40:03 -07:00
|
|
|
|
|
|
|
|
p2pDevices = pointToPoint.Install(p2pNodes)
|
|
|
|
|
|
2024-05-15 00:01:33 -03:00
|
|
|
csma = ns.CsmaHelper()
|
|
|
|
|
csma.SetChannelAttribute("DataRate", ns.StringValue("100Mbps"))
|
|
|
|
|
csma.SetChannelAttribute("Delay", ns.TimeValue(ns.NanoSeconds(6560)))
|
2015-06-24 19:40:03 -07:00
|
|
|
|
|
|
|
|
csmaDevices = csma.Install(csmaNodes)
|
|
|
|
|
|
2024-05-15 00:01:33 -03:00
|
|
|
stack = ns.InternetStackHelper()
|
2015-06-24 19:40:03 -07:00
|
|
|
stack.Install(p2pNodes.Get(0))
|
|
|
|
|
stack.Install(csmaNodes)
|
|
|
|
|
|
2024-05-15 00:01:33 -03:00
|
|
|
address = ns.Ipv4AddressHelper()
|
|
|
|
|
address.SetBase(ns.Ipv4Address("10.1.1.0"), ns.Ipv4Mask("255.255.255.0"))
|
2015-06-24 19:40:03 -07:00
|
|
|
p2pInterfaces = address.Assign(p2pDevices)
|
|
|
|
|
|
2024-05-15 00:01:33 -03:00
|
|
|
address.SetBase(ns.Ipv4Address("10.1.2.0"), ns.Ipv4Mask("255.255.255.0"))
|
2015-06-24 19:40:03 -07:00
|
|
|
csmaInterfaces = address.Assign(csmaDevices)
|
|
|
|
|
|
2024-05-15 00:01:33 -03:00
|
|
|
echoServer = ns.UdpEchoServerHelper(9)
|
2015-06-24 19:40:03 -07:00
|
|
|
|
2022-10-14 22:13:55 -03:00
|
|
|
serverApps = echoServer.Install(csmaNodes.Get(nCsma.value))
|
2024-11-08 18:01:13 +00:00
|
|
|
serverApps.Start(ns.Seconds(1))
|
|
|
|
|
serverApps.Stop(ns.Seconds(10))
|
2015-06-24 19:40:03 -07:00
|
|
|
|
2024-05-15 00:01:33 -03:00
|
|
|
echoClient = ns.UdpEchoClientHelper(csmaInterfaces.GetAddress(nCsma.value).ConvertTo(), 9)
|
|
|
|
|
echoClient.SetAttribute("MaxPackets", ns.UintegerValue(1))
|
2024-11-08 18:01:13 +00:00
|
|
|
echoClient.SetAttribute("Interval", ns.TimeValue(ns.Seconds(1)))
|
2024-05-15 00:01:33 -03:00
|
|
|
echoClient.SetAttribute("PacketSize", ns.UintegerValue(1024))
|
2015-06-24 19:40:03 -07:00
|
|
|
|
|
|
|
|
clientApps = echoClient.Install(p2pNodes.Get(0))
|
2024-11-08 18:01:13 +00:00
|
|
|
clientApps.Start(ns.Seconds(2))
|
|
|
|
|
clientApps.Stop(ns.Seconds(10))
|
2015-06-24 19:40:03 -07:00
|
|
|
|
2024-05-15 00:01:33 -03:00
|
|
|
ns.Ipv4GlobalRoutingHelper.PopulateRoutingTables()
|
2015-06-24 19:40:03 -07:00
|
|
|
|
|
|
|
|
pointToPoint.EnablePcapAll("second")
|
2023-11-19 20:07:19 -03:00
|
|
|
csma.EnablePcap("second", csmaDevices.Get(1), True)
|
2015-06-24 19:40:03 -07:00
|
|
|
|
2024-05-15 00:01:33 -03:00
|
|
|
ns.Simulator.Run()
|
|
|
|
|
ns.Simulator.Destroy()
|