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