# # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License version 2 as # published by the Free Software Foundation; # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # 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" ) # // Default Network Topology # // # // 10.1.1.0 # // n0 -------------- n1 # // point-to-point # // ns.LogComponentEnable("UdpEchoClientApplication", ns.LOG_LEVEL_INFO) ns.LogComponentEnable("UdpEchoServerApplication", ns.LOG_LEVEL_INFO) nodes = ns.NodeContainer() nodes.Create(2) pointToPoint = ns.PointToPointHelper() pointToPoint.SetDeviceAttribute("DataRate", ns.StringValue("5Mbps")) pointToPoint.SetChannelAttribute("Delay", ns.StringValue("2ms")) devices = pointToPoint.Install(nodes) stack = ns.InternetStackHelper() stack.Install(nodes) address = ns.Ipv4AddressHelper() address.SetBase(ns.Ipv4Address("10.1.1.0"), ns.Ipv4Mask("255.255.255.0")) interfaces = address.Assign(devices) echoServer = ns.UdpEchoServerHelper(9) serverApps = echoServer.Install(nodes.Get(1)) serverApps.Start(ns.Seconds(1.0)) serverApps.Stop(ns.Seconds(10.0)) address = interfaces.GetAddress(1).ConvertTo() echoClient = ns.UdpEchoClientHelper(address, 9) echoClient.SetAttribute("MaxPackets", ns.UintegerValue(1)) echoClient.SetAttribute("Interval", ns.TimeValue(ns.Seconds(1.0))) echoClient.SetAttribute("PacketSize", ns.UintegerValue(1024)) clientApps = echoClient.Install(nodes.Get(0)) clientApps.Start(ns.Seconds(2.0)) clientApps.Stop(ns.Seconds(10.0)) ns.Simulator.Run() ns.Simulator.Destroy()