1#!/usr/bin/python
2from  topology import *
3
4T = Topology()
5net1 = Network(T, "pyt0")
6
7#h1 = Host(T, net1)
8h3 = Host(T, net1, args="tcpbench:t:172.16.1.1:6660:")
9
10sleep(1)
11raw_input("Press enter to continue ...")
12start(T)
13
14wait(h3)
15cleanup()
16