History | View | Annotate | Download (36.3 KB)
apply ANS group patches.
Patches allow to use specific per-link delay distributions, and to assign deterministic IP address to TCIntf interfaces.Patches also add a "deb" target to the Makefile in order to create the debian package.
Collect all server output in iperf()
This still isn't ideal - this was breaking UDP iperf, whichcan take a bit of time to print its output after you control-c it.
Fix UDP iperf.
Try to fix iperf race condition
This is more complicated than it should be. We are also relying onthe fact that waitOutput should eat extra prompts most of the time.Still not perfect - it's hard to get this exactly right, and weshould try to make it easier!...
addNAT always use first switch
addNAT always use first switch even though another switch specified
Restore use of self.intf (if present) in addLink
fixes #515
2.2.1rc1 -> 2.2.1
-> 2.2.1rc1
Support multiple --controller arguments
2.2.1d1 -> 2.2.1d2
2.2.0+ -> 2.2.1d1
Indent one line for consistency
Change iperf() to use waitListening()
Set batch=False in OVSSwitch for low-level API
If you try to use the low-level API, you are probablynot going to call batchStartup()! So, we set batch=Falseby default. This means that buildFromTopo() needs to setit to True, so we add a bit of irritatingly complex machinery...
Remove debug print lines
Merge OVSBatch into OVSSwitch
Note that we are changing the interface of batchStartup/Shutdownslightly so that the method can choose not to start some of theswitches. We might wish to refine this a bit...
Add OVSBatch class (experimental)
This implements batch startup for OVS switches.
2.2.0 -> 2.2.0+
Stub out RemoteOVSSwitch.batchShutdown()
Eventually we should implement true batch shutdown.In the mean time, we just ignore it. Note there's no goodway that I know of for a subclass to remove a superclassmethod, so we changed the protocol a bit to require a return...
Fix indentation error
Don't stop switches that we've already stopped.
Note that this also changes the way that links are deleted;the reason is that the batch shutdown doesn't currently deletethe links, but OVSSwitch.stop() does. We may wish to revisitthis in the future.
2.2.0rc1 -> 2.2.0
2.2.0rc1 -> 2.2.0rc2
Basically no changes except for whitespace and satisfying pep8.
Spacing tweaks for pep8 checker
version -> 2.2.0rc1 and update copyright date
Change from numeric to symbolic pylint error codes
More pylint changes
Fixing pylint errors
2.2.0b2
Remove unused imports
use isinstance( obj, basestring) to allow unicode strings
fixes #448
Revert to old "Adding controller" message
Some clarifications
2.2.0b0 -> 2.2.0b1
Add seconds option to iperf()
Merge pull request #433 from mininet/devel/update-version-2.2b0
Initial update of README, text files and versions for 2.2.0b0
Use 2.2.0b0 for consistency with earlier Mininet releases
Add a few clarifying comments
Make port1, port2 truly optional and don't pass them to Link()
Get rid of paramDict and simplify things a bit
Draft update for Mininet 2.2b0
Allow Mininet() to accept multi-link topos w/correct params.
First crack at fixing multiple links
Merge pull request #400 from cdburkard/patches/fixEmptyPing
Mininet crashes when running ping between two hosts with no interfaces
Use server receive rate rather than client send()/buffering rate
Fixes #412
if there are no interfaces to ping, there are no packets sent
Merge pull request #376 from cdburkard/patches/pingOutput
if we do not receive a ping and cannot parse output, return errorTuple
Merge pull request #359 from mininet/devel/cluster
Cluster Support Prototype
Cluster edition prototype: remote nodes and links.
We add a new experimental feature to allow Mininet to run acrossa cluster of machines. This is currently implemented via a setmix-in classes that provide remote nodes that are implementedvia a connection to a remote shell, and remote links which are...
use cgroups to calculate percentage of cpu used
parse pid printed when backgrounding a process
Merge pull request #342 from cdburkard/devel/startup
improve startup performance, largely by removing unnecessary ifconfigs
use kernel's mac generation
moving NAT to nodelib
adding comments and removing random access spaces
Merge branch 'master' into nat
Conflicts: mininet/net.py mininet/node.py
removed more unnecessary ifconfigs
added some documentation
few small fixes to syntax errors
removed comments and cleaned up code.
removed many of the commands being run to maximize startup performance
testing link stuff
Merge branch 'devel/defaultController' of https://github.com/cdburkard/mininet into cdburkard-devel/defaultController
Conflicts: bin/mn mininet/net.py
Check for Controller type using isinstance()
removed bookmark
Tolerate passing controller objects into Mininet()
Don't remove items from a list we're iterating over
Merge pull request #318 from cdburkard/patches/hifi_fix
added support in iperf for different result formats.
set DefaultController as the mininet class default
Merge pull request #325 from cdburkard/patches/userspace_connect
added waitConnected attribute to mininet class
added default controller class
Change algorithm slightly and print progress
Minor message changes
Shutting down controller first
fixed last commit
fixed linearbandwidth and waitconnected
fixed waitConnected performance and moved waitConnected call to mn.start
conforming to style, and fixing documentation
added documentation for waitConnected timeout
improved waitConnected algorithm and set default wait time to wait forever
set default iperf formatting to none
Revert "fixed default iperf formatting behavior"
This reverts commit 0e733c77543b16a67d77465b416fdd77cb509807.
fixed default iperf formatting behavior
added support in iperf for different result formats. also added upper bounds for hifi tests
net: allow batch shutdown of multiple types of switches
Each switch class will be called to shutdown its own instances.
Merge pull request #303 from jhall11/pingall
Add a timeout parameter to the pingAll command
Merge pull request #286 from lantz/devel/ovsbatch
Enable batch startup/shutdown of OVS
Not perfect, but it moves us forward at least.
Update net.py
Merge pull request #293 from backb1/patch/pingloss
Ping: packet loss should be a float
Enable batch shutdown for OVS.
Add support for batch shutdown of OVS switches.
This saves about 10 seconds for a 200 switch network.
fixup: useless_parenthesis
2.1.0 -> 2.1.0+
fixing --nat option in mn
more NAT cleanup of net and topo
undoing gateway in net and removing addNAT helpers