Leigh says you need to have tb-endnodeshaping as well as tb-set-noshaping.
This one *is* a global option:
tb-use-endnodeshaping 1
(strange evolutionary path that got us to this odd combo...)
Otherwise you are still winding up with 100Mbps in the vtop file.
> source tb_compat.tcl
> set ns [new Simulator]
>
>
> ################################################################################
> # Set project/experiment directories
> ################################################################################
> set pdir "/proj/TSCANR/exp/multicoi"
> set bindir "${pdir}/bin"
> set tmpdir "${pdir}/tmp"
>
> ################################################################################
> # Set the image for nodes to run
> ################################################################################
> set os_image "UBUNTU18-64-STD"
> #set os_image "FBSD92-STD"
>
> ################################################################################
> # Create the nodes
> ################################################################################
> # 6 COI's, 12 ships, 3 nodes in each coi, some nodes are all on the same ship
> # Ship 1 - coi a, b, d
> set host1 [$ns node]
> set router1 [$ns node]
> set modem1a [$ns node]
> set modem1b [$ns node]
> set modem1d [$ns node]
>
> # Ship 2 - coi b, c, e
> set host2 [$ns node]
> set router2 [$ns node]
> set modem2b [$ns node]
> set modem2c [$ns node]
> set modem2e [$ns node]
>
> # Ship 3 - coi d, e, f
> set host3 [$ns node]
> set router3 [$ns node]
> set modem3d [$ns node]
> set modem3e [$ns node]
> set modem3f [$ns node]
>
> # Ship 4 - coi a
> set host4 [$ns node]
> set router4 [$ns node]
> set modem4a [$ns node]
>
> # Ship 5 - coi c
> set host5 [$ns node]
> set router5 [$ns node]
> set modem5c [$ns node]
>
> # Ship 6 - coi f
> set host6 [$ns node]
> set router6 [$ns node]
> set modem6f [$ns node]
>
> # Ship 7 - coi a
> set host7 [$ns node]
> set router7 [$ns node]
> set modem7a [$ns node]
>
> # Ship 8 - coi c
> set host8 [$ns node]
> set router8 [$ns node]
> set modem8c [$ns node]
>
> # Ship 9 - coi f
> set host9 [$ns node]
> set router9 [$ns node]
> set modem9f [$ns node]
>
> # Ship 10 - coi a
> #set host10 [$ns node]
> #set router10 [$ns node]
> #set modem10a [$ns node]
>
> # Ship 11 - coi c
> #set host11 [$ns node]
> #set router11 [$ns node]
> #set modem11c [$ns node]
>
> # Ship 12 - coi f
> #set host12 [$ns node]
> #set router12 [$ns node]
> #set modem12f [$ns node]
>
>
> ### connect each host node to the remote host in the lab
> ### each hostX node requires the "add-desire CSTAR" and the tb-fix-node
> $host1 add-desire CSTAR 1.0
> tb-fix-node $host1 LabNode1
>
> $host2 add-desire CSTAR 1.0
> tb-fix-node $host2 LabNode2
>
> $host3 add-desire CSTAR 1.0
> tb-fix-node $host3 LabNode3
>
> $host4 add-desire CSTAR 1.0
> tb-fix-node $host4 LabNode4
>
> $host5 add-desire CSTAR 1.0
> tb-fix-node $host5 LabNode5
>
> $host6 add-desire CSTAR 1.0
> tb-fix-node $host6 LabNode6
>
> $host7 add-desire CSTAR 1.0
> tb-fix-node $host7 LabNode7
>
> $host8 add-desire CSTAR 1.0
> tb-fix-node $host8 LabNode8
>
> $host9 add-desire CSTAR 1.0
> tb-fix-node $host9 LabNode9
>
> #$host10 add-desire CSTAR 1.0
> #tb-fix-node $host10 LabNode10
>
> #$host11 add-desire CSTAR 1.0
> #tb-fix-node $host11 LabNode11
>
> #$host12 add-desire CSTAR 1.0
> #tb-fix-node $host12 LabNode12
>
> ################################################################################
> # Set the platforms
> ################################################################################
> tb-set-node-os $router1 $os_image
> tb-set-node-os $modem1a $os_image
> tb-set-node-os $modem1b $os_image
> tb-set-node-os $modem1d $os_image
> tb-set-node-os $router2 $os_image
> tb-set-node-os $modem2b $os_image
> tb-set-node-os $modem2c $os_image
> tb-set-node-os $modem2e $os_image
> tb-set-node-os $router3 $os_image
> tb-set-node-os $modem3d $os_image
> tb-set-node-os $modem3e $os_image
> tb-set-node-os $modem3f $os_image
> tb-set-node-os $router4 $os_image
> tb-set-node-os $modem4a $os_image
> tb-set-node-os $router5 $os_image
> tb-set-node-os $modem5c $os_image
> tb-set-node-os $router6 $os_image
> tb-set-node-os $modem6f $os_image
> tb-set-node-os $router7 $os_image
> tb-set-node-os $modem7a $os_image
> tb-set-node-os $router8 $os_image
> tb-set-node-os $modem8c $os_image
> tb-set-node-os $router9 $os_image
> tb-set-node-os $modem9f $os_image
> #tb-set-node-os $router10 $os_image
> #tb-set-node-os $modem10a $os_image
> #tb-set-node-os $router11 $os_image
> #tb-set-node-os $modem11c $os_image
> #tb-set-node-os $router12 $os_image
> #tb-set-node-os $modem12f $os_image
>
> # Set router1 as the sync server
> tb-set-sync-server $router1
>
> ################################################################################
> # Create links
> ################################################################################
>
> set ship1host1 [$ns duplex-link $router1 $host1 1Mb 0ms DropTail]
> set ship1modem1a [$ns duplex-link $router1 $modem1a 1Mb 0ms DropTail]
> set ship1modem1b [$ns duplex-link $router1 $modem1b 1Mb 0ms DropTail]
> set ship1modem1d [$ns duplex-link $router1 $modem1d 1Mb 0ms DropTail]
>
> set ship2host2 [$ns duplex-link $router2 $host2 1Mb 0ms DropTail]
> set ship2modem2b [$ns duplex-link $router2 $modem2b 1Mb 0ms DropTail]
> set ship2modem2c [$ns duplex-link $router2 $modem2c 1Mb 0ms DropTail]
> set ship2modem2e [$ns duplex-link $router2 $modem2e 1Mb 0ms DropTail]
>
> set ship3host3 [$ns duplex-link $router3 $host3 1Mb 0ms DropTail]
> set ship3modem3d [$ns duplex-link $router3 $modem3d 1Mb 0ms DropTail]
> set ship3modem3e [$ns duplex-link $router3 $modem3e 1Mb 0ms DropTail]
> set ship3modem3f [$ns duplex-link $router3 $modem3f 1Mb 0ms DropTail]
>
> set ship4host4 [$ns duplex-link $router4 $host4 1Mb 0ms DropTail]
> set ship4modem4a [$ns duplex-link $router4 $modem4a 1Mb 0ms DropTail]
>
> set ship5host5 [$ns duplex-link $router5 $host5 1Mb 0ms DropTail]
> set ship5modem5c [$ns duplex-link $router5 $modem5c 1Mb 0ms DropTail]
>
> set ship6host6 [$ns duplex-link $router6 $host6 1Mb 0ms DropTail]
> set ship6modem6f [$ns duplex-link $router6 $modem6f 1Mb 0ms DropTail]
>
> set ship7host7 [$ns duplex-link $router7 $host7 1Mb 0ms DropTail]
> set ship7modem7a [$ns duplex-link $router7 $modem7a 1Mb 0ms DropTail]
>
> set ship8host8 [$ns duplex-link $router8 $host8 1Mb 0ms DropTail]
> set ship8modem8c [$ns duplex-link $router8 $modem8c 1Mb 0ms DropTail]
>
> set ship9host9 [$ns duplex-link $router9 $host9 1Mb 0ms DropTail]
> set ship9modem9f [$ns duplex-link $router9 $modem9f 1Mb 0ms DropTail]
>
> #set ship10host10 [$ns duplex-link $router10 $host10 1Mb 0ms DropTail]
> #set ship10modem10a [$ns duplex-link $router10 $modem10a 1Mb 0ms DropTail]
>
> #set ship11host11 [$ns duplex-link $router11 $host11 1Mb 0ms DropTail]
> #set ship11modem11c [$ns duplex-link $router11 $modem11c 1Mb 0ms DropTail]
>
> #set ship12host12 [$ns duplex-link $router12 $host12 1Mb 0ms DropTail]
> #set ship12modem12f [$ns duplex-link $router12 $modem12f 1Mb 0ms DropTail]
>
> set satcom [$ns make-lan "$modem1a $modem1b $modem1d $modem2b $modem2c $modem2e $modem3d $modem3e $modem3f $modem4a $modem5c $modem6f $modem7a $modem8c $modem9f" 1Mb 0ms]
> #set satcom [$ns make-lan "$modem1a $modem1b $modem1d $modem2b $modem2c $modem2e $modem3d $modem3e $modem3f $modem4a $modem5c $modem6f $modem7a $modem8c $modem9f $modem10a $modem11c $modem12f" 10Mb 0ms]
>
> tb-set-noshaping $ship1host1 1
> tb-set-noshaping $ship1modem1a 1
> tb-set-noshaping $ship1modem1b 1
> tb-set-noshaping $ship1modem1d 1
> tb-set-noshaping $ship2host2 1
> tb-set-noshaping $ship2modem2b 1
> tb-set-noshaping $ship2modem2c 1
> tb-set-noshaping $ship2modem2e 1
> tb-set-noshaping $ship3host3 1
> tb-set-noshaping $ship3modem3d 1
> tb-set-noshaping $ship3modem3e 1
> tb-set-noshaping $ship3modem3f 1
> tb-set-noshaping $ship4host4 1
> tb-set-noshaping $ship4modem4a 1
> tb-set-noshaping $ship5host5 1
> tb-set-noshaping $ship5modem5c 1
> tb-set-noshaping $ship6host6 1
> tb-set-noshaping $ship6modem6f 1
> tb-set-noshaping $ship7host7 1
> tb-set-noshaping $ship7modem7a 1
> tb-set-noshaping $ship8host8 1
> tb-set-noshaping $ship8modem8c 1
> tb-set-noshaping $ship9host9 1
> tb-set-noshaping $ship9modem9f 1
> tb-set-noshaping $satcom 1
>
>
> ################################################################################
> # Set IP addresses
> ################################################################################
> tb-set-ip-link $router1 $ship1host1 10.1.0.1
> tb-set-ip-link $host1 $ship1host1 10.1.0.100
> tb-set-ip-link $router1 $ship1modem1a 10.1.100.1
> tb-set-ip-link $modem1a $ship1modem1a 10.1.100.10
> tb-set-ip-link $router1 $ship1modem1b 10.1.101.1
> tb-set-ip-link $modem1b $ship1modem1b 10.1.101.10
> tb-set-ip-link $router1 $ship1modem1d 10.1.102.1
> tb-set-ip-link $modem1d $ship1modem1d 10.1.102.10
>
> tb-set-ip-link $router2 $ship2host2 10.2.0.1
> tb-set-ip-link $host2 $ship2host2 10.2.0.100
> tb-set-ip-link $router2 $ship2modem2b 10.2.100.1
> tb-set-ip-link $modem2b $ship2modem2b 10.2.100.10
> tb-set-ip-link $router2 $ship2modem2c 10.2.101.1
> tb-set-ip-link $modem2c $ship2modem2c 10.2.101.10
> tb-set-ip-link $router2 $ship2modem2e 10.2.102.1
> tb-set-ip-link $modem2e $ship2modem2e 10.2.102.10
>
> tb-set-ip-link $router3 $ship3host3 10.3.0.1
> tb-set-ip-link $host3 $ship3host3 10.3.0.100
> tb-set-ip-link $router3 $ship3modem3d 10.3.100.1
> tb-set-ip-link $modem3d $ship3modem3d 10.3.100.10
> tb-set-ip-link $router3 $ship3modem3e 10.3.101.1
> tb-set-ip-link $modem3e $ship3modem3e 10.3.101.10
> tb-set-ip-link $router3 $ship3modem3f 10.3.102.1
> tb-set-ip-link $modem3f $ship3modem3f 10.3.102.10
>
> tb-set-ip-link $router4 $ship4host4 10.4.0.1
> tb-set-ip-link $host4 $ship4host4 10.4.0.100
> tb-set-ip-link $router4 $ship4modem4a 10.4.100.1
> tb-set-ip-link $modem4a $ship4modem4a 10.4.100.10
>
> tb-set-ip-link $router5 $ship5host5 10.5.0.1
> tb-set-ip-link $host5 $ship5host5 10.5.0.100
> tb-set-ip-link $router5 $ship5modem5c 10.5.100.1
> tb-set-ip-link $modem5c $ship5modem5c 10.5.100.10
>
> tb-set-ip-link $router6 $ship6host6 10.6.0.1
> tb-set-ip-link $host6 $ship6host6 10.6.0.100
> tb-set-ip-link $router6 $ship6modem6f 10.6.100.1
> tb-set-ip-link $modem6f $ship6modem6f 10.6.100.10
>
> tb-set-ip-link $router7 $ship7host7 10.7.0.1
> tb-set-ip-link $host7 $ship7host7 10.7.0.100
> tb-set-ip-link $router7 $ship7modem7a 10.7.100.1
> tb-set-ip-link $modem7a $ship7modem7a 10.7.100.10
>
> tb-set-ip-link $router8 $ship8host8 10.8.0.1
> tb-set-ip-link $host8 $ship8host8 10.8.0.100
> tb-set-ip-link $router8 $ship8modem8c 10.8.100.1
> tb-set-ip-link $modem8c $ship8modem8c 10.8.100.10
>
> tb-set-ip-link $router9 $ship9host9 10.9.0.1
> tb-set-ip-link $host9 $ship9host9 10.9.0.100
> tb-set-ip-link $router9 $ship9modem9f 10.9.100.1
> tb-set-ip-link $modem9f $ship9modem9f 10.9.100.10
>
> #tb-set-ip-link $router10 $ship10host10 10.10.0.1
> #tb-set-ip-link $host10 $ship10host10 10.10.0.100
> #tb-set-ip-link $router10 $ship10modem10a 10.10.100.1
> #tb-set-ip-link $modem10a $ship10modem10a 10.10.100.10
>
> #tb-set-ip-link $router11 $ship11host11 10.11.0.1
> #tb-set-ip-link $host11 $ship11host11 10.11.0.100
> #tb-set-ip-link $router11 $ship11modem11c 10.11.100.1
> #tb-set-ip-link $modem11c $ship11modem11c 10.11.100.10
>
> #tb-set-ip-link $router12 $ship12host12 10.12.0.1
> #tb-set-ip-link $host12 $ship12host12 10.12.0.100
> #tb-set-ip-link $router12 $ship12modem12f 10.12.100.1
> #tb-set-ip-link $modem12f $ship12modem12f 10.12.100.10
>
> tb-set-ip-lan $modem1a $satcom 10.255.255.1
> tb-set-ip-lan $modem1b $satcom 10.255.255.2
> tb-set-ip-lan $modem1d $satcom 10.255.255.3
> tb-set-ip-lan $modem2b $satcom 10.255.255.4
> tb-set-ip-lan $modem2c $satcom 10.255.255.5
> tb-set-ip-lan $modem2e $satcom 10.255.255.6
> tb-set-ip-lan $modem3d $satcom 10.255.255.7
> tb-set-ip-lan $modem3e $satcom 10.255.255.8
> tb-set-ip-lan $modem3f $satcom 10.255.255.9
> tb-set-ip-lan $modem4a $satcom 10.255.255.10
> tb-set-ip-lan $modem5c $satcom 10.255.255.11
> tb-set-ip-lan $modem6f $satcom 10.255.255.12
> tb-set-ip-lan $modem7a $satcom 10.255.255.13
> tb-set-ip-lan $modem8c $satcom 10.255.255.14
> tb-set-ip-lan $modem9f $satcom 10.255.255.15
> #tb-set-ip-lan $modem10a $satcom 10.255.255.16
> #tb-set-ip-lan $modem11c $satcom 10.255.255.17
> #tb-set-ip-lan $modem12f $satcom 10.255.255.18
>
> ################################################################################
> # Set the start up command
> ################################################################################
> tb-set-node-startcmd $router1 "${bindir}/setup-node.sh $router1 >& ${tmpdir}/start_router1.log"
> tb-set-node-startcmd $router2 "${bindir}/setup-node.sh $router2 >& ${tmpdir}/start_router2.log"
> tb-set-node-startcmd $router3 "${bindir}/setup-node.sh $router3 >& ${tmpdir}/start_router3.log"
> tb-set-node-startcmd $router4 "${bindir}/setup-node.sh $router4 >& ${tmpdir}/start_router4.log"
> tb-set-node-startcmd $router5 "${bindir}/setup-node.sh $router5 >& ${tmpdir}/start_router5.log"
> tb-set-node-startcmd router6 "${bindir}/setup-node.sh $router6 >& ${tmpdir}/start_router6.log"
> tb-set-node-startcmd $router7 "${bindir}/setup-node.sh $router7 >& ${tmpdir}/start_router7.log"
> tb-set-node-startcmd $router8 "${bindir}/setup-node.sh $router8 >& ${tmpdir}/start_router8.log"
> tb-set-node-startcmd $router9 "${bindir}/setup-node.sh $router9 >& ${tmpdir}/start_router9.log"
> #tb-set-node-startcmd $router10 "${bindir}/setup-node.sh $router10 >& ${tmpdir}/start_router10.log"
> #tb-set-node-startcmd $router11 "${bindir}/setup-node.sh $router11 >& ${tmpdir}/start_router11.log"
> #tb-set-node-startcmd $router12 "${bindir}/setup-node.sh $router12 >& ${tmpdir}/start_router12.log"
> tb-set-node-startcmd $modem1a "${bindir}/setup-node.sh $modem1a >& ${tmpdir}/start_modem1a.log"
> tb-set-node-startcmd $modem1b "${bindir}/setup-node.sh $modem1b >& ${tmpdir}/start_modem1b.log"
> tb-set-node-startcmd $modem1d "${bindir}/setup-node.sh $modem1d >& ${tmpdir}/start_modem1d.log"
> tb-set-node-startcmd $modem2b "${bindir}/setup-node.sh $modem2b >& ${tmpdir}/start_modem2b.log"
> tb-set-node-startcmd $modem2c "${bindir}/setup-node.sh $modem2c >& ${tmpdir}/start_modem2c.log"
> tb-set-node-startcmd $modem2e "${bindir}/setup-node.sh $modem2e >& ${tmpdir}/start_modem2e.log"
> tb-set-node-startcmd $modem3d "${bindir}/setup-node.sh $modem3d >& ${tmpdir}/start_modem3d.log"
> tb-set-node-startcmd $modem3e "${bindir}/setup-node.sh $modem3e >& ${tmpdir}/start_modem3e.log"
> tb-set-node-startcmd $modem3f "${bindir}/setup-node.sh $modem3f >& ${tmpdir}/start_modem3f.log"
> tb-set-node-startcmd $modem4a "${bindir}/setup-node.sh $modem4a >& ${tmpdir}/start_modem4a.log"
> tb-set-node-startcmd $modem5c "${bindir}/setup-node.sh $modem5c >& ${tmpdir}/start_modem5c.log"
> tb-set-node-startcmd $modem6f "${bindir}/setup-node.sh $modem6f >& ${tmpdir}/start_modem6f.log"
> tb-set-node-startcmd $modem7a "${bindir}/setup-node.sh $modem7a >& ${tmpdir}/start_modem7a.log"
> tb-set-node-startcmd $modem8c "${bindir}/setup-node.sh $modem8c >& ${tmpdir}/start_modem8c.log"
> tb-set-node-startcmd $modem9f "${bindir}/setup-node.sh $modem9f >& ${tmpdir}/start_modem9f.log"
> #tb-set-node-startcmd $modem10a "${bindir}/setup-node.sh $modem10a >& ${tmpdir}/start_modem10a.log"
> #tb-set-node-startcmd $modem11c "${bindir}/setup-node.sh $modem11c >& ${tmpdir}/start_modem11c.log"
> #tb-set-node-startcmd $modem12f "${bindir}/setup-node.sh $modem12f >& ${tmpdir}/start_modem12f.log"
>
> ################################################################################
> # GO!
> ################################################################################
> $ns run
> node cisco1 switch:1 *lan:* - real-switch:0 -
> node cisco3 switch:1 *lan:* - real-switch:0 -
> node cisco4 switch:1 *lan:* - real-switch:0 -
> node cisco5 switch:1 *lan:* - real-switch:0 -
> node cisco7 switch:1 *lan:* - real-switch:0 -
> node cisco6 switch:1 *lan:* - real-switch:0 -
> node cisco10 switch:1 *lan:* - real-switch:0 -
> node cisco9 switch:1 *lan:* - real-switch:0 -
> node cisco8 switch:1 *lan:* - real-switch:0 -
> node cisco11 switch:1 *lan:* - real-switch:0 -
> node cisco16 switch:1 *lan:* - real-switch:0 -
> node cisco12 switch:1 *lan:* - real-switch:0 -
> node cisco13 switch:1 *lan:* - real-switch:0 -
> node cisco20 switch:1 *lan:* - real-switch:0 -
> node cisco15 switch:1 *lan:* - real-switch:0 -
> node cisco17 switch:1 *lan:* - real-switch:0 -
> node cisco18 switch:1 *lan:* - real-switch:0 -
> node cisco21 switch:1 *lan:* - real-switch:0 -
> node x-haipe508 HaipeTaclane:1 pc:1 - haipe:1 OS-10100:0 connected-to-cisco18:0.0 -
> node LabNode10 NetworkConnection:1 pc:1 - CSTAR:1 OS-10100:0 connected-to-cisco21:0.0 -
> node pc73 Dell_E6550:1 pc:1 delay:2 delay-Dell_E6550:2 - ?+disk_any:53700 ?+disk_sysvol:53700 ?+disk_nonsysvol:0 Dell_E6550:0.1 OS-10017:0 OS-10132:0 OS-10145:0 OS-10039:0 OS-10041:0 OS-10042:0 OS-10047:0 OS-10057:0 OS-10060:0 OS-10068:0 OS-10073:0 OS-10073-10152:0 OS-10098:0 OS-10088:0 OS-10188:0 OS-10123:0 OS-10146:0 OS-10147:0 OS-10149:0 OS-10149-10041:0 OS-10149-10042:0 OS-10149-10056:0 OS-10149-10096:0 OS-10149-10136:0 OS-10149-10148:0 OS-10149-10152:0 OS-10149-10164:0 OS-10150:0 OS-10152:0 OS-10164:0 OS-10165:0 OS-10165-10041:0 OS-10165-10042:0 OS-10165-10056:0 OS-10165-10096:0 OS-10165-10136:0 OS-10165-10152:0 OS-10165-10166:0 OS-10165-10167:0 OS-10165-10168:0 OS-10165-10174:0 OS-10165-10175:0 OS-10165-10179:0 OS-10165-10185:0 OS-10165-10188:0 OS-10165-10193:0 OS-10165-10196:0 OS-10165-10202:0 OS-10166:0 OS-10167:0 OS-10168:0 OS-10179:0 OS-10172:0 OS-10175:0 OS-10174:0 OS-10185:0 OS-10193:0 OS-10196:0 OS-10197:0 OS-10200:0 OS-10201:0 OS-10202:0 OS-10207:0 OS-10205:0 OS-10206:0 OS-10209:0 OS-10210:0 OS-10236:0 OS-10237:0 OS-10235:0 OS-10146:0 OS-10148:0 connected-to-cisco17:0.0 connected-to-cisco15:0.0 connected-to-cisco13:0.0 connected-to-cisco2e:0.0 poweroff:0.9 -
> node pc72 Dell_E6550:1 pc:1 delay:2 delay-Dell_E6550:2 - ?+disk_any:53700 ?+disk_sysvol:53700 ?+disk_nonsysvol:0 Dell_E6550:0.1 OS-10017:0 OS-10132:0 OS-10145:0 OS-10039:0 OS-10041:0 OS-10042:0 OS-10047:0 OS-10057:0 OS-10060:0 OS-10068:0 OS-10073:0 OS-10073-10152:0 OS-10098:0 OS-10088:0 OS-10188:0 OS-10123:0 OS-10146:0 OS-10147:0 OS-10149:0 OS-10149-10041:0 OS-10149-10042:0 OS-10149-10056:0 OS-10149-10096:0 OS-10149-10136:0 OS-10149-10148:0 OS-10149-10152:0 OS-10149-10164:0 OS-10150:0 OS-10152:0 OS-10164:0 OS-10165:0 OS-10165-10041:0 OS-10165-10042:0 OS-10165-10056:0 OS-10165-10096:0 OS-10165-10136:0 OS-10165-10152:0 OS-10165-10166:0 OS-10165-10167:0 OS-10165-10168:0 OS-10165-10174:0 OS-10165-10175:0 OS-10165-10179:0 OS-10165-10185:0 OS-10165-10188:0 OS-10165-10193:0 OS-10165-10196:0 OS-10165-10202:0 OS-10166:0 OS-10167:0 OS-10168:0 OS-10179:0 OS-10172:0 OS-10175:0 OS-10174:0 OS-10185:0 OS-10193:0 OS-10196:0 OS-10197:0 OS-10200:0 OS-10201:0 OS-10202:0 OS-10207:0 OS-10205:0 OS-10206:0 OS-10209:0 OS-10210:0 OS-10236:0 OS-10237:0 OS-10235:0 OS-10146:0 OS-10148:0 connected-to-cisco15:0.0 connected-to-cisco17:0.0 connected-to-cisco13:0.0 connected-to-cisco2e:0.0 poweroff:0.9 -
> node x-haipe504 HaipeViaSatIps250:1 pc:1 - haipe:1 OS-10100:0 connected-to-cisco4:0.0 -
> node LabNode9 NetworkConnection:1 pc:1 - CSTAR:1 OS-10100:0 connected-to-cisco21:0.0 -
> node LabNode4 NetworkConnection:1 pc:1 - CSTAR:1 OS-10100:0 connected-to-cisco21:0.0 -
> node pc70 Dell_E6550:1 pc:1 delay:2 delay-Dell_E6550:2 - ?+disk_any:53700 ?+disk_sysvol:53700 ?+disk_nonsysvol:0 Dell_E6550:0.1 OS-10017:0 OS-10132:0 OS-10145:0 OS-10039:0 OS-10041:0 OS-10042:0 OS-10047:0 OS-10057:0 OS-10060:0 OS-10068:0 OS-10073:0 OS-10073-10152:0 OS-10098:0 OS-10088:0 OS-10188:0 OS-10123:0 OS-10146:0 OS-10147:0 OS-10149:0 OS-10149-10041:0 OS-10149-10042:0 OS-10149-10056:0 OS-10149-10096:0 OS-10149-10136:0 OS-10149-10148:0 OS-10149-10152:0 OS-10149-10164:0 OS-10150:0 OS-10152:0 OS-10164:0 OS-10165:0 OS-10165-10041:0 OS-10165-10042:0 OS-10165-10056:0 OS-10165-10096:0 OS-10165-10136:0 OS-10165-10152:0 OS-10165-10166:0 OS-10165-10167:0 OS-10165-10168:0 OS-10165-10174:0 OS-10165-10175:0 OS-10165-10179:0 OS-10165-10185:0 OS-10165-10188:0 OS-10165-10193:0 OS-10165-10196:0 OS-10165-10202:0 OS-10166:0 OS-10167:0 OS-10168:0 OS-10179:0 OS-10172:0 OS-10175:0 OS-10174:0 OS-10185:0 OS-10193:0 OS-10196:0 OS-10197:0 OS-10200:0 OS-10201:0 OS-10202:0 OS-10207:0 OS-10205:0 OS-10206:0 OS-10209:0 OS-10210:0 OS-10236:0 OS-10237:0 OS-10235:0 OS-10146:0 OS-10148:0 connected-to-cisco15:0.0 connected-to-cisco17:0.0 connected-to-cisco2e:0.0 poweroff:0.9 -
> node pc26 Rackable1U:1 pc:1 delay:3 delay-Rackable1U:3 - ?+disk_any:55600 ?+disk_sysvol:55600 ?+disk_nonsysvol:0 Rackable1U:0.1 OS-10003:0 OS-10013:0 OS-10017:0 OS-10132:0 OS-10028:0 OS-10033:0 OS-10047:0 OS-10051:0 OS-10056:0 OS-10136:0 OS-10053:0 OS-10058:0 OS-10060:0 OS-10066:0 OS-10068:0 OS-10098:0 OS-10096:0 OS-10088:0 OS-10123:0 OS-10147:0 OS-10179:0 OS-10172:0 OS-10185:0 OS-10193:0 OS-10123:0 OS-10000:0 OS-10005:0 OS-10012:0 connected-to-cisco7:0.0 connected-to-cisco2b:0.0 poweroff:0.9 -
> node x-mac503 MacMini:1 pc:1 - powerpc:1 OS-10100:0 connected-to-cisco6:0.0 poweroff:0.9 -
> node LabNode8 NetworkConnection:1 pc:1 - CSTAR:1 OS-10100:0 connected-to-cisco21:0.0 -
> node pc32 Rackable1U:1 pc:1 delay:3 delay-Rackable1U:3 - ?+disk_any:55600 ?+disk_sysvol:55600 ?+disk_nonsysvol:0 Rackable1U:0.1 slowboot:0.9 badnic:0.9 OS-10003:0 OS-10013:0 OS-10017:0 OS-10132:0 OS-10028:0 OS-10033:0 OS-10047:0 OS-10051:0 OS-10056:0 OS-10136:0 OS-10053:0 OS-10058:0 OS-10060:0 OS-10066:0 OS-10068:0 OS-10098:0 OS-10096:0 OS-10088:0 OS-10123:0 OS-10147:0 OS-10179:0 OS-10172:0 OS-10185:0 OS-10193:0 OS-10123:0 OS-10000:0 OS-10005:0 OS-10012:0 connected-to-cisco6:0.0 connected-to-cisco2b:0.0 poweroff:0.9 -
> node pc51 HPdc7700:1 pc:1 - ?+disk_any:130000 ?+disk_sysvol:130000 ?+disk_nonsysvol:0 HPdc7700:0.1 OS-10017:0 OS-10132:0 OS-10028:0 OS-10135:0 OS-10145:0 OS-10039:0 OS-10041:0 OS-10042:0 OS-10047:0 OS-10055:0 OS-10056:0 OS-10136:0 OS-10053:0 OS-10054:0 OS-10057:0 OS-10058:0 OS-10060:0 OS-10066:0 OS-10068:0 OS-10098:0 OS-10096:0 OS-10088:0 OS-10188:0 OS-10123:0 OS-10146:0 OS-10147:0 OS-10149:0 OS-10149-10041:0 OS-10149-10042:0 OS-10149-10056:0 OS-10149-10096:0 OS-10149-10136:0 OS-10149-10148:0 OS-10149-10152:0 OS-10149-10164:0 OS-10150:0 OS-10152:0 OS-10164:0 OS-10165:0 OS-10165-10041:0 OS-10165-10042:0 OS-10165-10056:0 OS-10165-10096:0 OS-10165-10136:0 OS-10165-10152:0 OS-10165-10166:0 OS-10165-10167:0 OS-10165-10168:0 OS-10165-10174:0 OS-10165-10175:0 OS-10165-10179:0 OS-10165-10185:0 OS-10165-10188:0 OS-10165-10193:0 OS-10165-10196:0 OS-10165-10202:0 OS-10166:0 OS-10167:0 OS-10168:0 OS-10179:0 OS-10172:0 OS-10175:0 OS-10174:0 OS-10185:0 OS-10193:0 OS-10196:0 OS-10197:0 OS-10200:0 OS-10201:0 OS-10202:0 OS-10207:0 OS-10205:0 OS-10206:0 OS-10209:0 OS-10210:0 OS-10236:0 OS-10237:0 OS-10235:0 OS-10017:0 OS-10148:0 connected-to-cisco2f:0.0 connected-to-cisco11:0.0 connected-to-cisco16:0.0 poweroff:0.9 -
> node pc31 Rackable1U:1 pc:1 delay:3 delay-Rackable1U:3 - ?+disk_any:55600 ?+disk_sysvol:55600 ?+disk_nonsysvol:0 Rackable1U:0.1 OS-10003:0 OS-10013:0 OS-10017:0 OS-10132:0 OS-10028:0 OS-10033:0 OS-10047:0 OS-10051:0 OS-10056:0 OS-10136:0 OS-10053:0 OS-10058:0 OS-10060:0 OS-10066:0 OS-10068:0 OS-10098:0 OS-10096:0 OS-10088:0 OS-10123:0 OS-10147:0 OS-10179:0 OS-10172:0 OS-10185:0 OS-10193:0 OS-10123:0 OS-10000:0 OS-10005:0 OS-10012:0 connected-to-cisco7:0.0 connected-to-cisco2b:0.0 poweroff:0.9 -
> node pc22 Rackable1U:1 pc:1 delay:3 delay-Rackable1U:3 - ?+disk_any:55600 ?+disk_sysvol:55600 ?+disk_nonsysvol:0 Rackable1U:0.1 OS-10003:0 OS-10013:0 OS-10017:0 OS-10132:0 OS-10028:0 OS-10033:0 OS-10047:0 OS-10051:0 OS-10056:0 OS-10136:0 OS-10053:0 OS-10058:0 OS-10060:0 OS-10066:0 OS-10068:0 OS-10098:0 OS-10096:0 OS-10088:0 OS-10123:0 OS-10147:0 OS-10179:0 OS-10172:0 OS-10185:0 OS-10193:0 OS-10123:0 OS-10000:0 OS-10005:0 OS-10012:0 connected-to-cisco4:0.0 connected-to-cisco2a:0.0 poweroff:0.9 -
> node LabNode6 NetworkConnection:1 pc:1 - CSTAR:1 OS-10100:0 connected-to-cisco21:0.0 -
> node pc46 HPDL360:1 pc:1 delay:4 delay-HPDL360:4 - ?+disk_any:46900 ?+disk_sysvol:46900 ?+disk_nonsysvol:0 HPDL360:0.1 slowboot:0.9 OS-10017:0 OS-10132:0 OS-10028:0 OS-10135:0 OS-10145:0 OS-10039:0 OS-10041:0 OS-10042:0 OS-10047:0 OS-10055:0 OS-10051:0 OS-10049:0 OS-10056:0 OS-10136:0 OS-10053:0 OS-10054:0 OS-10057:0 OS-10058:0 OS-10060:0 OS-10066:0 OS-10068:0 OS-10073:0 OS-10073-10152:0 OS-10098:0 OS-10096:0 OS-10088:0 OS-10188:0 OS-10123:0 OS-10146:0 OS-10147:0 OS-10149:0 OS-10149-10041:0 OS-10149-10042:0 OS-10149-10056:0 OS-10149-10096:0 OS-10149-10136:0 OS-10149-10148:0 OS-10149-10152:0 OS-10149-10164:0 OS-10150:0 OS-10152:0 OS-10164:0 OS-10165:0 OS-10165-10041:0 OS-10165-10042:0 OS-10165-10056:0 OS-10165-10096:0 OS-10165-10136:0 OS-10165-10152:0 OS-10165-10166:0 OS-10165-10167:0 OS-10165-10168:0 OS-10165-10174:0 OS-10165-10175:0 OS-10165-10179:0 OS-10165-10185:0 OS-10165-10188:0 OS-10165-10193:0 OS-10165-10196:0 OS-10165-10202:0 OS-10166:0 OS-10167:0 OS-10168:0 OS-10179:0 OS-10172:0 OS-10175:0 OS-10174:0 OS-10185:0 OS-10193:0 OS-10196:0 OS-10197:0 OS-10200:0 OS-10201:0 OS-10202:0 OS-10207:0 OS-10205:0 OS-10206:0 OS-10209:0 OS-10210:0 OS-10236:0 OS-10237:0 OS-10235:0 OS-10123:0 OS-10148:0 connected-to-cisco9:0.0 connected-to-cisco18:0.0 connected-to-cisco2c:0.0 poweroff:0.9 -
> node CStarLab NetworkConnection:1 pc:1 - CSTAR:1 OS-10100:0 connected-to-cisco8:0.0 -
> node pc67 Dell_E6550:1 pc:1 delay:2 delay-Dell_E6550:2 - ?+disk_any:53700 ?+disk_sysvol:53700 ?+disk_nonsysvol:0 Dell_E6550:0.1 OS-10017:0 OS-10132:0 OS-10145:0 OS-10039:0 OS-10041:0 OS-10042:0 OS-10047:0 OS-10057:0 OS-10060:0 OS-10068:0 OS-10073:0 OS-10073-10152:0 OS-10098:0 OS-10088:0 OS-10188:0 OS-10123:0 OS-10146:0 OS-10147:0 OS-10149:0 OS-10149-10041:0 OS-10149-10042:0 OS-10149-10056:0 OS-10149-10096:0 OS-10149-10136:0 OS-10149-10148:0 OS-10149-10152:0 OS-10149-10164:0 OS-10150:0 OS-10152:0 OS-10164:0 OS-10165:0 OS-10165-10041:0 OS-10165-10042:0 OS-10165-10056:0 OS-10165-10096:0 OS-10165-10136:0 OS-10165-10152:0 OS-10165-10166:0 OS-10165-10167:0 OS-10165-10168:0 OS-10165-10174:0 OS-10165-10175:0 OS-10165-10179:0 OS-10165-10185:0 OS-10165-10188:0 OS-10165-10193:0 OS-10165-10196:0 OS-10165-10202:0 OS-10166:0 OS-10167:0 OS-10168:0 OS-10179:0 OS-10172:0 OS-10175:0 OS-10174:0 OS-10185:0 OS-10193:0 OS-10196:0 OS-10197:0 OS-10200:0 OS-10201:0 OS-10202:0 OS-10207:0 OS-10205:0 OS-10206:0 OS-10209:0 OS-10210:0 OS-10236:0 OS-10237:0 OS-10235:0 OS-10146:0 OS-10148:0 connected-to-cisco15:0.0 connected-to-cisco17:0.0 connected-to-cisco2e:0.0 poweroff:0.9 -
> node pc59 HPdc7700:1 pc:1 - ?+disk_any:130000 ?+disk_sysvol:130000 ?+disk_nonsysvol:0 HPdc7700:0.1 OS-10017:0 OS-10132:0 OS-10028:0 OS-10135:0 OS-10145:0 OS-10039:0 OS-10041:0 OS-10042:0 OS-10047:0 OS-10055:0 OS-10056:0 OS-10136:0 OS-10053:0 OS-10054:0 OS-10057:0 OS-10058:0 OS-10060:0 OS-10066:0 OS-10068:0 OS-10098:0 OS-10096:0 OS-10088:0 OS-10188:0 OS-10123:0 OS-10146:0 OS-10147:0 OS-10149:0 OS-10149-10041:0 OS-10149-10042:0 OS-10149-10056:0 OS-10149-10096:0 OS-10149-10136:0 OS-10149-10148:0 OS-10149-10152:0 OS-10149-10164:0 OS-10150:0 OS-10152:0 OS-10164:0 OS-10165:0 OS-10165-10041:0 OS-10165-10042:0 OS-10165-10056:0 OS-10165-10096:0 OS-10165-10136:0 OS-10165-10152:0 OS-10165-10166:0 OS-10165-10167:0 OS-10165-10168:0 OS-10165-10174:0 OS-10165-10175:0 OS-10165-10179:0 OS-10165-10185:0 OS-10165-10188:0 OS-10165-10193:0 OS-10165-10196:0 OS-10165-10202:0 OS-10166:0 OS-10167:0 OS-10168:0 OS-10179:0 OS-10172:0 OS-10175:0 OS-10174:0 OS-10185:0 OS-10193:0 OS-10196:0 OS-10197:0 OS-10200:0 OS-10201:0 OS-10202:0 OS-10207:0 OS-10205:0 OS-10206:0 OS-10209:0 OS-10210:0 OS-10236:0 OS-10237:0 OS-10235:0 OS-10017:0 OS-10148:0 connected-to-cisco2f:0.0 connected-to-cisco16:0.0 poweroff:0.9 -
> node LabNode7 NetworkConnection:1 pc:1 - CSTAR:1 OS-10100:0 connected-to-cisco21:0.0 -
> node x-mac507 MacMini:1 pc:1 - powerpc:1 OS-10100:0 connected-to-cisco6:0.0 poweroff:0.9 -
> node LabNode5 NetworkConnection:1 pc:1 - CSTAR:1 OS-10100:0 connected-to-cisco21:0.0 -
> node pc45 HPDL360:1 pc:1 delay:4 delay-HPDL360:4 - ?+disk_any:46900 ?+disk_sysvol:46900 ?+disk_nonsysvol:0 HPDL360:0.1 OS-10017:0 OS-10132:0 OS-10028:0 OS-10135:0 OS-10145:0 OS-10039:0 OS-10041:0 OS-10042:0 OS-10047:0 OS-10055:0 OS-10051:0 OS-10049:0 OS-10056:0 OS-10136:0 OS-10053:0 OS-10054:0 OS-10057:0 OS-10058:0 OS-10060:0 OS-10066:0 OS-10068:0 OS-10073:0 OS-10073-10152:0 OS-10098:0 OS-10096:0 OS-10088:0 OS-10188:0 OS-10123:0 OS-10146:0 OS-10147:0 OS-10149:0 OS-10149-10041:0 OS-10149-10042:0 OS-10149-10056:0 OS-10149-10096:0 OS-10149-10136:0 OS-10149-10148:0 OS-10149-10152:0 OS-10149-10164:0 OS-10150:0 OS-10152:0 OS-10164:0 OS-10165:0 OS-10165-10041:0 OS-10165-10042:0 OS-10165-10056:0 OS-10165-10096:0 OS-10165-10136:0 OS-10165-10152:0 OS-10165-10166:0 OS-10165-10167:0 OS-10165-10168:0 OS-10165-10174:0 OS-10165-10175:0 OS-10165-10179:0 OS-10165-10185:0 OS-10165-10188:0 OS-10165-10193:0 OS-10165-10196:0 OS-10165-10202:0 OS-10166:0 OS-10167:0 OS-10168:0 OS-10179:0 OS-10172:0 OS-10175:0 OS-10174:0 OS-10185:0 OS-10193:0 OS-10196:0 OS-10197:0 OS-10200:0 OS-10201:0 OS-10202:0 OS-10207:0 OS-10205:0 OS-10206:0 OS-10209:0 OS-10210:0 OS-10236:0 OS-10237:0 OS-10235:0 OS-10123:0 OS-10148:0 connected-to-cisco9:0.0 connected-to-cisco18:0.0 connected-to-cisco2c:0.0 poweroff:0.9 -
> node pc40 HPDL360:1 pc:1 delay:4 delay-HPDL360:4 - ?+disk_any:46900 ?+disk_sysvol:46900 ?+disk_nonsysvol:0 HPDL360:0.1 OS-10017:0 OS-10132:0 OS-10028:0 OS-10135:0 OS-10145:0 OS-10039:0 OS-10041:0 OS-10042:0 OS-10047:0 OS-10055:0 OS-10051:0 OS-10049:0 OS-10056:0 OS-10136:0 OS-10053:0 OS-10054:0 OS-10057:0 OS-10058:0 OS-10060:0 OS-10066:0 OS-10068:0 OS-10073:0 OS-10073-10152:0 OS-10098:0 OS-10096:0 OS-10088:0 OS-10188:0 OS-10123:0 OS-10146:0 OS-10147:0 OS-10149:0 OS-10149-10041:0 OS-10149-10042:0 OS-10149-10056:0 OS-10149-10096:0 OS-10149-10136:0 OS-10149-10148:0 OS-10149-10152:0 OS-10149-10164:0 OS-10150:0 OS-10152:0 OS-10164:0 OS-10165:0 OS-10165-10041:0 OS-10165-10042:0 OS-10165-10056:0 OS-10165-10096:0 OS-10165-10136:0 OS-10165-10152:0 OS-10165-10166:0 OS-10165-10167:0 OS-10165-10168:0 OS-10165-10174:0 OS-10165-10175:0 OS-10165-10179:0 OS-10165-10185:0 OS-10165-10188:0 OS-10165-10193:0 OS-10165-10196:0 OS-10165-10202:0 OS-10166:0 OS-10167:0 OS-10168:0 OS-10179:0 OS-10172:0 OS-10175:0 OS-10174:0 OS-10185:0 OS-10193:0 OS-10196:0 OS-10197:0 OS-10200:0 OS-10201:0 OS-10202:0 OS-10207:0 OS-10205:0 OS-10206:0 OS-10209:0 OS-10210:0 OS-10236:0 OS-10237:0 OS-10235:0 OS-10123:0 OS-10148:0 connected-to-cisco10:0.0 connected-to-cisco18:0.0 connected-to-cisco2c:0.0 poweroff:0.9 -
> node pc76 PolywellAtom:1 pc:1 delay:2 delay-PolywellAtom:2 - ?+disk_any:8000 ?+disk_sysvol:8000 ?+disk_nonsysvol:0 PolywellAtom:0.5 OS-10017:0 OS-10132:0 OS-10135:0 OS-10145:0 OS-10039:0 OS-10041:0 OS-10042:0 OS-10047:0 OS-10136:0 OS-10053:0 OS-10054:0 OS-10057:0 OS-10060:0 OS-10068:0 OS-10073:0 OS-10073-10152:0 OS-10098:0 OS-10096:0 OS-10088:0 OS-10123:0 OS-10146:0 OS-10147:0 OS-10149:0 OS-10149-10041:0 OS-10149-10042:0 OS-10149-10056:0 OS-10149-10096:0 OS-10149-10136:0 OS-10149-10148:0 OS-10149-10152:0 OS-10149-10164:0 OS-10150:0 OS-10152:0 OS-10164:0 OS-10165:0 OS-10165-10041:0 OS-10165-10042:0 OS-10165-10056:0 OS-10165-10096:0 OS-10165-10136:0 OS-10165-10152:0 OS-10165-10166:0 OS-10165-10167:0 OS-10165-10168:0 OS-10165-10174:0 OS-10165-10175:0 OS-10165-10179:0 OS-10165-10185:0 OS-10165-10188:0 OS-10165-10193:0 OS-10165-10196:0 OS-10165-10202:0 OS-10166:0 OS-10167:0 OS-10168:0 OS-10179:0 OS-10172:0 OS-10175:0 OS-10174:0 OS-10185:0 OS-10193:0 OS-10196:0 OS-10197:0 OS-10200:0 OS-10201:0 OS-10202:0 OS-10207:0 OS-10205:0 OS-10206:0 OS-10209:0 OS-10210:0 OS-10236:0 OS-10237:0 OS-10235:0 OS-10017:0 OS-10148:0 connected-to-cisco15:0.0 connected-to-cisco13:0.0 connected-to-cisco2e:0.0 poweroff:0.9 -
> node ciscoR606 RouterCisco3745:1 pc:1 - router:1 OS-10100:0 connected-to-cisco8:0.0 poweroff:0.9 -
> node pc19 Rackable1U:1 pc:1 delay:3 delay-Rackable1U:3 - ?+disk_any:55600 ?+disk_sysvol:55600 ?+disk_nonsysvol:0 Rackable1U:0.1 OS-10003:0 OS-10013:0 OS-10017:0 OS-10132:0 OS-10028:0 OS-10033:0 OS-10047:0 OS-10051:0 OS-10056:0 OS-10136:0 OS-10053:0 OS-10058:0 OS-10060:0 OS-10066:0 OS-10068:0 OS-10098:0 OS-10096:0 OS-10088:0 OS-10123:0 OS-10147:0 OS-10179:0 OS-10172:0 OS-10185:0 OS-10193:0 OS-10123:0 OS-10000:0 OS-10005:0 OS-10012:0 connected-to-cisco5:0.0 connected-to-cisco2a:0.0 poweroff:0.9 -
> node pc69 Dell_E6550:1 pc:1 delay:2 delay-Dell_E6550:2 - ?+disk_any:53700 ?+disk_sysvol:53700 ?+disk_nonsysvol:0 Dell_E6550:0.1 OS-10017:0 OS-10132:0 OS-10145:0 OS-10039:0 OS-10041:0 OS-10042:0 OS-10047:0 OS-10057:0 OS-10060:0 OS-10068:0 OS-10073:0 OS-10073-10152:0 OS-10098:0 OS-10088:0 OS-10188:0 OS-10123:0 OS-10146:0 OS-10147:0 OS-10149:0 OS-10149-10041:0 OS-10149-10042:0 OS-10149-10056:0 OS-10149-10096:0 OS-10149-10136:0 OS-10149-10148:0 OS-10149-10152:0 OS-10149-10164:0 OS-10150:0 OS-10152:0 OS-10164:0 OS-10165:0 OS-10165-10041:0 OS-10165-10042:0 OS-10165-10056:0 OS-10165-10096:0 OS-10165-10136:0 OS-10165-10152:0 OS-10165-10166:0 OS-10165-10167:0 OS-10165-10168:0 OS-10165-10174:0 OS-10165-10175:0 OS-10165-10179:0 OS-10165-10185:0 OS-10165-10188:0 OS-10165-10193:0 OS-10165-10196:0 OS-10165-10202:0 OS-10166:0 OS-10167:0 OS-10168:0 OS-10179:0 OS-10172:0 OS-10175:0 OS-10174:0 OS-10185:0 OS-10193:0 OS-10196:0 OS-10197:0 OS-10200:0 OS-10201:0 OS-10202:0 OS-10207:0 OS-10205:0 OS-10206:0 OS-10209:0 OS-10210:0 OS-10236:0 OS-10237:0 OS-10235:0 OS-10146:0 OS-10148:0 connected-to-cisco15:0.0 connected-to-cisco17:0.0 connected-to-cisco2e:0.0 poweroff:0.9 -
> node pc48 HPDL360:1 pc:1 delay:4 delay-HPDL360:4 - ?+disk_any:46900 ?+disk_sysvol:46900 ?+disk_nonsysvol:0 HPDL360:0.1 OS-10017:0 OS-10132:0 OS-10028:0 OS-10135:0 OS-10145:0 OS-10039:0 OS-10041:0 OS-10042:0 OS-10047:0 OS-10055:0 OS-10051:0 OS-10049:0 OS-10056:0 OS-10136:0 OS-10053:0 OS-10054:0 OS-10057:0 OS-10058:0 OS-10060:0 OS-10066:0 OS-10068:0 OS-10073:0 OS-10073-10152:0 OS-10098:0 OS-10096:0 OS-10088:0 OS-10188:0 OS-10123:0 OS-10146:0 OS-10147:0 OS-10149:0 OS-10149-10041:0 OS-10149-10042:0 OS-10149-10056:0 OS-10149-10096:0 OS-10149-10136:0 OS-10149-10148:0 OS-10149-10152:0 OS-10149-10164:0 OS-10150:0 OS-10152:0 OS-10164:0 OS-10165:0 OS-10165-10041:0 OS-10165-10042:0 OS-10165-10056:0 OS-10165-10096:0 OS-10165-10136:0 OS-10165-10152:0 OS-10165-10166:0 OS-10165-10167:0 OS-10165-10168:0 OS-10165-10174:0 OS-10165-10175:0 OS-10165-10179:0 OS-10165-10185:0 OS-10165-10188:0 OS-10165-10193:0 OS-10165-10196:0 OS-10165-10202:0 OS-10166:0 OS-10167:0 OS-10168:0 OS-10179:0 OS-10172:0 OS-10175:0 OS-10174:0 OS-10185:0 OS-10193:0 OS-10196:0 OS-10197:0 OS-10200:0 OS-10201:0 OS-10202:0 OS-10207:0 OS-10205:0 OS-10206:0 OS-10209:0 OS-10210:0 OS-10236:0 OS-10237:0 OS-10235:0 OS-10123:0 OS-10148:0 connected-to-cisco2c:0.0 connected-to-cisco8:0.0 connected-to-cisco18:0.0 poweroff:0.9 -
> node LabNode12 NetworkConnection:1 pc:1 - CSTAR:1 OS-10100:0 connected-to-cisco21:0.0 -
> node pc1 Penguin1U:1 pc:1 delay:2 delay-Penguin1U:2 - ?+disk_any:53700 ?+disk_sysvol:53700 ?+disk_nonsysvol:0 Penguin1U:0.9 OS-10001:0 OS-10002:0 OS-10003:0 OS-10013:0 OS-10017:0 OS-10132:0 OS-10028:0 OS-10135:0 OS-10145:0 OS-10038:0 OS-10039:0 OS-10041:0 OS-10042:0 OS-10047:0 OS-10055:0 OS-10051:0 OS-10049:0 OS-10056:0 OS-10136:0 OS-10053:0 OS-10054:0 OS-10057:0 OS-10058:0 OS-10060:0 OS-10066:0 OS-10068:0 OS-10073:0 OS-10073-10152:0 OS-10098:0 OS-10096:0 OS-10088:0 OS-10188:0 OS-10123:0 OS-10146:0 OS-10147:0 OS-10149:0 OS-10149-10041:0 OS-10149-10042:0 OS-10149-10056:0 OS-10149-10096:0 OS-10149-10136:0 OS-10149-10148:0 OS-10149-10152:0 OS-10149-10164:0 OS-10150:0 OS-10152:0 OS-10164:0 OS-10165:0 OS-10165-10041:0 OS-10165-10042:0 OS-10165-10056:0 OS-10165-10096:0 OS-10165-10136:0 OS-10165-10152:0 OS-10165-10166:0 OS-10165-10167:0 OS-10165-10168:0 OS-10165-10174:0 OS-10165-10175:0 OS-10165-10179:0 OS-10165-10185:0 OS-10165-10188:0 OS-10165-10193:0 OS-10165-10196:0 OS-10165-10202:0 OS-10166:0 OS-10167:0 OS-10168:0 OS-10179:0 OS-10172:0 OS-10175:0 OS-10174:0 OS-10185:0 OS-10193:0 OS-10196:0 OS-10197:0 OS-10200:0 OS-10201:0 OS-10202:0 OS-10235:0 OS-10017:0 OS-10000:0 OS-10005:0 OS-10008:0 OS-10009:0 OS-10012:0 OS-10148:0 connected-to-cisco1:0.0 connected-to-cisco2:0.0 poweroff:0.9 -
> node pc39 HPDL360:1 pc:1 delay:4 delay-HPDL360:4 - ?+disk_any:46900 ?+disk_sysvol:46900 ?+disk_nonsysvol:0 HPDL360:0.1 badnic:0.9 OS-10017:0 OS-10132:0 OS-10028:0 OS-10135:0 OS-10145:0 OS-10039:0 OS-10041:0 OS-10042:0 OS-10047:0 OS-10055:0 OS-10051:0 OS-10049:0 OS-10056:0 OS-10136:0 OS-10053:0 OS-10054:0 OS-10057:0 OS-10058:0 OS-10060:0 OS-10066:0 OS-10068:0 OS-10073:0 OS-10073-10152:0 OS-10098:0 OS-10096:0 OS-10088:0 OS-10188:0 OS-10123:0 OS-10146:0 OS-10147:0 OS-10149:0 OS-10149-10041:0 OS-10149-10042:0 OS-10149-10056:0 OS-10149-10096:0 OS-10149-10136:0 OS-10149-10148:0 OS-10149-10152:0 OS-10149-10164:0 OS-10150:0 OS-10152:0 OS-10164:0 OS-10165:0 OS-10165-10041:0 OS-10165-10042:0 OS-10165-10056:0 OS-10165-10096:0 OS-10165-10136:0 OS-10165-10152:0 OS-10165-10166:0 OS-10165-10167:0 OS-10165-10168:0 OS-10165-10174:0 OS-10165-10175:0 OS-10165-10179:0 OS-10165-10185:0 OS-10165-10188:0 OS-10165-10193:0 OS-10165-10196:0 OS-10165-10202:0 OS-10166:0 OS-10167:0 OS-10168:0 OS-10179:0 OS-10172:0 OS-10175:0 OS-10174:0 OS-10185:0 OS-10193:0 OS-10196:0 OS-10197:0 OS-10200:0 OS-10201:0 OS-10202:0 OS-10207:0 OS-10205:0 OS-10206:0 OS-10209:0 OS-10210:0 OS-10236:0 OS-10237:0 OS-10235:0 OS-10123:0 OS-10148:0 connected-to-cisco10:0.0 connected-to-cisco18:0.0 connected-to-cisco2c:0.0 poweroff:0.9 -
> node ciscoR602 RouterCisco3825:1 pc:1 - router:1 OS-10100:0 connected-to-cisco6:0.0 poweroff:0.9 -
> node pc56 HPdc7700:1 pc:1 - ?+disk_any:130000 ?+disk_sysvol:130000 ?+disk_nonsysvol:0 HPdc7700:0.1 OS-10017:0 OS-10132:0 OS-10028:0 OS-10135:0 OS-10145:0 OS-10039:0 OS-10041:0 OS-10042:0 OS-10047:0 OS-10055:0 OS-10056:0 OS-10136:0 OS-10053:0 OS-10054:0 OS-10057:0 OS-10058:0 OS-10060:0 OS-10066:0 OS-10068:0 OS-10098:0 OS-10096:0 OS-10088:0 OS-10188:0 OS-10123:0 OS-10146:0 OS-10147:0 OS-10149:0 OS-10149-10041:0 OS-10149-10042:0 OS-10149-10056:0 OS-10149-10096:0 OS-10149-10136:0 OS-10149-10148:0 OS-10149-10152:0 OS-10149-10164:0 OS-10150:0 OS-10152:0 OS-10164:0 OS-10165:0 OS-10165-10041:0 OS-10165-10042:0 OS-10165-10056:0 OS-10165-10096:0 OS-10165-10136:0 OS-10165-10152:0 OS-10165-10166:0 OS-10165-10167:0 OS-10165-10168:0 OS-10165-10174:0 OS-10165-10175:0 OS-10165-10179:0 OS-10165-10185:0 OS-10165-10188:0 OS-10165-10193:0 OS-10165-10196:0 OS-10165-10202:0 OS-10166:0 OS-10167:0 OS-10168:0 OS-10179:0 OS-10172:0 OS-10175:0 OS-10174:0 OS-10185:0 OS-10193:0 OS-10196:0 OS-10197:0 OS-10200:0 OS-10201:0 OS-10202:0 OS-10207:0 OS-10205:0 OS-10206:0 OS-10209:0 OS-10210:0 OS-10236:0 OS-10237:0 OS-10235:0 OS-10017:0 OS-10148:0 connected-to-cisco11:0.0 connected-to-cisco16:0.0 connected-to-cisco2f:0.0 poweroff:0.9 -
> node ciscoR605 RouterCisco3745:1 pc:1 - router:1 OS-10100:0 connected-to-cisco4:0.0 poweroff:0.9 -
> node pc37 HPDL360:1 pc:1 delay:4 delay-HPDL360:4 - ?+disk_any:46900 ?+disk_sysvol:46900 ?+disk_nonsysvol:0 HPDL360:0.1 badnic:0.9 OS-10017:0 OS-10132:0 OS-10028:0 OS-10135:0 OS-10145:0 OS-10039:0 OS-10041:0 OS-10042:0 OS-10047:0 OS-10055:0 OS-10051:0 OS-10049:0 OS-10056:0 OS-10136:0 OS-10053:0 OS-10054:0 OS-10057:0 OS-10058:0 OS-10060:0 OS-10066:0 OS-10068:0 OS-10073:0 OS-10073-10152:0 OS-10098:0 OS-10096:0 OS-10088:0 OS-10188:0 OS-10123:0 OS-10146:0 OS-10147:0 OS-10149:0 OS-10149-10041:0 OS-10149-10042:0 OS-10149-10056:0 OS-10149-10096:0 OS-10149-10136:0 OS-10149-10148:0 OS-10149-10152:0 OS-10149-10164:0 OS-10150:0 OS-10152:0 OS-10164:0 OS-10165:0 OS-10165-10041:0 OS-10165-10042:0 OS-10165-10056:0 OS-10165-10096:0 OS-10165-10136:0 OS-10165-10152:0 OS-10165-10166:0 OS-10165-10167:0 OS-10165-10168:0 OS-10165-10174:0 OS-10165-10175:0 OS-10165-10179:0 OS-10165-10185:0 OS-10165-10188:0 OS-10165-10193:0 OS-10165-10196:0 OS-10165-10202:0 OS-10166:0 OS-10167:0 OS-10168:0 OS-10179:0 OS-10172:0 OS-10175:0 OS-10174:0 OS-10185:0 OS-10193:0 OS-10196:0 OS-10197:0 OS-10200:0 OS-10201:0 OS-10202:0 OS-10207:0 OS-10205:0 OS-10206:0 OS-10209:0 OS-10210:0 OS-10236:0 OS-10237:0 OS-10235:0 OS-10123:0 OS-10148:0 connected-to-cisco10:0.0 connected-to-cisco18:0.0 connected-to-cisco2c:0.0 poweroff:0.9 -
> node pc38 HPDL360:1 pc:1 delay:4 delay-HPDL360:4 - ?+disk_any:46900 ?+disk_sysvol:46900 ?+disk_nonsysvol:0 HPDL360:0.1 OS-10017:0 OS-10132:0 OS-10028:0 OS-10135:0 OS-10145:0 OS-10039:0 OS-10041:0 OS-10042:0 OS-10047:0 OS-10055:0 OS-10051:0 OS-10049:0 OS-10056:0 OS-10136:0 OS-10053:0 OS-10054:0 OS-10057:0 OS-10058:0 OS-10060:0 OS-10066:0 OS-10068:0 OS-10073:0 OS-10073-10152:0 OS-10098:0 OS-10096:0 OS-10088:0 OS-10188:0 OS-10123:0 OS-10146:0 OS-10147:0 OS-10149:0 OS-10149-10041:0 OS-10149-10042:0 OS-10149-10056:0 OS-10149-10096:0 OS-10149-10136:0 OS-10149-10148:0 OS-10149-10152:0 OS-10149-10164:0 OS-10150:0 OS-10152:0 OS-10164:0 OS-10165:0 OS-10165-10041:0 OS-10165-10042:0 OS-10165-10056:0 OS-10165-10096:0 OS-10165-10136:0 OS-10165-10152:0 OS-10165-10166:0 OS-10165-10167:0 OS-10165-10168:0 OS-10165-10174:0 OS-10165-10175:0 OS-10165-10179:0 OS-10165-10185:0 OS-10165-10188:0 OS-10165-10193:0 OS-10165-10196:0 OS-10165-10202:0 OS-10166:0 OS-10167:0 OS-10168:0 OS-10179:0 OS-10172:0 OS-10175:0 OS-10174:0 OS-10185:0 OS-10193:0 OS-10196:0 OS-10197:0 OS-10200:0 OS-10201:0 OS-10202:0 OS-10207:0 OS-10205:0 OS-10206:0 OS-10209:0 OS-10210:0 OS-10236:0 OS-10237:0 OS-10235:0 OS-10123:0 OS-10148:0 connected-to-cisco10:0.0 connected-to-cisco18:0.0 connected-to-cisco2c:0.0 poweroff:0.9 -
> node ciscoR604 RouterCisco2811:1 pc:1 - router:1 OS-10100:0 connected-to-cisco7:0.0 poweroff:0.9 -
> node pc60 HPdc7700:1 pc:1 - ?+disk_any:130000 ?+disk_sysvol:130000 ?+disk_nonsysvol:0 HPdc7700:0.1 OS-10017:0 OS-10132:0 OS-10028:0 OS-10135:0 OS-10145:0 OS-10039:0 OS-10041:0 OS-10042:0 OS-10047:0 OS-10055:0 OS-10056:0 OS-10136:0 OS-10053:0 OS-10054:0 OS-10057:0 OS-10058:0 OS-10060:0 OS-10066:0 OS-10068:0 OS-10098:0 OS-10096:0 OS-10088:0 OS-10188:0 OS-10123:0 OS-10146:0 OS-10147:0 OS-10149:0 OS-10149-10041:0 OS-10149-10042:0 OS-10149-10056:0 OS-10149-10096:0 OS-10149-10136:0 OS-10149-10148:0 OS-10149-10152:0 OS-10149-10164:0 OS-10150:0 OS-10152:0 OS-10164:0 OS-10165:0 OS-10165-10041:0 OS-10165-10042:0 OS-10165-10056:0 OS-10165-10096:0 OS-10165-10136:0 OS-10165-10152:0 OS-10165-10166:0 OS-10165-10167:0 OS-10165-10168:0 OS-10165-10174:0 OS-10165-10175:0 OS-10165-10179:0 OS-10165-10185:0 OS-10165-10188:0 OS-10165-10193:0 OS-10165-10196:0 OS-10165-10202:0 OS-10166:0 OS-10167:0 OS-10168:0 OS-10179:0 OS-10172:0 OS-10175:0 OS-10174:0 OS-10185:0 OS-10193:0 OS-10196:0 OS-10197:0 OS-10200:0 OS-10201:0 OS-10202:0 OS-10207:0 OS-10205:0 OS-10206:0 OS-10209:0 OS-10210:0 OS-10236:0 OS-10237:0 OS-10235:0 OS-10017:0 OS-10148:0 connected-to-cisco16:0.0 connected-to-cisco2f:0.0 poweroff:0.9 -
> node LabNode2 NetworkConnection:1 pc:1 - CSTAR:1 OS-10100:0 connected-to-cisco21:0.0 -
> node pc52 HPdc7700:1 pc:1 - ?+disk_any:130000 ?+disk_sysvol:130000 ?+disk_nonsysvol:0 HPdc7700:0.1 OS-10017:0 OS-10132:0 OS-10028:0 OS-10135:0 OS-10145:0 OS-10039:0 OS-10041:0 OS-10042:0 OS-10047:0 OS-10055:0 OS-10056:0 OS-10136:0 OS-10053:0 OS-10054:0 OS-10057:0 OS-10058:0 OS-10060:0 OS-10066:0 OS-10068:0 OS-10098:0 OS-10096:0 OS-10088:0 OS-10188:0 OS-10123:0 OS-10146:0 OS-10147:0 OS-10149:0 OS-10149-10041:0 OS-10149-10042:0 OS-10149-10056:0 OS-10149-10096:0 OS-10149-10136:0 OS-10149-10148:0 OS-10149-10152:0 OS-10149-10164:0 OS-10150:0 OS-10152:0 OS-10164:0 OS-10165:0 OS-10165-10041:0 OS-10165-10042:0 OS-10165-10056:0 OS-10165-10096:0 OS-10165-10136:0 OS-10165-10152:0 OS-10165-10166:0 OS-10165-10167:0 OS-10165-10168:0 OS-10165-10174:0 OS-10165-10175:0 OS-10165-10179:0 OS-10165-10185:0 OS-10165-10188:0 OS-10165-10193:0 OS-10165-10196:0 OS-10165-10202:0 OS-10166:0 OS-10167:0 OS-10168:0 OS-10179:0 OS-10172:0 OS-10175:0 OS-10174:0 OS-10185:0 OS-10193:0 OS-10196:0 OS-10197:0 OS-10200:0 OS-10201:0 OS-10202:0 OS-10207:0 OS-10205:0 OS-10206:0 OS-10209:0 OS-10210:0 OS-10236:0 OS-10237:0 OS-10235:0 OS-10017:0 OS-10148:0 connected-to-cisco2f:0.0 connected-to-cisco11:0.0 connected-to-cisco16:0.0 poweroff:0.9 -
> node pc64 Dell_E6550:1 pc:1 delay:2 delay-Dell_E6550:2 - ?+disk_any:53700 ?+disk_sysvol:53700 ?+disk_nonsysvol:0 Dell_E6550:0.1 OS-10017:0 OS-10132:0 OS-10145:0 OS-10039:0 OS-10041:0 OS-10042:0 OS-10047:0 OS-10057:0 OS-10060:0 OS-10068:0 OS-10073:0 OS-10073-10152:0 OS-10098:0 OS-10088:0 OS-10188:0 OS-10123:0 OS-10146:0 OS-10147:0 OS-10149:0 OS-10149-10041:0 OS-10149-10042:0 OS-10149-10056:0 OS-10149-10096:0 OS-10149-10136:0 OS-10149-10148:0 OS-10149-10152:0 OS-10149-10164:0 OS-10150:0 OS-10152:0 OS-10164:0 OS-10165:0 OS-10165-10041:0 OS-10165-10042:0 OS-10165-10056:0 OS-10165-10096:0 OS-10165-10136:0 OS-10165-10152:0 OS-10165-10166:0 OS-10165-10167:0 OS-10165-10168:0 OS-10165-10174:0 OS-10165-10175:0 OS-10165-10179:0 OS-10165-10185:0 OS-10165-10188:0 OS-10165-10193:0 OS-10165-10196:0 OS-10165-10202:0 OS-10166:0 OS-10167:0 OS-10168:0 OS-10179:0 OS-10172:0 OS-10175:0 OS-10174:0 OS-10185:0 OS-10193:0 OS-10196:0 OS-10197:0 OS-10200:0 OS-10201:0 OS-10202:0 OS-10207:0 OS-10205:0 OS-10206:0 OS-10209:0 OS-10210:0 OS-10236:0 OS-10237:0 OS-10235:0 OS-10146:0 OS-10148:0 connected-to-cisco17:0.0 connected-to-cisco15:0.0 connected-to-cisco2e:0.0 poweroff:0.9 -
> node LabNode3 NetworkConnection:1 pc:1 - CSTAR:1 OS-10100:0 connected-to-cisco21:0.0 -
> node pc61 PolywellAtom:1 pc:1 delay:2 delay-PolywellAtom:2 - ?+disk_any:8000 ?+disk_sysvol:8000 ?+disk_nonsysvol:0 PolywellAtom:0.5 OS-10017:0 OS-10132:0 OS-10135:0 OS-10145:0 OS-10039:0 OS-10041:0 OS-10042:0 OS-10047:0 OS-10136:0 OS-10053:0 OS-10054:0 OS-10057:0 OS-10060:0 OS-10068:0 OS-10073:0 OS-10073-10152:0 OS-10098:0 OS-10096:0 OS-10088:0 OS-10123:0 OS-10146:0 OS-10147:0 OS-10149:0 OS-10149-10041:0 OS-10149-10042:0 OS-10149-10056:0 OS-10149-10096:0 OS-10149-10136:0 OS-10149-10148:0 OS-10149-10152:0 OS-10149-10164:0 OS-10150:0 OS-10152:0 OS-10164:0 OS-10165:0 OS-10165-10041:0 OS-10165-10042:0 OS-10165-10056:0 OS-10165-10096:0 OS-10165-10136:0 OS-10165-10152:0 OS-10165-10166:0 OS-10165-10167:0 OS-10165-10168:0 OS-10165-10174:0 OS-10165-10175:0 OS-10165-10179:0 OS-10165-10185:0 OS-10165-10188:0 OS-10165-10193:0 OS-10165-10196:0 OS-10165-10202:0 OS-10166:0 OS-10167:0 OS-10168:0 OS-10179:0 OS-10172:0 OS-10175:0 OS-10174:0 OS-10185:0 OS-10193:0 OS-10196:0 OS-10197:0 OS-10200:0 OS-10201:0 OS-10202:0 OS-10207:0 OS-10205:0 OS-10206:0 OS-10209:0 OS-10210:0 OS-10236:0 OS-10237:0 OS-10235:0 OS-10017:0 OS-10148:0 connected-to-cisco13:0.0 connected-to-cisco15:0.0 connected-to-cisco2e:0.0 poweroff:0.9 -
> node ciscoR603 RouterCisco2811:1 pc:1 - router:1 OS-10100:0 connected-to-cisco8:0.0 poweroff:0.9 -
> node pc35 Rackable1U:1 pc:1 delay:3 delay-Rackable1U:3 - ?+disk_any:55600 ?+disk_sysvol:55600 ?+disk_nonsysvol:0 Rackable1U:0.1 OS-10003:0 OS-10013:0 OS-10017:0 OS-10132:0 OS-10028:0 OS-10033:0 OS-10047:0 OS-10051:0 OS-10056:0 OS-10136:0 OS-10053:0 OS-10058:0 OS-10060:0 OS-10066:0 OS-10068:0 OS-10098:0 OS-10096:0 OS-10088:0 OS-10123:0 OS-10147:0 OS-10179:0 OS-10172:0 OS-10185:0 OS-10193:0 OS-10123:0 OS-10000:0 OS-10005:0 OS-10012:0 connected-to-cisco7:0.0 connected-to-cisco2b:0.0 poweroff:0.9 -
> node pc65 Dell_E6550:1 pc:1 delay:2 delay-Dell_E6550:2 - ?+disk_any:53700 ?+disk_sysvol:53700 ?+disk_nonsysvol:0 Dell_E6550:0.1 OS-10017:0 OS-10132:0 OS-10145:0 OS-10039:0 OS-10041:0 OS-10042:0 OS-10047:0 OS-10057:0 OS-10060:0 OS-10068:0 OS-10073:0 OS-10073-10152:0 OS-10098:0 OS-10088:0 OS-10188:0 OS-10123:0 OS-10146:0 OS-10147:0 OS-10149:0 OS-10149-10041:0 OS-10149-10042:0 OS-10149-10056:0 OS-10149-10096:0 OS-10149-10136:0 OS-10149-10148:0 OS-10149-10152:0 OS-10149-10164:0 OS-10150:0 OS-10152:0 OS-10164:0 OS-10165:0 OS-10165-10041:0 OS-10165-10042:0 OS-10165-10056:0 OS-10165-10096:0 OS-10165-10136:0 OS-10165-10152:0 OS-10165-10166:0 OS-10165-10167:0 OS-10165-10168:0 OS-10165-10174:0 OS-10165-10175:0 OS-10165-10179:0 OS-10165-10185:0 OS-10165-10188:0 OS-10165-10193:0 OS-10165-10196:0 OS-10165-10202:0 OS-10166:0 OS-10167:0 OS-10168:0 OS-10179:0 OS-10172:0 OS-10175:0 OS-10174:0 OS-10185:0 OS-10193:0 OS-10196:0 OS-10197:0 OS-10200:0 OS-10201:0 OS-10202:0 OS-10207:0 OS-10205:0 OS-10206:0 OS-10209:0 OS-10210:0 OS-10236:0 OS-10237:0 OS-10235:0 OS-10146:0 OS-10148:0 connected-to-cisco17:0.0 connected-to-cisco15:0.0 connected-to-cisco2e:0.0 poweroff:0.9 -
> node pc68 Dell_E6550:1 pc:1 delay:2 delay-Dell_E6550:2 - ?+disk_any:53700 ?+disk_sysvol:53700 ?+disk_nonsysvol:0 Dell_E6550:0.1 OS-10017:0 OS-10132:0 OS-10145:0 OS-10039:0 OS-10041:0 OS-10042:0 OS-10047:0 OS-10057:0 OS-10060:0 OS-10068:0 OS-10073:0 OS-10073-10152:0 OS-10098:0 OS-10088:0 OS-10188:0 OS-10123:0 OS-10146:0 OS-10147:0 OS-10149:0 OS-10149-10041:0 OS-10149-10042:0 OS-10149-10056:0 OS-10149-10096:0 OS-10149-10136:0 OS-10149-10148:0 OS-10149-10152:0 OS-10149-10164:0 OS-10150:0 OS-10152:0 OS-10164:0 OS-10165:0 OS-10165-10041:0 OS-10165-10042:0 OS-10165-10056:0 OS-10165-10096:0 OS-10165-10136:0 OS-10165-10152:0 OS-10165-10166:0 OS-10165-10167:0 OS-10165-10168:0 OS-10165-10174:0 OS-10165-10175:0 OS-10165-10179:0 OS-10165-10185:0 OS-10165-10188:0 OS-10165-10193:0 OS-10165-10196:0 OS-10165-10202:0 OS-10166:0 OS-10167:0 OS-10168:0 OS-10179:0 OS-10172:0 OS-10175:0 OS-10174:0 OS-10185:0 OS-10193:0 OS-10196:0 OS-10197:0 OS-10200:0 OS-10201:0 OS-10202:0 OS-10207:0 OS-10205:0 OS-10206:0 OS-10209:0 OS-10210:0 OS-10236:0 OS-10237:0 OS-10235:0 OS-10146:0 OS-10148:0 connected-to-cisco17:0.0 connected-to-cisco15:0.0 connected-to-cisco2e:0.0 poweroff:0.9 -
> node pc47 HPDL360:1 pc:1 delay:4 delay-HPDL360:4 - ?+disk_any:46900 ?+disk_sysvol:46900 ?+disk_nonsysvol:0 HPDL360:0.1 OS-10017:0 OS-10132:0 OS-10028:0 OS-10135:0 OS-10145:0 OS-10039:0 OS-10041:0 OS-10042:0 OS-10047:0 OS-10055:0 OS-10051:0 OS-10049:0 OS-10056:0 OS-10136:0 OS-10053:0 OS-10054:0 OS-10057:0 OS-10058:0 OS-10060:0 OS-10066:0 OS-10068:0 OS-10073:0 OS-10073-10152:0 OS-10098:0 OS-10096:0 OS-10088:0 OS-10188:0 OS-10123:0 OS-10146:0 OS-10147:0 OS-10149:0 OS-10149-10041:0 OS-10149-10042:0 OS-10149-10056:0 OS-10149-10096:0 OS-10149-10136:0 OS-10149-10148:0 OS-10149-10152:0 OS-10149-10164:0 OS-10150:0 OS-10152:0 OS-10164:0 OS-10165:0 OS-10165-10041:0 OS-10165-10042:0 OS-10165-10056:0 OS-10165-10096:0 OS-10165-10136:0 OS-10165-10152:0 OS-10165-10166:0 OS-10165-10167:0 OS-10165-10168:0 OS-10165-10174:0 OS-10165-10175:0 OS-10165-10179:0 OS-10165-10185:0 OS-10165-10188:0 OS-10165-10193:0 OS-10165-10196:0 OS-10165-10202:0 OS-10166:0 OS-10167:0 OS-10168:0 OS-10179:0 OS-10172:0 OS-10175:0 OS-10174:0 OS-10185:0 OS-10193:0 OS-10196:0 OS-10197:0 OS-10200:0 OS-10201:0 OS-10202:0 OS-10207:0 OS-10205:0 OS-10206:0 OS-10209:0 OS-10210:0 OS-10236:0 OS-10237:0 OS-10235:0 OS-10123:0 OS-10148:0 connected-to-cisco8:0.0 connected-to-cisco18:0.0 connected-to-cisco2c:0.0 poweroff:0.9 -
> node pc75 PolywellAtom:1 pc:1 delay:2 delay-PolywellAtom:2 - ?+disk_any:8000 ?+disk_sysvol:8000 ?+disk_nonsysvol:0 PolywellAtom:0.5 OS-10017:0 OS-10132:0 OS-10135:0 OS-10145:0 OS-10039:0 OS-10041:0 OS-10042:0 OS-10047:0 OS-10136:0 OS-10053:0 OS-10054:0 OS-10057:0 OS-10060:0 OS-10068:0 OS-10073:0 OS-10073-10152:0 OS-10098:0 OS-10096:0 OS-10088:0 OS-10123:0 OS-10146:0 OS-10147:0 OS-10149:0 OS-10149-10041:0 OS-10149-10042:0 OS-10149-10056:0 OS-10149-10096:0 OS-10149-10136:0 OS-10149-10148:0 OS-10149-10152:0 OS-10149-10164:0 OS-10150:0 OS-10152:0 OS-10164:0 OS-10165:0 OS-10165-10041:0 OS-10165-10042:0 OS-10165-10056:0 OS-10165-10096:0 OS-10165-10136:0 OS-10165-10152:0 OS-10165-10166:0 OS-10165-10167:0 OS-10165-10168:0 OS-10165-10174:0 OS-10165-10175:0 OS-10165-10179:0 OS-10165-10185:0 OS-10165-10188:0 OS-10165-10193:0 OS-10165-10196:0 OS-10165-10202:0 OS-10166:0 OS-10167:0 OS-10168:0 OS-10179:0 OS-10172:0 OS-10175:0 OS-10174:0 OS-10185:0 OS-10193:0 OS-10196:0 OS-10197:0 OS-10200:0 OS-10201:0 OS-10202:0 OS-10207:0 OS-10205:0 OS-10206:0 OS-10209:0 OS-10210:0 OS-10236:0 OS-10237:0 OS-10235:0 OS-10017:0 OS-10148:0 connected-to-cisco13:0.0 connected-to-cisco15:0.0 connected-to-cisco2e:0.0 poweroff:0.9 -
> node pc50 HPdc7700:1 pc:1 - ?+disk_any:130000 ?+disk_sysvol:130000 ?+disk_nonsysvol:0 HPdc7700:0.1 OS-10017:0 OS-10132:0 OS-10028:0 OS-10135:0 OS-10145:0 OS-10039:0 OS-10041:0 OS-10042:0 OS-10047:0 OS-10055:0 OS-10056:0 OS-10136:0 OS-10053:0 OS-10054:0 OS-10057:0 OS-10058:0 OS-10060:0 OS-10066:0 OS-10068:0 OS-10098:0 OS-10096:0 OS-10088:0 OS-10188:0 OS-10123:0 OS-10146:0 OS-10147:0 OS-10149:0 OS-10149-10041:0 OS-10149-10042:0 OS-10149-10056:0 OS-10149-10096:0 OS-10149-10136:0 OS-10149-10148:0 OS-10149-10152:0 OS-10149-10164:0 OS-10150:0 OS-10152:0 OS-10164:0 OS-10165:0 OS-10165-10041:0 OS-10165-10042:0 OS-10165-10056:0 OS-10165-10096:0 OS-10165-10136:0 OS-10165-10152:0 OS-10165-10166:0 OS-10165-10167:0 OS-10165-10168:0 OS-10165-10174:0 OS-10165-10175:0 OS-10165-10179:0 OS-10165-10185:0 OS-10165-10188:0 OS-10165-10193:0 OS-10165-10196:0 OS-10165-10202:0 OS-10166:0 OS-10167:0 OS-10168:0 OS-10179:0 OS-10172:0 OS-10175:0 OS-10174:0 OS-10185:0 OS-10193:0 OS-10196:0 OS-10197:0 OS-10200:0 OS-10201:0 OS-10202:0 OS-10207:0 OS-10205:0 OS-10206:0 OS-10209:0 OS-10210:0 OS-10236:0 OS-10237:0 OS-10235:0 OS-10017:0 OS-10148:0 connected-to-cisco11:0.0 connected-to-cisco2f:0.0 connected-to-cisco16:0.0 poweroff:0.9 -
> node pc57 HPdc7700:1 pc:1 - ?+disk_any:130000 ?+disk_sysvol:130000 ?+disk_nonsysvol:0 HPdc7700:0.1 OS-10017:0 OS-10132:0 OS-10028:0 OS-10135:0 OS-10145:0 OS-10039:0 OS-10041:0 OS-10042:0 OS-10047:0 OS-10055:0 OS-10056:0 OS-10136:0 OS-10053:0 OS-10054:0 OS-10057:0 OS-10058:0 OS-10060:0 OS-10066:0 OS-10068:0 OS-10098:0 OS-10096:0 OS-10088:0 OS-10188:0 OS-10123:0 OS-10146:0 OS-10147:0 OS-10149:0 OS-10149-10041:0 OS-10149-10042:0 OS-10149-10056:0 OS-10149-10096:0 OS-10149-10136:0 OS-10149-10148:0 OS-10149-10152:0 OS-10149-10164:0 OS-10150:0 OS-10152:0 OS-10164:0 OS-10165:0 OS-10165-10041:0 OS-10165-10042:0 OS-10165-10056:0 OS-10165-10096:0 OS-10165-10136:0 OS-10165-10152:0 OS-10165-10166:0 OS-10165-10167:0 OS-10165-10168:0 OS-10165-10174:0 OS-10165-10175:0 OS-10165-10179:0 OS-10165-10185:0 OS-10165-10188:0 OS-10165-10193:0 OS-10165-10196:0 OS-10165-10202:0 OS-10166:0 OS-10167:0 OS-10168:0 OS-10179:0 OS-10172:0 OS-10175:0 OS-10174:0 OS-10185:0 OS-10193:0 OS-10196:0 OS-10197:0 OS-10200:0 OS-10201:0 OS-10202:0 OS-10207:0 OS-10205:0 OS-10206:0 OS-10209:0 OS-10210:0 OS-10236:0 OS-10237:0 OS-10235:0 OS-10017:0 OS-10148:0 connected-to-cisco16:0.0 connected-to-cisco2f:0.0 poweroff:0.9 -
> node pc71 Dell_E6550:1 pc:1 delay:2 delay-Dell_E6550:2 - ?+disk_any:53700 ?+disk_sysvol:53700 ?+disk_nonsysvol:0 Dell_E6550:0.1 OS-10017:0 OS-10132:0 OS-10145:0 OS-10039:0 OS-10041:0 OS-10042:0 OS-10047:0 OS-10057:0 OS-10060:0 OS-10068:0 OS-10073:0 OS-10073-10152:0 OS-10098:0 OS-10088:0 OS-10188:0 OS-10123:0 OS-10146:0 OS-10147:0 OS-10149:0 OS-10149-10041:0 OS-10149-10042:0 OS-10149-10056:0 OS-10149-10096:0 OS-10149-10136:0 OS-10149-10148:0 OS-10149-10152:0 OS-10149-10164:0 OS-10150:0 OS-10152:0 OS-10164:0 OS-10165:0 OS-10165-10041:0 OS-10165-10042:0 OS-10165-10056:0 OS-10165-10096:0 OS-10165-10136:0 OS-10165-10152:0 OS-10165-10166:0 OS-10165-10167:0 OS-10165-10168:0 OS-10165-10174:0 OS-10165-10175:0 OS-10165-10179:0 OS-10165-10185:0 OS-10165-10188:0 OS-10165-10193:0 OS-10165-10196:0 OS-10165-10202:0 OS-10166:0 OS-10167:0 OS-10168:0 OS-10179:0 OS-10172:0 OS-10175:0 OS-10174:0 OS-10185:0 OS-10193:0 OS-10196:0 OS-10197:0 OS-10200:0 OS-10201:0 OS-10202:0 OS-10207:0 OS-10205:0 OS-10206:0 OS-10209:0 OS-10210:0 OS-10236:0 OS-10237:0 OS-10235:0 OS-10146:0 OS-10148:0 connected-to-cisco15:0.0 connected-to-cisco17:0.0 connected-to-cisco13:0.0 connected-to-cisco2e:0.0 poweroff:0.9 -
> node pc14 Rackable1U:1 pc:1 delay:3 delay-Rackable1U:3 - ?+disk_any:55600 ?+disk_sysvol:55600 ?+disk_nonsysvol:0 Rackable1U:0.1 OS-10003:0 OS-10013:0 OS-10017:0 OS-10132:0 OS-10028:0 OS-10033:0 OS-10047:0 OS-10051:0 OS-10056:0 OS-10136:0 OS-10053:0 OS-10058:0 OS-10060:0 OS-10066:0 OS-10068:0 OS-10098:0 OS-10096:0 OS-10088:0 OS-10123:0 OS-10147:0 OS-10179:0 OS-10172:0 OS-10185:0 OS-10193:0 OS-10123:0 OS-10000:0 OS-10005:0 OS-10012:0 connected-to-cisco5:0.0 connected-to-cisco2a:0.0 poweroff:0.9 -
> node pc42 HPDL360:1 pc:1 delay:4 delay-HPDL360:4 - ?+disk_any:46900 ?+disk_sysvol:46900 ?+disk_nonsysvol:0 HPDL360:0.1 OS-10017:0 OS-10132:0 OS-10028:0 OS-10135:0 OS-10145:0 OS-10039:0 OS-10041:0 OS-10042:0 OS-10047:0 OS-10055:0 OS-10051:0 OS-10049:0 OS-10056:0 OS-10136:0 OS-10053:0 OS-10054:0 OS-10057:0 OS-10058:0 OS-10060:0 OS-10066:0 OS-10068:0 OS-10073:0 OS-10073-10152:0 OS-10098:0 OS-10096:0 OS-10088:0 OS-10188:0 OS-10123:0 OS-10146:0 OS-10147:0 OS-10149:0 OS-10149-10041:0 OS-10149-10042:0 OS-10149-10056:0 OS-10149-10096:0 OS-10149-10136:0 OS-10149-10148:0 OS-10149-10152:0 OS-10149-10164:0 OS-10150:0 OS-10152:0 OS-10164:0 OS-10165:0 OS-10165-10041:0 OS-10165-10042:0 OS-10165-10056:0 OS-10165-10096:0 OS-10165-10136:0 OS-10165-10152:0 OS-10165-10166:0 OS-10165-10167:0 OS-10165-10168:0 OS-10165-10174:0 OS-10165-10175:0 OS-10165-10179:0 OS-10165-10185:0 OS-10165-10188:0 OS-10165-10193:0 OS-10165-10196:0 OS-10165-10202:0 OS-10166:0 OS-10167:0 OS-10168:0 OS-10179:0 OS-10172:0 OS-10175:0 OS-10174:0 OS-10185:0 OS-10193:0 OS-10196:0 OS-10197:0 OS-10200:0 OS-10201:0 OS-10202:0 OS-10207:0 OS-10205:0 OS-10206:0 OS-10209:0 OS-10210:0 OS-10236:0 OS-10237:0 OS-10235:0 OS-10123:0 OS-10148:0 connected-to-cisco9:0.0 connected-to-cisco18:0.0 connected-to-cisco2c:0.0 poweroff:0.9 -
> node pc16 Rackable1U:1 pc:1 delay:3 delay-Rackable1U:3 - ?+disk_any:55600 ?+disk_sysvol:55600 ?+disk_nonsysvol:0 Rackable1U:0.1 OS-10003:0 OS-10013:0 OS-10017:0 OS-10132:0 OS-10028:0 OS-10033:0 OS-10047:0 OS-10051:0 OS-10056:0 OS-10136:0 OS-10053:0 OS-10058:0 OS-10060:0 OS-10066:0 OS-10068:0 OS-10098:0 OS-10096:0 OS-10088:0 OS-10123:0 OS-10147:0 OS-10179:0 OS-10172:0 OS-10185:0 OS-10193:0 OS-10123:0 OS-10000:0 OS-10005:0 OS-10012:0 connected-to-cisco5:0.0 connected-to-cisco2a:0.0 poweroff:0.9 -
> node pc17 Rackable1U:1 pc:1 delay:3 delay-Rackable1U:3 - ?+disk_any:55600 ?+disk_sysvol:55600 ?+disk_nonsysvol:0 Rackable1U:0.1 OS-10003:0 OS-10013:0 OS-10017:0 OS-10132:0 OS-10028:0 OS-10033:0 OS-10047:0 OS-10051:0 OS-10056:0 OS-10136:0 OS-10053:0 OS-10058:0 OS-10060:0 OS-10066:0 OS-10068:0 OS-10098:0 OS-10096:0 OS-10088:0 OS-10123:0 OS-10147:0 OS-10179:0 OS-10172:0 OS-10185:0 OS-10193:0 OS-10123:0 OS-10000:0 OS-10005:0 OS-10012:0 connected-to-cisco5:0.0 connected-to-cisco2a:0.0 poweroff:0.9 -
> node pc36 Rackable1U:1 pc:1 delay:3 delay-Rackable1U:3 - ?+disk_any:55600 ?+disk_sysvol:55600 ?+disk_nonsysvol:0 Rackable1U:0.1 OS-10003:0 OS-10013:0 OS-10017:0 OS-10132:0 OS-10028:0 OS-10033:0 OS-10047:0 OS-10051:0 OS-10056:0 OS-10136:0 OS-10053:0 OS-10058:0 OS-10060:0 OS-10066:0 OS-10068:0 OS-10098:0 OS-10096:0 OS-10088:0 OS-10123:0 OS-10147:0 OS-10179:0 OS-10172:0 OS-10185:0 OS-10193:0 OS-10123:0 OS-10000:0 OS-10005:0 OS-10012:0 connected-to-cisco7:0.0 connected-to-cisco2b:0.0 poweroff:0.9 -
> node x-haipe502 HaipeViaSatIps250:1 pc:1 - haipe:1 OS-10100:0 connected-to-cisco7:0.0 -
> node x-haipe501 HaipeViaSatIps250:1 pc:1 - haipe:1 OS-10100:0 connected-to-cisco4:0.0 -
> node pc44 HPDL360:1 pc:1 delay:4 delay-HPDL360:4 - ?+disk_any:46900 ?+disk_sysvol:46900 ?+disk_nonsysvol:0 HPDL360:0.1 OS-10017:0 OS-10132:0 OS-10028:0 OS-10135:0 OS-10145:0 OS-10039:0 OS-10041:0 OS-10042:0 OS-10047:0 OS-10055:0 OS-10051:0 OS-10049:0 OS-10056:0 OS-10136:0 OS-10053:0 OS-10054:0 OS-10057:0 OS-10058:0 OS-10060:0 OS-10066:0 OS-10068:0 OS-10073:0 OS-10073-10152:0 OS-10098:0 OS-10096:0 OS-10088:0 OS-10188:0 OS-10123:0 OS-10146:0 OS-10147:0 OS-10149:0 OS-10149-10041:0 OS-10149-10042:0 OS-10149-10056:0 OS-10149-10096:0 OS-10149-10136:0 OS-10149-10148:0 OS-10149-10152:0 OS-10149-10164:0 OS-10150:0 OS-10152:0 OS-10164:0 OS-10165:0 OS-10165-10041:0 OS-10165-10042:0 OS-10165-10056:0 OS-10165-10096:0 OS-10165-10136:0 OS-10165-10152:0 OS-10165-10166:0 OS-10165-10167:0 OS-10165-10168:0 OS-10165-10174:0 OS-10165-10175:0 OS-10165-10179:0 OS-10165-10185:0 OS-10165-10188:0 OS-10165-10193:0 OS-10165-10196:0 OS-10165-10202:0 OS-10166:0 OS-10167:0 OS-10168:0 OS-10179:0 OS-10172:0 OS-10175:0 OS-10174:0 OS-10185:0 OS-10193:0 OS-10196:0 OS-10197:0 OS-10200:0 OS-10201:0 OS-10202:0 OS-10207:0 OS-10205:0 OS-10206:0 OS-10209:0 OS-10210:0 OS-10236:0 OS-10237:0 OS-10235:0 OS-10123:0 OS-10148:0 connected-to-cisco9:0.0 connected-to-cisco18:0.0 connected-to-cisco2c:0.0 poweroff:0.9 -
> node pc21 Rackable1U:1 pc:1 delay:3 delay-Rackable1U:3 - ?+disk_any:55600 ?+disk_sysvol:55600 ?+disk_nonsysvol:0 Rackable1U:0.1 OS-10003:0 OS-10013:0 OS-10017:0 OS-10132:0 OS-10028:0 OS-10033:0 OS-10047:0 OS-10051:0 OS-10056:0 OS-10136:0 OS-10053:0 OS-10058:0 OS-10060:0 OS-10066:0 OS-10068:0 OS-10098:0 OS-10096:0 OS-10088:0 OS-10123:0 OS-10147:0 OS-10179:0 OS-10172:0 OS-10185:0 OS-10193:0 OS-10123:0 OS-10000:0 OS-10005:0 OS-10012:0 connected-to-cisco5:0.0 connected-to-cisco2a:0.0 poweroff:0.9 -
> node LabNode1 NetworkConnection:1 pc:1 - CSTAR:1 OS-10100:0 connected-to-cisco21:0.0 -
> node LabNode11 NetworkConnection:1 pc:1 - CSTAR:1 OS-10100:0 connected-to-cisco21:0.0 -
> node ciscoR601 RouterCisco3725:1 pc:1 - router:1 OS-10100:0 connected-to-cisco4:0.0 poweroff:0.9 -
> node pc66 Dell_E6550:1 pc:1 delay:2 delay-Dell_E6550:2 - ?+disk_any:53700 ?+disk_sysvol:53700 ?+disk_nonsysvol:0 Dell_E6550:0.1 OS-10017:0 OS-10132:0 OS-10145:0 OS-10039:0 OS-10041:0 OS-10042:0 OS-10047:0 OS-10057:0 OS-10060:0 OS-10068:0 OS-10073:0 OS-10073-10152:0 OS-10098:0 OS-10088:0 OS-10188:0 OS-10123:0 OS-10146:0 OS-10147:0 OS-10149:0 OS-10149-10041:0 OS-10149-10042:0 OS-10149-10056:0 OS-10149-10096:0 OS-10149-10136:0 OS-10149-10148:0 OS-10149-10152:0 OS-10149-10164:0 OS-10150:0 OS-10152:0 OS-10164:0 OS-10165:0 OS-10165-10041:0 OS-10165-10042:0 OS-10165-10056:0 OS-10165-10096:0 OS-10165-10136:0 OS-10165-10152:0 OS-10165-10166:0 OS-10165-10167:0 OS-10165-10168:0 OS-10165-10174:0 OS-10165-10175:0 OS-10165-10179:0 OS-10165-10185:0 OS-10165-10188:0 OS-10165-10193:0 OS-10165-10196:0 OS-10165-10202:0 OS-10166:0 OS-10167:0 OS-10168:0 OS-10179:0 OS-10172:0 OS-10175:0 OS-10174:0 OS-10185:0 OS-10193:0 OS-10196:0 OS-10197:0 OS-10200:0 OS-10201:0 OS-10202:0 OS-10207:0 OS-10205:0 OS-10206:0 OS-10209:0 OS-10210:0 OS-10236:0 OS-10237:0 OS-10235:0 OS-10146:0 OS-10148:0 connected-to-cisco15:0.0 connected-to-cisco17:0.0 connected-to-cisco2e:0.0 poweroff:0.9 -
> node pc55 HPdc7700:1 pc:1 - ?+disk_any:130000 ?+disk_sysvol:130000 ?+disk_nonsysvol:0 HPdc7700:0.1 OS-10017:0 OS-10132:0 OS-10028:0 OS-10135:0 OS-10145:0 OS-10039:0 OS-10041:0 OS-10042:0 OS-10047:0 OS-10055:0 OS-10056:0 OS-10136:0 OS-10053:0 OS-10054:0 OS-10057:0 OS-10058:0 OS-10060:0 OS-10066:0 OS-10068:0 OS-10098:0 OS-10096:0 OS-10088:0 OS-10188:0 OS-10123:0 OS-10146:0 OS-10147:0 OS-10149:0 OS-10149-10041:0 OS-10149-10042:0 OS-10149-10056:0 OS-10149-10096:0 OS-10149-10136:0 OS-10149-10148:0 OS-10149-10152:0 OS-10149-10164:0 OS-10150:0 OS-10152:0 OS-10164:0 OS-10165:0 OS-10165-10041:0 OS-10165-10042:0 OS-10165-10056:0 OS-10165-10096:0 OS-10165-10136:0 OS-10165-10152:0 OS-10165-10166:0 OS-10165-10167:0 OS-10165-10168:0 OS-10165-10174:0 OS-10165-10175:0 OS-10165-10179:0 OS-10165-10185:0 OS-10165-10188:0 OS-10165-10193:0 OS-10165-10196:0 OS-10165-10202:0 OS-10166:0 OS-10167:0 OS-10168:0 OS-10179:0 OS-10172:0 OS-10175:0 OS-10174:0 OS-10185:0 OS-10193:0 OS-10196:0 OS-10197:0 OS-10200:0 OS-10201:0 OS-10202:0 OS-10207:0 OS-10205:0 OS-10206:0 OS-10209:0 OS-10210:0 OS-10236:0 OS-10237:0 OS-10235:0 OS-10017:0 OS-10148:0 connected-to-cisco11:0.0 connected-to-cisco2f:0.0 connected-to-cisco16:0.0 poweroff:0.9 -
> node EmulabWiFi RouterWiFi:1 pc:1 - router:1 OS-10100:0 connected-to-cisco8:0.0 -
> node pc74 Dell_E6550:1 pc:1 delay:2 delay-Dell_E6550:2 - ?+disk_any:53700 ?+disk_sysvol:53700 ?+disk_nonsysvol:0 Dell_E6550:0.1 OS-10017:0 OS-10132:0 OS-10145:0 OS-10039:0 OS-10041:0 OS-10042:0 OS-10047:0 OS-10057:0 OS-10060:0 OS-10068:0 OS-10073:0 OS-10073-10152:0 OS-10098:0 OS-10088:0 OS-10188:0 OS-10123:0 OS-10146:0 OS-10147:0 OS-10149:0 OS-10149-10041:0 OS-10149-10042:0 OS-10149-10056:0 OS-10149-10096:0 OS-10149-10136:0 OS-10149-10148:0 OS-10149-10152:0 OS-10149-10164:0 OS-10150:0 OS-10152:0 OS-10164:0 OS-10165:0 OS-10165-10041:0 OS-10165-10042:0 OS-10165-10056:0 OS-10165-10096:0 OS-10165-10136:0 OS-10165-10152:0 OS-10165-10166:0 OS-10165-10167:0 OS-10165-10168:0 OS-10165-10174:0 OS-10165-10175:0 OS-10165-10179:0 OS-10165-10185:0 OS-10165-10188:0 OS-10165-10193:0 OS-10165-10196:0 OS-10165-10202:0 OS-10166:0 OS-10167:0 OS-10168:0 OS-10179:0 OS-10172:0 OS-10175:0 OS-10174:0 OS-10185:0 OS-10193:0 OS-10196:0 OS-10197:0 OS-10200:0 OS-10201:0 OS-10202:0 OS-10207:0 OS-10205:0 OS-10206:0 OS-10209:0 OS-10210:0 OS-10236:0 OS-10237:0 OS-10235:0 OS-10146:0 OS-10148:0 connected-to-cisco17:0.0 connected-to-cisco15:0.0 connected-to-cisco13:0.0 connected-to-cisco2e:0.0 poweroff:0.9 -
> link link-pc1:eth5-cisco1:(null) pc1:pc1/eth5 cisco1:(null) 100000 0 0 1 ethernet ethernet-cisco1 ethernet-dc ethernet-100000
> link link-pc1:eth2-cisco1:(null) pc1:pc1/eth2 cisco1:(null) 100000 0 0 1 ethernet ethernet-cisco1 ethernet-dc ethernet-100000
> link link-pc1:eth3-cisco1:(null) pc1:pc1/eth3 cisco1:(null) 100000 0 0 1 ethernet ethernet-cisco1 ethernet-dc ethernet-100000
> link link-pc1:eth1-cisco1:(null) pc1:pc1/eth1 cisco1:(null) 100000 0 0 1 ethernet ethernet-cisco1 ethernet-bge ethernet-100000
> link link-pc1:eth4-cisco1:(null) pc1:pc1/eth4 cisco1:(null) 100000 0 0 1 ethernet ethernet-cisco1 ethernet-dc ethernet-100000
> link link-x-haipe504:eth0-cisco4:(null) x-haipe504:x-haipe504/eth0 cisco4:(null) 100000 0 0 1 ethernet ethernet-cisco4 ethernet-generic ethernet-100000
> link link-x-haipe504:eth1-cisco4:(null) x-haipe504:x-haipe504/eth1 cisco4:(null) 100000 0 0 1 ethernet ethernet-cisco4 ethernet-generic ethernet-100000
> link link-pc14:eth6-cisco5:(null) pc14:pc14/eth6 cisco5:(null) 100000 0 0 1 ethernet ethernet-cisco5 ethernet-fxp ethernet-100000
> link link-pc14:eth4-cisco5:(null) pc14:pc14/eth4 cisco5:(null) 100000 0 0 1 ethernet ethernet-cisco5 ethernet-dc ethernet-100000
> link link-pc14:eth1-cisco5:(null) pc14:pc14/eth1 cisco5:(null) 100000 0 0 1 ethernet ethernet-cisco5 ethernet-em ethernet-100000
> link link-pc14:eth3-cisco5:(null) pc14:pc14/eth3 cisco5:(null) 100000 0 0 1 ethernet ethernet-cisco5 ethernet-dc ethernet-100000
> link link-pc14:eth2-cisco5:(null) pc14:pc14/eth2 cisco5:(null) 100000 0 0 1 ethernet ethernet-cisco5 ethernet-dc ethernet-100000
> link link-pc14:eth5-cisco5:(null) pc14:pc14/eth5 cisco5:(null) 100000 0 0 1 ethernet ethernet-cisco5 ethernet-dc ethernet-100000
> link link-pc16:eth6-cisco5:(null) pc16:pc16/eth6 cisco5:(null) 100000 0 0 1 ethernet ethernet-cisco5 ethernet-fxp ethernet-100000
> link link-pc16:eth4-cisco5:(null) pc16:pc16/eth4 cisco5:(null) 100000 0 0 1 ethernet ethernet-cisco5 ethernet-dc ethernet-100000
> link link-pc16:eth1-cisco5:(null) pc16:pc16/eth1 cisco5:(null) 100000 0 0 1 ethernet ethernet-cisco5 ethernet-em ethernet-100000
> link link-pc16:eth3-cisco5:(null) pc16:pc16/eth3 cisco5:(null) 100000 0 0 1 ethernet ethernet-cisco5 ethernet-dc ethernet-100000
> link link-pc16:eth2-cisco5:(null) pc16:pc16/eth2 cisco5:(null) 100000 0 0 1 ethernet ethernet-cisco5 ethernet-dc ethernet-100000
> link link-pc16:eth5-cisco5:(null) pc16:pc16/eth5 cisco5:(null) 100000 0 0 1 ethernet ethernet-cisco5 ethernet-dc ethernet-100000
> link link-pc17:eth6-cisco5:(null) pc17:pc17/eth6 cisco5:(null) 100000 0 0 1 ethernet ethernet-cisco5 ethernet-fxp ethernet-100000
> link link-pc17:eth4-cisco5:(null) pc17:pc17/eth4 cisco5:(null) 100000 0 0 1 ethernet ethernet-cisco5 ethernet-dc ethernet-100000
> link link-pc17:eth1-cisco5:(null) pc17:pc17/eth1 cisco5:(null) 100000 0 0 1 ethernet ethernet-cisco5 ethernet-em ethernet-100000
> link link-pc17:eth3-cisco5:(null) pc17:pc17/eth3 cisco5:(null) 100000 0 0 1 ethernet ethernet-cisco5 ethernet-dc ethernet-100000
> link link-pc17:eth2-cisco5:(null) pc17:pc17/eth2 cisco5:(null) 100000 0 0 1 ethernet ethernet-cisco5 ethernet-dc ethernet-100000
> link link-pc17:eth5-cisco5:(null) pc17:pc17/eth5 cisco5:(null) 100000 0 0 1 ethernet ethernet-cisco5 ethernet-dc ethernet-100000
> link link-LabNode1:eth0-cisco21:(null) LabNode1:LabNode1/eth0 cisco21:(null) 100000 0 0 1 ethernet ethernet-cisco21 ethernet-generic ethernet-100000
> link link-LabNode2:eth0-cisco21:(null) LabNode2:LabNode2/eth0 cisco21:(null) 100000 0 0 1 ethernet ethernet-cisco21 ethernet-generic ethernet-100000
> link link-LabNode3:eth0-cisco21:(null) LabNode3:LabNode3/eth0 cisco21:(null) 100000 0 0 1 ethernet ethernet-cisco21 ethernet-generic ethernet-100000
> link link-pc19:eth6-cisco5:(null) pc19:pc19/eth6 cisco5:(null) 100000 0 0 1 ethernet ethernet-cisco5 ethernet-fxp ethernet-100000
> link link-pc19:eth4-cisco5:(null) pc19:pc19/eth4 cisco5:(null) 100000 0 0 1 ethernet ethernet-cisco5 ethernet-dc ethernet-100000
> link link-pc19:eth1-cisco5:(null) pc19:pc19/eth1 cisco5:(null) 100000 0 0 1 ethernet ethernet-cisco5 ethernet-em ethernet-100000
> link link-pc19:eth3-cisco5:(null) pc19:pc19/eth3 cisco5:(null) 100000 0 0 1 ethernet ethernet-cisco5 ethernet-dc ethernet-100000
> link link-pc19:eth2-cisco5:(null) pc19:pc19/eth2 cisco5:(null) 100000 0 0 1 ethernet ethernet-cisco5 ethernet-dc ethernet-100000
> link link-pc19:eth5-cisco5:(null) pc19:pc19/eth5 cisco5:(null) 100000 0 0 1 ethernet ethernet-cisco5 ethernet-dc ethernet-100000
> link link-pc21:eth6-cisco5:(null) pc21:pc21/eth6 cisco5:(null) 100000 0 0 1 ethernet ethernet-cisco5 ethernet-fxp ethernet-100000
> link link-pc21:eth4-cisco5:(null) pc21:pc21/eth4 cisco5:(null) 100000 0 0 1 ethernet ethernet-cisco5 ethernet-dc ethernet-100000
> link link-pc21:eth1-cisco5:(null) pc21:pc21/eth1 cisco5:(null) 100000 0 0 1 ethernet ethernet-cisco5 ethernet-em ethernet-100000
> link link-pc21:eth3-cisco5:(null) pc21:pc21/eth3 cisco5:(null) 100000 0 0 1 ethernet ethernet-cisco5 ethernet-dc ethernet-100000
> link link-pc21:eth2-cisco5:(null) pc21:pc21/eth2 cisco5:(null) 100000 0 0 1 ethernet ethernet-cisco5 ethernet-dc ethernet-100000
> link link-pc21:eth5-cisco5:(null) pc21:pc21/eth5 cisco5:(null) 100000 0 0 1 ethernet ethernet-cisco5 ethernet-dc ethernet-100000
> link link-pc22:eth6-cisco4:(null) pc22:pc22/eth6 cisco4:(null) 100000 0 0 1 ethernet ethernet-cisco4 ethernet-fxp ethernet-100000
> link link-pc22:eth4-cisco4:(null) pc22:pc22/eth4 cisco4:(null) 100000 0 0 1 ethernet ethernet-cisco4 ethernet-dc ethernet-100000
> link link-pc22:eth1-cisco4:(null) pc22:pc22/eth1 cisco4:(null) 100000 0 0 1 ethernet ethernet-cisco4 ethernet-em ethernet-100000
> link link-pc22:eth3-cisco4:(null) pc22:pc22/eth3 cisco4:(null) 100000 0 0 1 ethernet ethernet-cisco4 ethernet-dc ethernet-100000
> link link-pc22:eth2-cisco4:(null) pc22:pc22/eth2 cisco4:(null) 100000 0 0 1 ethernet ethernet-cisco4 ethernet-dc ethernet-100000
> link link-pc22:eth5-cisco4:(null) pc22:pc22/eth5 cisco4:(null) 100000 0 0 1 ethernet ethernet-cisco4 ethernet-dc ethernet-100000
> link link-pc26:eth6-cisco7:(null) pc26:pc26/eth6 cisco7:(null) 100000 0 0 1 ethernet ethernet-cisco7 ethernet-fxp ethernet-100000
> link link-pc26:eth4-cisco7:(null) pc26:pc26/eth4 cisco7:(null) 100000 0 0 1 ethernet ethernet-cisco7 ethernet-dc ethernet-100000
> link link-pc26:eth1-cisco7:(null) pc26:pc26/eth1 cisco7:(null) 100000 0 0 1 ethernet ethernet-cisco7 ethernet-em ethernet-100000
> link link-pc26:eth3-cisco7:(null) pc26:pc26/eth3 cisco7:(null) 100000 0 0 1 ethernet ethernet-cisco7 ethernet-dc ethernet-100000
> link link-pc26:eth2-cisco7:(null) pc26:pc26/eth2 cisco7:(null) 100000 0 0 1 ethernet ethernet-cisco7 ethernet-dc ethernet-100000
> link link-pc26:eth5-cisco7:(null) pc26:pc26/eth5 cisco7:(null) 100000 0 0 1 ethernet ethernet-cisco7 ethernet-dc ethernet-100000
> link link-LabNode8:eth0-cisco21:(null) LabNode8:LabNode8/eth0 cisco21:(null) 100000 0 0 1 ethernet ethernet-cisco21 ethernet-generic ethernet-100000
> link link-LabNode9:eth0-cisco21:(null) LabNode9:LabNode9/eth0 cisco21:(null) 100000 0 0 1 ethernet ethernet-cisco21 ethernet-generic ethernet-100000
> link link-LabNode10:eth0-cisco21:(null) LabNode10:LabNode10/eth0 cisco21:(null) 100000 0 0 1 ethernet ethernet-cisco21 ethernet-generic ethernet-100000
> link link-LabNode11:eth0-cisco21:(null) LabNode11:LabNode11/eth0 cisco21:(null) 100000 0 0 1 ethernet ethernet-cisco21 ethernet-generic ethernet-100000
> link link-LabNode4:eth0-cisco21:(null) LabNode4:LabNode4/eth0 cisco21:(null) 100000 0 0 1 ethernet ethernet-cisco21 ethernet-generic ethernet-100000
> link link-LabNode5:eth0-cisco21:(null) LabNode5:LabNode5/eth0 cisco21:(null) 100000 0 0 1 ethernet ethernet-cisco21 ethernet-generic ethernet-100000
> link link-LabNode6:eth0-cisco21:(null) LabNode6:LabNode6/eth0 cisco21:(null) 100000 0 0 1 ethernet ethernet-cisco21 ethernet-generic ethernet-100000
> link link-LabNode7:eth0-cisco21:(null) LabNode7:LabNode7/eth0 cisco21:(null) 100000 0 0 1 ethernet ethernet-cisco21 ethernet-generic ethernet-100000
> link link-pc31:eth6-cisco7:(null) pc31:pc31/eth6 cisco7:(null) 100000 0 0 1 ethernet ethernet-cisco7 ethernet-fxp ethernet-100000
> link link-pc31:eth4-cisco7:(null) pc31:pc31/eth4 cisco7:(null) 100000 0 0 1 ethernet ethernet-cisco7 ethernet-dc ethernet-100000
> link link-pc31:eth1-cisco7:(null) pc31:pc31/eth1 cisco7:(null) 100000 0 0 1 ethernet ethernet-cisco7 ethernet-em ethernet-100000
> link link-pc31:eth3-cisco7:(null) pc31:pc31/eth3 cisco7:(null) 100000 0 0 1 ethernet ethernet-cisco7 ethernet-dc ethernet-100000
> link link-pc31:eth2-cisco7:(null) pc31:pc31/eth2 cisco7:(null) 100000 0 0 1 ethernet ethernet-cisco7 ethernet-dc ethernet-100000
> link link-pc31:eth5-cisco7:(null) pc31:pc31/eth5 cisco7:(null) 100000 0 0 1 ethernet ethernet-cisco7 ethernet-dc ethernet-100000
> link link-pc36:eth6-cisco7:(null) pc36:pc36/eth6 cisco7:(null) 100000 0 0 1 ethernet ethernet-cisco7 ethernet-fxp ethernet-100000
> link link-pc36:eth4-cisco7:(null) pc36:pc36/eth4 cisco7:(null) 100000 0 0 1 ethernet ethernet-cisco7 ethernet-dc ethernet-100000
> link link-pc36:eth1-cisco7:(null) pc36:pc36/eth1 cisco7:(null) 100000 0 0 1 ethernet ethernet-cisco7 ethernet-em ethernet-100000
> link link-pc36:eth3-cisco7:(null) pc36:pc36/eth3 cisco7:(null) 100000 0 0 1 ethernet ethernet-cisco7 ethernet-dc ethernet-100000
> link link-pc36:eth2-cisco7:(null) pc36:pc36/eth2 cisco7:(null) 100000 0 0 1 ethernet ethernet-cisco7 ethernet-dc ethernet-100000
> link link-pc36:eth5-cisco7:(null) pc36:pc36/eth5 cisco7:(null) 100000 0 0 1 ethernet ethernet-cisco7 ethernet-dc ethernet-100000
> link link-pc35:eth6-cisco7:(null) pc35:pc35/eth6 cisco7:(null) 100000 0 0 1 ethernet ethernet-cisco7 ethernet-fxp ethernet-100000
> link link-pc35:eth4-cisco7:(null) pc35:pc35/eth4 cisco7:(null) 100000 0 0 1 ethernet ethernet-cisco7 ethernet-dc ethernet-100000
> link link-pc35:eth1-cisco7:(null) pc35:pc35/eth1 cisco7:(null) 100000 0 0 1 ethernet ethernet-cisco7 ethernet-em ethernet-100000
> link link-pc35:eth3-cisco7:(null) pc35:pc35/eth3 cisco7:(null) 100000 0 0 1 ethernet ethernet-cisco7 ethernet-dc ethernet-100000
> link link-pc35:eth2-cisco7:(null) pc35:pc35/eth2 cisco7:(null) 100000 0 0 1 ethernet ethernet-cisco7 ethernet-dc ethernet-100000
> link link-pc35:eth5-cisco7:(null) pc35:pc35/eth5 cisco7:(null) 100000 0 0 1 ethernet ethernet-cisco7 ethernet-dc ethernet-100000
> link link-pc32:eth6-cisco6:(null) pc32:pc32/eth6 cisco6:(null) 100000 0 0 1 ethernet ethernet-cisco6 ethernet-fxp ethernet-100000
> link link-pc32:eth4-cisco6:(null) pc32:pc32/eth4 cisco6:(null) 100000 0 0 1 ethernet ethernet-cisco6 ethernet-dc ethernet-100000
> link link-pc32:eth1-cisco6:(null) pc32:pc32/eth1 cisco6:(null) 100000 0 0 1 ethernet ethernet-cisco6 ethernet-em ethernet-100000
> link link-pc32:eth3-cisco6:(null) pc32:pc32/eth3 cisco6:(null) 100000 0 0 1 ethernet ethernet-cisco6 ethernet-dc ethernet-100000
> link link-pc32:eth2-cisco6:(null) pc32:pc32/eth2 cisco6:(null) 100000 0 0 1 ethernet ethernet-cisco6 ethernet-dc ethernet-100000
> link link-pc32:eth5-cisco6:(null) pc32:pc32/eth5 cisco6:(null) 100000 0 0 1 ethernet ethernet-cisco6 ethernet-dc ethernet-100000
> link link-pc37:eth3-cisco10:(null) pc37:pc37/eth3 cisco10:(null) 100000 0 0 1 ethernet ethernet-cisco10 ethernet-dc ethernet-100000
> link link-pc37:eth7-cisco10:(null) pc37:pc37/eth7 cisco10:(null) 100000 0 0 1 ethernet ethernet-cisco10 ethernet-dc ethernet-100000
> link link-pc37:eth9-cisco18:(null) pc37:pc37/eth9 cisco18:(null) 1000000 0 0 1 ethernet ethernet-cisco18 ethernet-bge_1G ethernet-1000000
> link link-pc37:eth6-cisco10:(null) pc37:pc37/eth6 cisco10:(null) 100000 0 0 1 ethernet ethernet-cisco10 ethernet-dc ethernet-100000
> link link-pc37:eth2-cisco10:(null) pc37:pc37/eth2 cisco10:(null) 100000 0 0 1 ethernet ethernet-cisco10 ethernet-dc ethernet-100000
> link link-pc37:eth1-cisco10:(null) pc37:pc37/eth1 cisco10:(null) 100000 0 0 1 ethernet ethernet-cisco10 ethernet-dc ethernet-100000
> link link-pc37:eth4-cisco10:(null) pc37:pc37/eth4 cisco10:(null) 100000 0 0 1 ethernet ethernet-cisco10 ethernet-dc ethernet-100000
> link link-pc37:eth0-cisco10:(null) pc37:pc37/eth0 cisco10:(null) 100000 0 0 1 ethernet ethernet-cisco10 ethernet-dc ethernet-100000
> link link-pc37:eth5-cisco10:(null) pc37:pc37/eth5 cisco10:(null) 100000 0 0 1 ethernet ethernet-cisco10 ethernet-dc ethernet-100000
> link link-pc40:eth6-cisco10:(null) pc40:pc40/eth6 cisco10:(null) 100000 0 0 1 ethernet ethernet-cisco10 ethernet-dc ethernet-100000
> link link-pc40:eth3-cisco10:(null) pc40:pc40/eth3 cisco10:(null) 100000 0 0 1 ethernet ethernet-cisco10 ethernet-dc ethernet-100000
> link link-pc40:eth7-cisco10:(null) pc40:pc40/eth7 cisco10:(null) 100000 0 0 1 ethernet ethernet-cisco10 ethernet-dc ethernet-100000
> link link-pc40:eth9-cisco18:(null) pc40:pc40/eth9 cisco18:(null) 1000000 0 0 1 ethernet ethernet-cisco18 ethernet-bge_1G ethernet-1000000
> link link-pc40:eth2-cisco10:(null) pc40:pc40/eth2 cisco10:(null) 100000 0 0 1 ethernet ethernet-cisco10 ethernet-dc ethernet-100000
> link link-pc40:eth4-cisco10:(null) pc40:pc40/eth4 cisco10:(null) 100000 0 0 1 ethernet ethernet-cisco10 ethernet-dc ethernet-100000
> link link-pc40:eth1-cisco10:(null) pc40:pc40/eth1 cisco10:(null) 100000 0 0 1 ethernet ethernet-cisco10 ethernet-dc ethernet-100000
> link link-pc40:eth0-cisco10:(null) pc40:pc40/eth0 cisco10:(null) 100000 0 0 1 ethernet ethernet-cisco10 ethernet-dc ethernet-100000
> link link-pc40:eth5-cisco10:(null) pc40:pc40/eth5 cisco10:(null) 100000 0 0 1 ethernet ethernet-cisco10 ethernet-dc ethernet-100000
> link link-pc42:eth6-cisco9:(null) pc42:pc42/eth6 cisco9:(null) 100000 0 0 1 ethernet ethernet-cisco9 ethernet-dc ethernet-100000
> link link-pc42:eth3-cisco9:(null) pc42:pc42/eth3 cisco9:(null) 100000 0 0 1 ethernet ethernet-cisco9 ethernet-dc ethernet-100000
> link link-pc42:eth7-cisco9:(null) pc42:pc42/eth7 cisco9:(null) 100000 0 0 1 ethernet ethernet-cisco9 ethernet-dc ethernet-100000
> link link-pc42:eth9-cisco18:(null) pc42:pc42/eth9 cisco18:(null) 1000000 0 0 1 ethernet ethernet-cisco18 ethernet-bge_1G ethernet-1000000
> link link-pc42:eth2-cisco9:(null) pc42:pc42/eth2 cisco9:(null) 100000 0 0 1 ethernet ethernet-cisco9 ethernet-dc ethernet-100000
> link link-pc42:eth4-cisco9:(null) pc42:pc42/eth4 cisco9:(null) 100000 0 0 1 ethernet ethernet-cisco9 ethernet-dc ethernet-100000
> link link-pc42:eth1-cisco9:(null) pc42:pc42/eth1 cisco9:(null) 100000 0 0 1 ethernet ethernet-cisco9 ethernet-dc ethernet-100000
> link link-pc42:eth0-cisco9:(null) pc42:pc42/eth0 cisco9:(null) 100000 0 0 1 ethernet ethernet-cisco9 ethernet-dc ethernet-100000
> link link-pc42:eth5-cisco9:(null) pc42:pc42/eth5 cisco9:(null) 100000 0 0 1 ethernet ethernet-cisco9 ethernet-dc ethernet-100000
> link link-pc44:eth6-cisco9:(null) pc44:pc44/eth6 cisco9:(null) 100000 0 0 1 ethernet ethernet-cisco9 ethernet-dc ethernet-100000
> link link-pc44:eth3-cisco9:(null) pc44:pc44/eth3 cisco9:(null) 100000 0 0 1 ethernet ethernet-cisco9 ethernet-dc ethernet-100000
> link link-pc44:eth7-cisco9:(null) pc44:pc44/eth7 cisco9:(null) 100000 0 0 1 ethernet ethernet-cisco9 ethernet-dc ethernet-100000
> link link-pc44:eth9-cisco18:(null) pc44:pc44/eth9 cisco18:(null) 1000000 0 0 1 ethernet ethernet-cisco18 ethernet-bge_1G ethernet-1000000
> link link-pc44:eth2-cisco9:(null) pc44:pc44/eth2 cisco9:(null) 100000 0 0 1 ethernet ethernet-cisco9 ethernet-dc ethernet-100000
> link link-pc44:eth1-cisco9:(null) pc44:pc44/eth1 cisco9:(null) 100000 0 0 1 ethernet ethernet-cisco9 ethernet-dc ethernet-100000
> link link-pc44:eth4-cisco9:(null) pc44:pc44/eth4 cisco9:(null) 100000 0 0 1 ethernet ethernet-cisco9 ethernet-dc ethernet-100000
> link link-pc44:eth0-cisco9:(null) pc44:pc44/eth0 cisco9:(null) 100000 0 0 1 ethernet ethernet-cisco9 ethernet-dc ethernet-100000
> link link-pc44:eth5-cisco9:(null) pc44:pc44/eth5 cisco9:(null) 100000 0 0 1 ethernet ethernet-cisco9 ethernet-dc ethernet-100000
> link link-pc46:eth6-cisco9:(null) pc46:pc46/eth6 cisco9:(null) 100000 0 0 1 ethernet ethernet-cisco9 ethernet-dc ethernet-100000
> link link-pc46:eth3-cisco9:(null) pc46:pc46/eth3 cisco9:(null) 100000 0 0 1 ethernet ethernet-cisco9 ethernet-dc ethernet-100000
> link link-pc46:eth7-cisco9:(null) pc46:pc46/eth7 cisco9:(null) 100000 0 0 1 ethernet ethernet-cisco9 ethernet-dc ethernet-100000
> link link-pc46:eth9-cisco18:(null) pc46:pc46/eth9 cisco18:(null) 1000000 0 0 1 ethernet ethernet-cisco18 ethernet-bge_1G ethernet-1000000
> link link-pc46:eth2-cisco9:(null) pc46:pc46/eth2 cisco9:(null) 100000 0 0 1 ethernet ethernet-cisco9 ethernet-dc ethernet-100000
> link link-pc46:eth1-cisco9:(null) pc46:pc46/eth1 cisco9:(null) 100000 0 0 1 ethernet ethernet-cisco9 ethernet-dc ethernet-100000
> link link-pc46:eth4-cisco9:(null) pc46:pc46/eth4 cisco9:(null) 100000 0 0 1 ethernet ethernet-cisco9 ethernet-dc ethernet-100000
> link link-pc46:eth0-cisco9:(null) pc46:pc46/eth0 cisco9:(null) 100000 0 0 1 ethernet ethernet-cisco9 ethernet-dc ethernet-100000
> link link-pc46:eth5-cisco9:(null) pc46:pc46/eth5 cisco9:(null) 100000 0 0 1 ethernet ethernet-cisco9 ethernet-dc ethernet-100000
> link link-pc45:eth6-cisco9:(null) pc45:pc45/eth6 cisco9:(null) 100000 0 0 1 ethernet ethernet-cisco9 ethernet-dc ethernet-100000
> link link-pc45:eth3-cisco9:(null) pc45:pc45/eth3 cisco9:(null) 100000 0 0 1 ethernet ethernet-cisco9 ethernet-dc ethernet-100000
> link link-pc45:eth7-cisco9:(null) pc45:pc45/eth7 cisco9:(null) 100000 0 0 1 ethernet ethernet-cisco9 ethernet-dc ethernet-100000
> link link-pc45:eth9-cisco18:(null) pc45:pc45/eth9 cisco18:(null) 1000000 0 0 1 ethernet ethernet-cisco18 ethernet-bge_1G ethernet-1000000
> link link-pc45:eth2-cisco9:(null) pc45:pc45/eth2 cisco9:(null) 100000 0 0 1 ethernet ethernet-cisco9 ethernet-dc ethernet-100000
> link link-pc45:eth4-cisco9:(null) pc45:pc45/eth4 cisco9:(null) 100000 0 0 1 ethernet ethernet-cisco9 ethernet-dc ethernet-100000
> link link-pc45:eth1-cisco9:(null) pc45:pc45/eth1 cisco9:(null) 100000 0 0 1 ethernet ethernet-cisco9 ethernet-dc ethernet-100000
> link link-pc45:eth0-cisco9:(null) pc45:pc45/eth0 cisco9:(null) 100000 0 0 1 ethernet ethernet-cisco9 ethernet-dc ethernet-100000
> link link-pc45:eth5-cisco9:(null) pc45:pc45/eth5 cisco9:(null) 100000 0 0 1 ethernet ethernet-cisco9 ethernet-dc ethernet-100000
> link link-pc47:eth6-cisco8:(null) pc47:pc47/eth6 cisco8:(null) 100000 0 0 1 ethernet ethernet-cisco8 ethernet-dc ethernet-100000
> link link-pc47:eth3-cisco8:(null) pc47:pc47/eth3 cisco8:(null) 100000 0 0 1 ethernet ethernet-cisco8 ethernet-dc ethernet-100000
> link link-pc47:eth7-cisco8:(null) pc47:pc47/eth7 cisco8:(null) 100000 0 0 1 ethernet ethernet-cisco8 ethernet-dc ethernet-100000
> link link-pc47:eth9-cisco18:(null) pc47:pc47/eth9 cisco18:(null) 1000000 0 0 1 ethernet ethernet-cisco18 ethernet-bge_1G ethernet-1000000
> link link-pc47:eth2-cisco8:(null) pc47:pc47/eth2 cisco8:(null) 100000 0 0 1 ethernet ethernet-cisco8 ethernet-dc ethernet-100000
> link link-pc47:eth4-cisco8:(null) pc47:pc47/eth4 cisco8:(null) 100000 0 0 1 ethernet ethernet-cisco8 ethernet-dc ethernet-100000
> link link-pc47:eth1-cisco8:(null) pc47:pc47/eth1 cisco8:(null) 100000 0 0 1 ethernet ethernet-cisco8 ethernet-dc ethernet-100000
> link link-pc47:eth0-cisco8:(null) pc47:pc47/eth0 cisco8:(null) 100000 0 0 1 ethernet ethernet-cisco8 ethernet-dc ethernet-100000
> link link-pc47:eth5-cisco8:(null) pc47:pc47/eth5 cisco8:(null) 100000 0 0 1 ethernet ethernet-cisco8 ethernet-dc ethernet-100000
> link link-pc48:eth2-cisco8:(null) pc48:pc48/eth2 cisco8:(null) 100000 0 0 1 ethernet ethernet-cisco8 ethernet-dc ethernet-100000
> link link-pc48:eth6-cisco8:(null) pc48:pc48/eth6 cisco8:(null) 100000 0 0 1 ethernet ethernet-cisco8 ethernet-dc ethernet-100000
> link link-pc48:eth3-cisco8:(null) pc48:pc48/eth3 cisco8:(null) 100000 0 0 1 ethernet ethernet-cisco8 ethernet-dc ethernet-100000
> link link-pc48:eth7-cisco8:(null) pc48:pc48/eth7 cisco8:(null) 100000 0 0 1 ethernet ethernet-cisco8 ethernet-dc ethernet-100000
> link link-pc48:eth9-cisco18:(null) pc48:pc48/eth9 cisco18:(null) 1000000 0 0 1 ethernet ethernet-cisco18 ethernet-bge_1G ethernet-1000000
> link link-pc38:eth6-cisco10:(null) pc38:pc38/eth6 cisco10:(null) 100000 0 0 1 ethernet ethernet-cisco10 ethernet-dc ethernet-100000
> link link-pc38:eth3-cisco10:(null) pc38:pc38/eth3 cisco10:(null) 100000 0 0 1 ethernet ethernet-cisco10 ethernet-dc ethernet-100000
> link link-pc38:eth7-cisco10:(null) pc38:pc38/eth7 cisco10:(null) 100000 0 0 1 ethernet ethernet-cisco10 ethernet-dc ethernet-100000
> link link-pc38:eth9-cisco18:(null) pc38:pc38/eth9 cisco18:(null) 1000000 0 0 1 ethernet ethernet-cisco18 ethernet-bge_1G ethernet-1000000
> link link-pc38:eth2-cisco10:(null) pc38:pc38/eth2 cisco10:(null) 100000 0 0 1 ethernet ethernet-cisco10 ethernet-dc ethernet-100000
> link link-pc38:eth1-cisco10:(null) pc38:pc38/eth1 cisco10:(null) 100000 0 0 1 ethernet ethernet-cisco10 ethernet-dc ethernet-100000
> link link-pc38:eth4-cisco10:(null) pc38:pc38/eth4 cisco10:(null) 100000 0 0 1 ethernet ethernet-cisco10 ethernet-dc ethernet-100000
> link link-pc38:eth0-cisco10:(null) pc38:pc38/eth0 cisco10:(null) 100000 0 0 1 ethernet ethernet-cisco10 ethernet-dc ethernet-100000
> link link-pc38:eth5-cisco10:(null) pc38:pc38/eth5 cisco10:(null) 100000 0 0 1 ethernet ethernet-cisco10 ethernet-dc ethernet-100000
> link link-pc39:eth3-cisco10:(null) pc39:pc39/eth3 cisco10:(null) 100000 0 0 1 ethernet ethernet-cisco10 ethernet-dc ethernet-100000
> link link-pc39:eth7-cisco10:(null) pc39:pc39/eth7 cisco10:(null) 100000 0 0 1 ethernet ethernet-cisco10 ethernet-dc ethernet-100000
> link link-pc39:eth9-cisco18:(null) pc39:pc39/eth9 cisco18:(null) 1000000 0 0 1 ethernet ethernet-cisco18 ethernet-bge_1G ethernet-1000000
> link link-pc39:eth2-cisco10:(null) pc39:pc39/eth2 cisco10:(null) 100000 0 0 1 ethernet ethernet-cisco10 ethernet-dc ethernet-100000
> link link-pc39:eth4-cisco10:(null) pc39:pc39/eth4 cisco10:(null) 100000 0 0 1 ethernet ethernet-cisco10 ethernet-dc ethernet-100000
> link link-pc39:eth1-cisco10:(null) pc39:pc39/eth1 cisco10:(null) 100000 0 0 1 ethernet ethernet-cisco10 ethernet-dc ethernet-100000
> link link-pc39:eth0-cisco10:(null) pc39:pc39/eth0 cisco10:(null) 100000 0 0 1 ethernet ethernet-cisco10 ethernet-dc ethernet-100000
> link link-pc39:eth5-cisco10:(null) pc39:pc39/eth5 cisco10:(null) 100000 0 0 1 ethernet ethernet-cisco10 ethernet-dc ethernet-100000
> link link-pc59:eth0-cisco16:(null) pc59:pc59/eth0 cisco16:(null) 1000000 0 0 1 ethernet ethernet-cisco16 ethernet-re_1G ethernet-1000000
> link link-pc59:eth3-cisco16:(null) pc59:pc59/eth3 cisco16:(null) 1000000 0 0 1 ethernet ethernet-cisco16 ethernet-re_1G ethernet-1000000
> link link-pc59:eth4-cisco16:(null) pc59:pc59/eth4 cisco16:(null) 1000000 0 0 1 ethernet ethernet-cisco16 ethernet-re_1G ethernet-1000000
> link link-pc59:eth1-cisco16:(null) pc59:pc59/eth1 cisco16:(null) 1000000 0 0 1 ethernet ethernet-cisco16 ethernet-re_1G ethernet-1000000
> link link-pc52:eth4-cisco11:(null) pc52:pc52/eth4 cisco11:(null) 1000000 0 0 1 ethernet ethernet-cisco11 ethernet-re_1G ethernet-1000000
> link link-pc52:eth0-cisco11:(null) pc52:pc52/eth0 cisco11:(null) 1000000 0 0 1 ethernet ethernet-cisco11 ethernet-re_1G ethernet-1000000
> link link-pc52:eth3-cisco11:(null) pc52:pc52/eth3 cisco11:(null) 1000000 0 0 1 ethernet ethernet-cisco11 ethernet-re_1G ethernet-1000000
> link link-pc56:eth4-cisco11:(null) pc56:pc56/eth4 cisco11:(null) 1000000 0 0 1 ethernet ethernet-cisco11 ethernet-re_1G ethernet-1000000
> link link-pc55:eth3-cisco11:(null) pc55:pc55/eth3 cisco11:(null) 1000000 0 0 1 ethernet ethernet-cisco11 ethernet-re_1G ethernet-1000000
> link link-pc55:eth1-cisco16:(null) pc55:pc55/eth1 cisco16:(null) 1000000 0 0 1 ethernet ethernet-cisco16 ethernet-re_1G ethernet-1000000
> link link-pc55:eth4-cisco11:(null) pc55:pc55/eth4 cisco11:(null) 1000000 0 0 1 ethernet ethernet-cisco11 ethernet-re_1G ethernet-1000000
> link link-pc55:eth0-cisco11:(null) pc55:pc55/eth0 cisco11:(null) 1000000 0 0 1 ethernet ethernet-cisco11 ethernet-re_1G ethernet-1000000
> link link-pc50:eth0-cisco11:(null) pc50:pc50/eth0 cisco11:(null) 1000000 0 0 1 ethernet ethernet-cisco11 ethernet-re_1G ethernet-1000000
> link link-pc50:eth3-cisco11:(null) pc50:pc50/eth3 cisco11:(null) 1000000 0 0 1 ethernet ethernet-cisco11 ethernet-re_1G ethernet-1000000
> link link-pc60:eth1-cisco16:(null) pc60:pc60/eth1 cisco16:(null) 1000000 0 0 1 ethernet ethernet-cisco16 ethernet-re_1G ethernet-1000000
> link link-pc50:eth4-cisco11:(null) pc50:pc50/eth4 cisco11:(null) 1000000 0 0 1 ethernet ethernet-cisco11 ethernet-re_1G ethernet-1000000
> link link-pc50:eth1-cisco16:(null) pc50:pc50/eth1 cisco16:(null) 1000000 0 0 1 ethernet ethernet-cisco16 ethernet-re_1G ethernet-1000000
> link link-x-haipe502:eth0-cisco7:(null) x-haipe502:x-haipe502/eth0 cisco7:(null) 100000 0 0 1 ethernet ethernet-cisco7 ethernet-generic ethernet-100000
> link link-x-haipe502:eth1-cisco7:(null) x-haipe502:x-haipe502/eth1 cisco7:(null) 100000 0 0 1 ethernet ethernet-cisco7 ethernet-generic ethernet-100000
> link link-x-haipe501:eth0-cisco4:(null) x-haipe501:x-haipe501/eth0 cisco4:(null) 100000 0 0 1 ethernet ethernet-cisco4 ethernet-generic ethernet-100000
> link link-x-haipe501:eth1-cisco4:(null) x-haipe501:x-haipe501/eth1 cisco4:(null) 100000 0 0 1 ethernet ethernet-cisco4 ethernet-generic ethernet-100000
> link link-ciscoR603:eth4-cisco8:(null) ciscoR603:ciscoR603/eth4 cisco8:(null) 100000 0 0 1 ethernet ethernet-cisco8 ethernet-generic ethernet-100000
> link link-ciscoR603:eth3-cisco8:(null) ciscoR603:ciscoR603/eth3 cisco8:(null) 100000 0 0 1 ethernet ethernet-cisco8 ethernet-generic ethernet-100000
> link link-ciscoR603:eth2-cisco8:(null) ciscoR603:ciscoR603/eth2 cisco8:(null) 100000 0 0 1 ethernet ethernet-cisco8 ethernet-generic ethernet-100000
> link link-ciscoR603:eth1-cisco8:(null) ciscoR603:ciscoR603/eth1 cisco8:(null) 100000 0 0 1 ethernet ethernet-cisco8 ethernet-generic ethernet-100000
> link link-ciscoR603:eth0-cisco8:(null) ciscoR603:ciscoR603/eth0 cisco8:(null) 100000 0 0 1 ethernet ethernet-cisco8 ethernet-generic ethernet-100000
> link link-ciscoR606:eth5-cisco8:(null) ciscoR606:ciscoR606/eth5 cisco8:(null) 100000 0 0 1 ethernet ethernet-cisco8 ethernet-generic ethernet-100000
> link link-ciscoR606:eth4-cisco8:(null) ciscoR606:ciscoR606/eth4 cisco8:(null) 100000 0 0 1 ethernet ethernet-cisco8 ethernet-generic ethernet-100000
> link link-ciscoR606:eth3-cisco8:(null) ciscoR606:ciscoR606/eth3 cisco8:(null) 100000 0 0 1 ethernet ethernet-cisco8 ethernet-generic ethernet-100000
> link link-x-mac503:eth0-cisco6:(null) x-mac503:x-mac503/eth0 cisco6:(null) 100000 0 0 1 ethernet ethernet-cisco6 ethernet-generic ethernet-100000
> link link-pc52:eth1-cisco16:(null) pc52:pc52/eth1 cisco16:(null) 1000000 0 0 1 ethernet ethernet-cisco16 ethernet-re_1G ethernet-1000000
> link link-pc51:eth0-cisco11:(null) pc51:pc51/eth0 cisco11:(null) 1000000 0 0 1 ethernet ethernet-cisco11 ethernet-re_1G ethernet-1000000
> link link-pc56:eth1-cisco16:(null) pc56:pc56/eth1 cisco16:(null) 1000000 0 0 1 ethernet ethernet-cisco16 ethernet-re_1G ethernet-1000000
> link link-pc56:eth3-cisco11:(null) pc56:pc56/eth3 cisco11:(null) 1000000 0 0 1 ethernet ethernet-cisco11 ethernet-re_1G ethernet-1000000
> link link-pc56:eth0-cisco11:(null) pc56:pc56/eth0 cisco11:(null) 1000000 0 0 1 ethernet ethernet-cisco11 ethernet-re_1G ethernet-1000000
> link link-pc51:eth1-cisco16:(null) pc51:pc51/eth1 cisco16:(null) 1000000 0 0 1 ethernet ethernet-cisco16 ethernet-re_1G ethernet-1000000
> link link-pc51:eth4-cisco11:(null) pc51:pc51/eth4 cisco11:(null) 1000000 0 0 1 ethernet ethernet-cisco11 ethernet-re_1G ethernet-1000000
> link link-pc51:eth3-cisco11:(null) pc51:pc51/eth3 cisco11:(null) 1000000 0 0 1 ethernet ethernet-cisco11 ethernet-re_1G ethernet-1000000
> link link-pc64:eth4-cisco17:(null) pc64:pc64/eth4 cisco17:(null) 100000 0 0 1 ethernet ethernet-cisco17 ethernet-vr ethernet-100000
> link link-pc64:eth1-cisco15:(null) pc64:pc64/eth1 cisco15:(null) 1000000 0 0 1 ethernet ethernet-cisco15 ethernet-re_1G ethernet-1000000
> link link-pc64:eth3-cisco17:(null) pc64:pc64/eth3 cisco17:(null) 100000 0 0 1 ethernet ethernet-cisco17 ethernet-vr ethernet-100000
> link link-pc68:eth4-cisco17:(null) pc68:pc68/eth4 cisco17:(null) 100000 0 0 1 ethernet ethernet-cisco17 ethernet-vr ethernet-100000
> link link-pc68:eth1-cisco15:(null) pc68:pc68/eth1 cisco15:(null) 1000000 0 0 1 ethernet ethernet-cisco15 ethernet-re_1G ethernet-1000000
> link link-pc68:eth3-cisco17:(null) pc68:pc68/eth3 cisco17:(null) 100000 0 0 1 ethernet ethernet-cisco17 ethernet-vr ethernet-100000
> link link-pc68:eth0-cisco15:(null) pc68:pc68/eth0 cisco15:(null) 1000000 0 0 1 ethernet ethernet-cisco15 ethernet-re_1G ethernet-1000000
> link link-pc60:eth4-cisco16:(null) pc60:pc60/eth4 cisco16:(null) 1000000 0 0 1 ethernet ethernet-cisco16 ethernet-re_1G ethernet-1000000
> link link-pc60:eth0-cisco16:(null) pc60:pc60/eth0 cisco16:(null) 1000000 0 0 1 ethernet ethernet-cisco16 ethernet-re_1G ethernet-1000000
> link link-pc60:eth3-cisco16:(null) pc60:pc60/eth3 cisco16:(null) 1000000 0 0 1 ethernet ethernet-cisco16 ethernet-re_1G ethernet-1000000
> link link-pc65:eth4-cisco17:(null) pc65:pc65/eth4 cisco17:(null) 100000 0 0 1 ethernet ethernet-cisco17 ethernet-vr ethernet-100000
> link link-pc65:eth1-cisco15:(null) pc65:pc65/eth1 cisco15:(null) 1000000 0 0 1 ethernet ethernet-cisco15 ethernet-re_1G ethernet-1000000
> link link-pc65:eth3-cisco17:(null) pc65:pc65/eth3 cisco17:(null) 100000 0 0 1 ethernet ethernet-cisco17 ethernet-vr ethernet-100000
> link link-pc65:eth0-cisco15:(null) pc65:pc65/eth0 cisco15:(null) 1000000 0 0 1 ethernet ethernet-cisco15 ethernet-re_1G ethernet-1000000
> link link-pc70:eth1-cisco15:(null) pc70:pc70/eth1 cisco15:(null) 1000000 0 0 1 ethernet ethernet-cisco15 ethernet-re_1G ethernet-1000000
> link link-pc70:eth4-cisco17:(null) pc70:pc70/eth4 cisco17:(null) 100000 0 0 1 ethernet ethernet-cisco17 ethernet-vr ethernet-100000
> link link-pc70:eth0-cisco15:(null) pc70:pc70/eth0 cisco15:(null) 1000000 0 0 1 ethernet ethernet-cisco15 ethernet-re_1G ethernet-1000000
> link link-pc70:eth3-cisco17:(null) pc70:pc70/eth3 cisco17:(null) 100000 0 0 1 ethernet ethernet-cisco17 ethernet-vr ethernet-100000
> link link-pc71:eth1-cisco15:(null) pc71:pc71/eth1 cisco15:(null) 1000000 0 0 1 ethernet ethernet-cisco15 ethernet-re_1G ethernet-1000000
> link link-pc71:eth4-cisco17:(null) pc71:pc71/eth4 cisco17:(null) 100000 0 0 1 ethernet ethernet-cisco17 ethernet-vr ethernet-100000
> link link-pc71:eth0-cisco13:(null) pc71:pc71/eth0 cisco13:(null) 100000 0 0 1 ethernet ethernet-cisco13 ethernet-re ethernet-100000
> link link-pc71:eth3-cisco17:(null) pc71:pc71/eth3 cisco17:(null) 100000 0 0 1 ethernet ethernet-cisco17 ethernet-vr ethernet-100000
> link link-pc72:eth1-cisco15:(null) pc72:pc72/eth1 cisco15:(null) 1000000 0 0 1 ethernet ethernet-cisco15 ethernet-re_1G ethernet-1000000
> link link-pc72:eth4-cisco17:(null) pc72:pc72/eth4 cisco17:(null) 100000 0 0 1 ethernet ethernet-cisco17 ethernet-vr ethernet-100000
> link link-pc72:eth0-cisco13:(null) pc72:pc72/eth0 cisco13:(null) 100000 0 0 1 ethernet ethernet-cisco13 ethernet-re ethernet-100000
> link link-pc72:eth3-cisco17:(null) pc72:pc72/eth3 cisco17:(null) 100000 0 0 1 ethernet ethernet-cisco17 ethernet-vr ethernet-100000
> link link-pc73:eth4-cisco17:(null) pc73:pc73/eth4 cisco17:(null) 100000 0 0 1 ethernet ethernet-cisco17 ethernet-vr ethernet-100000
> link link-pc73:eth1-cisco15:(null) pc73:pc73/eth1 cisco15:(null) 1000000 0 0 1 ethernet ethernet-cisco15 ethernet-re_1G ethernet-1000000
> link link-pc73:eth3-cisco17:(null) pc73:pc73/eth3 cisco17:(null) 100000 0 0 1 ethernet ethernet-cisco17 ethernet-vr ethernet-100000
> link link-pc73:eth0-cisco13:(null) pc73:pc73/eth0 cisco13:(null) 100000 0 0 1 ethernet ethernet-cisco13 ethernet-re ethernet-100000
> link link-pc74:eth3-cisco17:(null) pc74:pc74/eth3 cisco17:(null) 100000 0 0 1 ethernet ethernet-cisco17 ethernet-vr ethernet-100000
> link link-pc74:eth1-cisco15:(null) pc74:pc74/eth1 cisco15:(null) 1000000 0 0 1 ethernet ethernet-cisco15 ethernet-re_1G ethernet-1000000
> link link-pc74:eth4-cisco17:(null) pc74:pc74/eth4 cisco17:(null) 100000 0 0 1 ethernet ethernet-cisco17 ethernet-vr ethernet-100000
> link link-pc69:eth1-cisco15:(null) pc69:pc69/eth1 cisco15:(null) 1000000 0 0 1 ethernet ethernet-cisco15 ethernet-re_1G ethernet-1000000
> link link-pc69:eth4-cisco17:(null) pc69:pc69/eth4 cisco17:(null) 100000 0 0 1 ethernet ethernet-cisco17 ethernet-vr ethernet-100000
> link link-pc69:eth0-cisco15:(null) pc69:pc69/eth0 cisco15:(null) 1000000 0 0 1 ethernet ethernet-cisco15 ethernet-re_1G ethernet-1000000
> link link-pc69:eth3-cisco17:(null) pc69:pc69/eth3 cisco17:(null) 100000 0 0 1 ethernet ethernet-cisco17 ethernet-vr ethernet-100000
> link link-pc67:eth1-cisco15:(null) pc67:pc67/eth1 cisco15:(null) 1000000 0 0 1 ethernet ethernet-cisco15 ethernet-re_1G ethernet-1000000
> link link-pc67:eth4-cisco17:(null) pc67:pc67/eth4 cisco17:(null) 100000 0 0 1 ethernet ethernet-cisco17 ethernet-vr ethernet-100000
> link link-pc67:eth0-cisco15:(null) pc67:pc67/eth0 cisco15:(null) 1000000 0 0 1 ethernet ethernet-cisco15 ethernet-re_1G ethernet-1000000
> link link-pc67:eth3-cisco17:(null) pc67:pc67/eth3 cisco17:(null) 100000 0 0 1 ethernet ethernet-cisco17 ethernet-vr ethernet-100000
> link link-pc61:eth2-cisco13:(null) pc61:pc61/eth2 cisco13:(null) 100000 0 0 1 ethernet ethernet-cisco13 ethernet-re ethernet-100000
> link link-pc57:eth4-cisco16:(null) pc57:pc57/eth4 cisco16:(null) 1000000 0 0 1 ethernet ethernet-cisco16 ethernet-re_1G ethernet-1000000
> link link-pc57:eth1-cisco16:(null) pc57:pc57/eth1 cisco16:(null) 1000000 0 0 1 ethernet ethernet-cisco16 ethernet-re_1G ethernet-1000000
> link link-pc57:eth3-cisco16:(null) pc57:pc57/eth3 cisco16:(null) 1000000 0 0 1 ethernet ethernet-cisco16 ethernet-re_1G ethernet-1000000
> link link-pc57:eth0-cisco16:(null) pc57:pc57/eth0 cisco16:(null) 1000000 0 0 1 ethernet ethernet-cisco16 ethernet-re_1G ethernet-1000000
> link link-pc64:eth0-cisco15:(null) pc64:pc64/eth0 cisco15:(null) 1000000 0 0 1 ethernet ethernet-cisco15 ethernet-re_1G ethernet-1000000
> link link-pc66:eth1-cisco15:(null) pc66:pc66/eth1 cisco15:(null) 1000000 0 0 1 ethernet ethernet-cisco15 ethernet-re_1G ethernet-1000000
> link link-pc66:eth4-cisco17:(null) pc66:pc66/eth4 cisco17:(null) 100000 0 0 1 ethernet ethernet-cisco17 ethernet-vr ethernet-100000
> link link-pc66:eth0-cisco15:(null) pc66:pc66/eth0 cisco15:(null) 1000000 0 0 1 ethernet ethernet-cisco15 ethernet-re_1G ethernet-1000000
> link link-pc66:eth3-cisco17:(null) pc66:pc66/eth3 cisco17:(null) 100000 0 0 1 ethernet ethernet-cisco17 ethernet-vr ethernet-100000
> link link-pc61:eth1-cisco15:(null) pc61:pc61/eth1 cisco15:(null) 1000000 0 0 1 ethernet ethernet-cisco15 ethernet-re_1G ethernet-1000000
> link link-pc61:eth3-cisco13:(null) pc61:pc61/eth3 cisco13:(null) 100000 0 0 1 ethernet ethernet-cisco13 ethernet-re ethernet-100000
> link link-pc74:eth0-cisco13:(null) pc74:pc74/eth0 cisco13:(null) 100000 0 0 1 ethernet ethernet-cisco13 ethernet-re ethernet-100000
> link link-pc61:eth4-cisco13:(null) pc61:pc61/eth4 cisco13:(null) 100000 0 0 1 ethernet ethernet-cisco13 ethernet-re ethernet-100000
> link link-x-mac507:eth1-cisco6:(null) x-mac507:x-mac507/eth1 cisco6:(null) 100000 0 0 1 ethernet ethernet-cisco6 ethernet-generic ethernet-100000
> link link-ciscoR606:eth2-cisco8:(null) ciscoR606:ciscoR606/eth2 cisco8:(null) 100000 0 0 1 ethernet ethernet-cisco8 ethernet-generic ethernet-100000
> link link-ciscoR606:eth1-cisco8:(null) ciscoR606:ciscoR606/eth1 cisco8:(null) 100000 0 0 1 ethernet ethernet-cisco8 ethernet-generic ethernet-100000
> link link-ciscoR606:eth0-cisco8:(null) ciscoR606:ciscoR606/eth0 cisco8:(null) 100000 0 0 1 ethernet ethernet-cisco8 ethernet-generic ethernet-100000
> link link-pc75:eth4-cisco13:(null) pc75:pc75/eth4 cisco13:(null) 100000 0 0 1 ethernet ethernet-cisco13 ethernet-re ethernet-100000
> link link-pc75:eth1-cisco15:(null) pc75:pc75/eth1 cisco15:(null) 1000000 0 0 1 ethernet ethernet-cisco15 ethernet-re_1G ethernet-1000000
> link link-pc75:eth3-cisco13:(null) pc75:pc75/eth3 cisco13:(null) 100000 0 0 1 ethernet ethernet-cisco13 ethernet-re ethernet-100000
> link link-pc75:eth2-cisco13:(null) pc75:pc75/eth2 cisco13:(null) 100000 0 0 1 ethernet ethernet-cisco13 ethernet-re ethernet-100000
> link link-ciscoR603:eth5-cisco8:(null) ciscoR603:ciscoR603/eth5 cisco8:(null) 100000 0 0 1 ethernet ethernet-cisco8 ethernet-generic ethernet-100000
> link link-ciscoR604:eth0-cisco7:(null) ciscoR604:ciscoR604/eth0 cisco7:(null) 100000 0 0 1 ethernet ethernet-cisco7 ethernet-generic ethernet-100000
> link link-ciscoR604:eth1-cisco7:(null) ciscoR604:ciscoR604/eth1 cisco7:(null) 100000 0 0 1 ethernet ethernet-cisco7 ethernet-generic ethernet-100000
> link link-ciscoR604:eth2-cisco7:(null) ciscoR604:ciscoR604/eth2 cisco7:(null) 100000 0 0 1 ethernet ethernet-cisco7 ethernet-generic ethernet-100000
> link link-ciscoR604:eth3-cisco7:(null) ciscoR604:ciscoR604/eth3 cisco7:(null) 100000 0 0 1 ethernet ethernet-cisco7 ethernet-generic ethernet-100000
> link link-ciscoR604:eth4-cisco7:(null) ciscoR604:ciscoR604/eth4 cisco7:(null) 100000 0 0 1 ethernet ethernet-cisco7 ethernet-generic ethernet-100000
> link link-ciscoR604:eth5-cisco7:(null) ciscoR604:ciscoR604/eth5 cisco7:(null) 100000 0 0 1 ethernet ethernet-cisco7 ethernet-generic ethernet-100000
> link link-ciscoR604:eth6-cisco7:(null) ciscoR604:ciscoR604/eth6 cisco7:(null) 1000000 0 0 1 ethernet ethernet-cisco7 ethernet-generic_1G ethernet-1000000
> link link-ciscoR605:eth0-cisco4:(null) ciscoR605:ciscoR605/eth0 cisco4:(null) 100000 0 0 1 ethernet ethernet-cisco4 ethernet-generic ethernet-100000
> link link-ciscoR605:eth1-cisco4:(null) ciscoR605:ciscoR605/eth1 cisco4:(null) 100000 0 0 1 ethernet ethernet-cisco4 ethernet-generic ethernet-100000
> link link-ciscoR605:eth2-cisco4:(null) ciscoR605:ciscoR605/eth2 cisco4:(null) 100000 0 0 1 ethernet ethernet-cisco4 ethernet-generic ethernet-100000
> link link-ciscoR605:eth3-cisco4:(null) ciscoR605:ciscoR605/eth3 cisco4:(null) 100000 0 0 1 ethernet ethernet-cisco4 ethernet-generic ethernet-100000
> link link-pc76:eth1-cisco15:(null) pc76:pc76/eth1 cisco15:(null) 100000 0 0 1 ethernet ethernet-cisco15 ethernet-re ethernet-100000
> link link-pc76:eth4-cisco13:(null) pc76:pc76/eth4 cisco13:(null) 100000 0 0 1 ethernet ethernet-cisco13 ethernet-re ethernet-100000
> link link-pc76:eth3-cisco13:(null) pc76:pc76/eth3 cisco13:(null) 100000 0 0 1 ethernet ethernet-cisco13 ethernet-re ethernet-100000
> link link-pc76:eth2-cisco13:(null) pc76:pc76/eth2 cisco13:(null) 100000 0 0 1 ethernet ethernet-cisco13 ethernet-re ethernet-100000
> link link-ciscoR601:eth0-cisco4:(null) ciscoR601:ciscoR601/eth0 cisco4:(null) 100000 0 0 1 ethernet ethernet-cisco4 ethernet-generic ethernet-100000
> link link-ciscoR601:eth1-cisco4:(null) ciscoR601:ciscoR601/eth1 cisco4:(null) 100000 0 0 1 ethernet ethernet-cisco4 ethernet-generic ethernet-100000
> link link-ciscoR601:eth2-cisco4:(null) ciscoR601:ciscoR601/eth2 cisco4:(null) 100000 0 0 1 ethernet ethernet-cisco4 ethernet-generic ethernet-100000
> link link-ciscoR601:eth3-cisco4:(null) ciscoR601:ciscoR601/eth3 cisco4:(null) 100000 0 0 1 ethernet ethernet-cisco4 ethernet-generic ethernet-100000
> link link-ciscoR602:eth0-cisco6:(null) ciscoR602:ciscoR602/eth0 cisco6:(null) 100000 0 0 1 ethernet ethernet-cisco6 ethernet-generic ethernet-100000
> link link-ciscoR602:eth1-cisco6:(null) ciscoR602:ciscoR602/eth1 cisco6:(null) 100000 0 0 1 ethernet ethernet-cisco6 ethernet-generic ethernet-100000
> link link-ciscoR602:eth2-cisco6:(null) ciscoR602:ciscoR602/eth2 cisco6:(null) 1000000 0 0 1 ethernet ethernet-cisco6 ethernet-generic_1G ethernet-1000000
> link link-ciscoR602:eth3-cisco6:(null) ciscoR602:ciscoR602/eth3 cisco6:(null) 1000000 0 0 1 ethernet ethernet-cisco6 ethernet-generic_1G ethernet-1000000
> link link-EmulabWiFi:eth0-cisco8:(null) EmulabWiFi:EmulabWiFi/eth0 cisco8:(null) 100000 0 0 1 ethernet ethernet-cisco8 ethernet-generic ethernet-100000
> link link-EmulabWiFi:eth1-cisco8:(null) EmulabWiFi:EmulabWiFi/eth1 cisco8:(null) 100000 0 0 1 ethernet ethernet-cisco8 ethernet-generic ethernet-100000
> link link-EmulabWiFi:eth2-cisco8:(null) EmulabWiFi:EmulabWiFi/eth2 cisco8:(null) 100000 0 0 1 ethernet ethernet-cisco8 ethernet-generic ethernet-100000
> link link-CStarLab:eth0-cisco8:(null) CStarLab:CStarLab/eth0 cisco8:(null) 100000 0 0 1 ethernet ethernet-cisco8 ethernet-generic ethernet-100000
> link link-LabNode12:eth0-cisco21:(null) LabNode12:LabNode12/eth0 cisco21:(null) 100000 0 0 1 ethernet ethernet-cisco21 ethernet-generic ethernet-100000
> link link-pc48:eth1-cisco8:(null) pc48:pc48/eth1 cisco8:(null) 100000 0 0 1 ethernet ethernet-cisco8 ethernet-dc ethernet-100000
> link link-pc48:eth4-cisco8:(null) pc48:pc48/eth4 cisco8:(null) 100000 0 0 1 ethernet ethernet-cisco8 ethernet-dc ethernet-100000
> link link-pc48:eth0-cisco8:(null) pc48:pc48/eth0 cisco8:(null) 100000 0 0 1 ethernet ethernet-cisco8 ethernet-dc ethernet-100000
> link link-pc48:eth5-cisco8:(null) pc48:pc48/eth5 cisco8:(null) 100000 0 0 1 ethernet ethernet-cisco8 ethernet-dc ethernet-100000
> link link-x-haipe508:eth2-cisco18:(null) x-haipe508:x-haipe508/eth2 cisco18:(null) 100000 0 0 1 ethernet ethernet-cisco18 ethernet-generic ethernet-100000
> link link-x-haipe508:eth1-cisco18:(null) x-haipe508:x-haipe508/eth1 cisco18:(null) 100000 0 0 1 ethernet ethernet-cisco18 ethernet-generic ethernet-100000
> link link-x-haipe508:eth0-cisco18:(null) x-haipe508:x-haipe508/eth0 cisco18:(null) 100000 0 0 1 ethernet ethernet-cisco18 ethernet-generic ethernet-100000
> link link-cisco5:cisco20 cisco5 cisco20 1000000 0 0 1 ethernet
> link link-cisco16:cisco11 cisco16 cisco11 1000000 0 0 1 ethernet
> link link-cisco4:cisco5 cisco4 cisco5 1000000 0 0 1 ethernet
> link link-cisco15:cisco16 cisco15 cisco16 1000000 0 0 1 ethernet
> link link-cisco6:cisco7 cisco6 cisco7 1000000 0 0 1 ethernet
> link link-cisco20:cisco18 cisco20 cisco18 1000000 0 0 1 ethernet
> link link-cisco1:cisco3 cisco1 cisco3 1000000 0 0 1 ethernet
> link link-cisco16:cisco12 cisco16 cisco12 1000000 0 0 1 ethernet
> link link-cisco7:cisco18 cisco7 cisco18 1000000 0 0 1 ethernet
> link link-cisco8:cisco10 cisco8 cisco10 1000000 0 0 1 ethernet
> link link-cisco8:cisco21 cisco8 cisco21 100000 0 0 1 ethernet
> link link-cisco3:cisco4 cisco3 cisco4 1000000 0 0 1 ethernet
> link link-cisco18:cisco8 cisco18 cisco8 1000000 0 0 1 ethernet
> link link-cisco18:cisco16 cisco18 cisco16 1000000 0 0 1 ethernet
> link link-cisco15:cisco13 cisco15 cisco13 1000000 0 0 1 ethernet
> link link-cisco10:cisco9 cisco10 cisco9 1000000 0 0 1 ethernet
> link link-cisco15:cisco17 cisco15 cisco17 1000000 0 0 1 ethernet
> set-type-limit boolean 0
> set-type-limit integer 0
> node host1 NetworkConnection:1 CSTAR:1.000000 already_reserved:0.200000 OS-10100:1.000000
> node host2 NetworkConnection:1 CSTAR:1.000000 already_reserved:0.200000 OS-10100:1.000000
> node host3 NetworkConnection:1 CSTAR:1.000000 already_reserved:0.200000 OS-10100:1.000000
> node host4 NetworkConnection:1 CSTAR:1.000000 already_reserved:0.200000 OS-10100:1.000000
> node host5 NetworkConnection:1 CSTAR:1.000000 already_reserved:0.200000 OS-10100:1.000000
> node host6 NetworkConnection:1 CSTAR:1.000000 already_reserved:0.200000 OS-10100:1.000000
> node host7 NetworkConnection:1 CSTAR:1.000000 already_reserved:0.200000 OS-10100:1.000000
> node host8 NetworkConnection:1 CSTAR:1.000000 already_reserved:0.200000 OS-10100:1.000000
> node host9 NetworkConnection:1 CSTAR:1.000000 already_reserved:0.200000 OS-10100:1.000000
> node modem1a pc:1 already_reserved:0.200000 OS-10200:1.000000
> node modem1b pc:1 already_reserved:0.200000 OS-10200:1.000000
> node modem1d pc:1 already_reserved:0.200000 OS-10200:1.000000
> node modem2b pc:1 already_reserved:0.200000 OS-10200:1.000000
> node modem2c pc:1 already_reserved:0.200000 OS-10200:1.000000
> node modem2e pc:1 already_reserved:0.200000 OS-10200:1.000000
> node modem3d pc:1 already_reserved:0.200000 OS-10200:1.000000
> node modem3e pc:1 already_reserved:0.200000 OS-10200:1.000000
> node modem3f pc:1 already_reserved:0.200000 OS-10200:1.000000
> node modem4a pc:1 already_reserved:0.200000 OS-10200:1.000000
> node modem5c pc:1 already_reserved:0.200000 OS-10200:1.000000
> node modem6f pc:1 already_reserved:0.200000 OS-10200:1.000000
> node modem7a pc:1 already_reserved:0.200000 OS-10200:1.000000
> node modem8c pc:1 already_reserved:0.200000 OS-10200:1.000000
> node modem9f pc:1 already_reserved:0.200000 OS-10200:1.000000
> node router1 pc:1 already_reserved:0.200000 OS-10200:1.000000
> node router2 pc:1 already_reserved:0.200000 OS-10200:1.000000
> node router3 pc:1 already_reserved:0.200000 OS-10200:1.000000
> node router4 pc:1 already_reserved:0.200000 OS-10200:1.000000
> node router5 pc:1 already_reserved:0.200000 OS-10200:1.000000
> node router6 pc:1 already_reserved:0.200000 OS-10200:1.000000
> node router7 pc:1 already_reserved:0.200000 OS-10200:1.000000
> node router8 pc:1 already_reserved:0.200000 OS-10200:1.000000
> node router9 pc:1 already_reserved:0.200000 OS-10200:1.000000
> node lan/satcom lan:1
> link linklan/satcom/modem1a:1 modem1a lan/satcom 100000 0 0 ethernet
> link linklan/satcom/modem1b:1 modem1b lan/satcom 100000 0 0 ethernet
> link linklan/satcom/modem1d:1 modem1d lan/satcom 100000 0 0 ethernet
> link linklan/satcom/modem2b:1 modem2b lan/satcom 100000 0 0 ethernet
> link linklan/satcom/modem2c:1 modem2c lan/satcom 100000 0 0 ethernet
> link linklan/satcom/modem2e:1 modem2e lan/satcom 100000 0 0 ethernet
> link linklan/satcom/modem3d:1 modem3d lan/satcom 100000 0 0 ethernet
> link linklan/satcom/modem3e:1 modem3e lan/satcom 100000 0 0 ethernet
> link linklan/satcom/modem3f:1 modem3f lan/satcom 100000 0 0 ethernet
> link linklan/satcom/modem4a:1 modem4a lan/satcom 100000 0 0 ethernet
> link linklan/satcom/modem5c:1 modem5c lan/satcom 100000 0 0 ethernet
> link linklan/satcom/modem6f:1 modem6f lan/satcom 100000 0 0 ethernet
> link linklan/satcom/modem7a:1 modem7a lan/satcom 100000 0 0 ethernet
> link linklan/satcom/modem8c:1 modem8c lan/satcom 100000 0 0 ethernet
> link linklan/satcom/modem9f:1 modem9f lan/satcom 100000 0 0 ethernet
> link linksimple/ship1host1/router1:0,host1:0 router1 host1 100000 0 0 ethernet
> link linksimple/ship1modem1a/router1:1,modem1a:0 router1 modem1a 100000 0 0 ethernet
> link linksimple/ship1modem1b/router1:2,modem1b:0 router1 modem1b 100000 0 0 ethernet
> link linksimple/ship1modem1d/router1:3,modem1d:0 router1 modem1d 100000 0 0 ethernet
> link linksimple/ship2host2/router2:0,host2:0 router2 host2 100000 0 0 ethernet
> link linksimple/ship2modem2b/router2:1,modem2b:0 router2 modem2b 100000 0 0 ethernet
> link linksimple/ship2modem2c/router2:2,modem2c:0 router2 modem2c 100000 0 0 ethernet
> link linksimple/ship2modem2e/router2:3,modem2e:0 router2 modem2e 100000 0 0 ethernet
> link linksimple/ship3host3/router3:0,host3:0 router3 host3 100000 0 0 ethernet
> link linksimple/ship3modem3d/router3:1,modem3d:0 router3 modem3d 100000 0 0 ethernet
> link linksimple/ship3modem3e/router3:2,modem3e:0 router3 modem3e 100000 0 0 ethernet
> link linksimple/ship3modem3f/router3:3,modem3f:0 router3 modem3f 100000 0 0 ethernet
> link linksimple/ship4host4/router4:0,host4:0 router4 host4 100000 0 0 ethernet
> link linksimple/ship4modem4a/router4:1,modem4a:0 router4 modem4a 100000 0 0 ethernet
> link linksimple/ship5host5/router5:0,host5:0 router5 host5 100000 0 0 ethernet
> link linksimple/ship5modem5c/router5:1,modem5c:0 router5 modem5c 100000 0 0 ethernet
> link linksimple/ship6host6/router6:0,host6:0 router6 host6 100000 0 0 ethernet
> link linksimple/ship6modem6f/router6:1,modem6f:0 router6 modem6f 100000 0 0 ethernet
> link linksimple/ship7host7/router7:0,host7:0 router7 host7 100000 0 0 ethernet
> link linksimple/ship7modem7a/router7:1,modem7a:0 router7 modem7a 100000 0 0 ethernet
> link linksimple/ship8host8/router8:0,host8:0 router8 host8 100000 0 0 ethernet
> link linksimple/ship8modem8c/router8:1,modem8c:0 router8 modem8c 100000 0 0 ethernet
> link linksimple/ship9host9/router9:0,host9:0 router9 host9 100000 0 0 ethernet
> link linksimple/ship9modem9f/router9:1,modem9f:0 router9 modem9f 100000 0 0 ethernet
> fix-node host1 LabNode1
> fix-node host2 LabNode2
> fix-node host3 LabNode3
> fix-node host4 LabNode4
> fix-node host5 LabNode5
> fix-node host6 LabNode6
> fix-node host7 LabNode7
> fix-node host8 LabNode8
> fix-node host9 LabNode9