- 03 Sep, 2010 2 commits
-
-
Leigh B Stoller authored
-
Leigh B Stoller authored
script.
-
- 01 Sep, 2010 2 commits
-
-
Leigh B Stoller authored
-
Leigh B Stoller authored
-
- 31 Aug, 2010 10 commits
-
-
Robert Ricci authored
The parallelization code in the stack module puts the devices in child processes, which means that when they lookup their allowed VLAN ranges, they can no longer update the value in the parent stack object (which is in a different process). So, we have to do it here too.
-
Robert Ricci authored
Some Ciscos limit the number of trunks on which you can configure 'extended range' VLANs (above 1k). This includes clearing them from the trunk (eg. you don't actually have to be *using* them to get this error). So, as a workaround, if the stack is not conifgured to use VLANs over 1k, don't clear this range when cleaning out trunk ports.
-
Robert Ricci authored
-
Ryan Jackson authored
Add the short sha1 to the end of the subject line for MUAs that thread by subject instead of References/In-Reply-To headers.
-
Mike Hibler authored
You would think I would have got this right, since I got bit by this just a week ago! Long-term memory...who needs it!
-
Mike Hibler authored
-
Leigh B Stoller authored
-
Leigh B Stoller authored
nodes; pickup up linkdelays for all nodes on the shared node.
-
Mike Hibler authored
Hack, hack...
-
Mike Hibler authored
This allows nsverify to be built on FreeBSD 7+. Based on patches from John Hickey <jhickey@isi.edu> and Serge van Ginderachter <serge@vanginderachter.be>, thanks guys! I also moved all the logic for downloading/patching the tarball from the GNUmakefile into ns-patch.sh to bring this in line with our other third-party packages that do the same. This is in pursuit of one day having a GUDS (Grand Unified Download Script).
-
- 30 Aug, 2010 1 commit
-
-
Leigh B Stoller authored
a merge.
-
- 27 Aug, 2010 2 commits
-
-
Robert Ricci authored
It's no longer necessary to specify '-l -l' when listing orphaned VLANs, -O implies wanting to see VLANs that aren't in the database.
-
Robert Ricci authored
-
- 26 Aug, 2010 6 commits
-
-
Robert Ricci authored
-
Robert Ricci authored
This reverts commit efdf34a0. Attempt to solve some problems with trunk creation by reverting this change. It's not *certain* that this change is at fault, but I want to factor out some possible causes
-
Leigh B Stoller authored
-
Leigh B Stoller authored
-
Leigh B Stoller authored
-
Leigh B Stoller authored
-
- 24 Aug, 2010 6 commits
-
-
Leigh B Stoller authored
trivial link betweem two VMs on the same phys host. There is no vlan, but we can fake things enough so that everything looks as it should by creating a bridge device with no vlan devices in it.
-
Leigh B Stoller authored
-
Leigh B Stoller authored
-
Leigh B Stoller authored
-
Robert Ricci authored
This reverts commit a31f1a5b.
-
Leigh B Stoller authored
this, you could fix a VM to specific physical node, but not to another node in the topology. This change allows you to do something like the following: set n1 [$ns node] set n2 [$ns node] set n3 [$ns node] set v1 [$ns node] set v2 [$ns node] set v3 [$ns node] tb-set-hardware $v1 pcvm tb-set-hardware $v2 pcvm tb-set-hardware $v3 pcvm # Fix the VMs to other nodes in the topology. tb-fix-node $v1 $n1 tb-fix-node $v2 $n2 tb-fix-node $v3 $n3 # This mix requires vlan encap all around tb-set-vlink-emulation "vlan" # A link between the two phys nodes. set link0 [$ns duplex-link $n1 $n2 100Mb 0ms DropTail] # A link between the two VMs. set link1 [$ns duplex-link $v1 $v2 10Mb 0ms DropTail] # A lan of three physical nodes. set lan0 [$ns make-lan "$n1 $n2 $n3" 100Mb 0ms] # A lan of three VMs set lan1 [$ns make-lan "$v1 $v2 $v3" 10Mb 0ms] # Lets mix things up. set link2 [$ns duplex-link $n1 $v2 10Mb 0ms DropTail] set lan2 [$ns make-lan "$n1 $v2 $n3" 10Mb 0ms] tb-set-node-os $n1 FEDORA8-OVZ-STD tb-set-node-os $n2 FEDORA8-OVZ-STD tb-set-node-os $n3 FEDORA8-OVZ-STD tb-set-node-os $v1 OPENVZ-STD tb-set-node-os $v2 OPENVZ-STD tb-set-node-os $v3 OPENVZ-STD
-
- 23 Aug, 2010 5 commits
-
-
Leigh B Stoller authored
-
Leigh B Stoller authored
-
Leigh B Stoller authored
so that we can tell the user to do something. For example, after installing xerces, we need the user to reconfig/rebuild the object tree and restart the installation.
-
Mike Hibler authored
It used to say FBSDVERSION != 6, but that was when there was only 4 and 6.
-
Mike Hibler authored
Delay agent won't build on FreeBSD 8.x right now due to dummynet API changes. Not even sure we will bother to fix this since we have a newer, more OS independent agent.
-
- 20 Aug, 2010 6 commits
-
-
Mike Hibler authored
"make -C dir foo" != "cd dir && make foo" PWD in a shell script evaluates different, presumably because it is inherited from the invoking shell/make.
-
Mike Hibler authored
-
Mike Hibler authored
-
Jonathon Duerig authored
-
Tarun Prabhu authored
Normalized the error message for excessive link properties and corrected the behaviour of the parser when no link properties are specified.
-
Tarun Prabhu authored
-