From 2c0d22e4628fae0ec03fa4ad1dafbfc75def8cd9 Mon Sep 17 00:00:00 2001 From: Marius Sandu-Popa Date: Thu, 20 May 2010 16:50:21 +0300 Subject: [PATCH] added xml-file-generatorfor new infrastructure --- autorun/commander/Commander.py | 13 +- autorun/commander/XMLParser.py | 6 +- autorun/xml/genxml.py | 76 + autorun/xml/nodes.bak | 27 + autorun/xml/nodes.xml | 2426 +++++++++++++++++++++++++++++++- autorun/xml/swarm.bak | 23 + autorun/xml/swarm.xml | 1223 +++++++++++++++- 7 files changed, 3739 insertions(+), 55 deletions(-) create mode 100755 autorun/xml/genxml.py create mode 100644 autorun/xml/nodes.bak create mode 100644 autorun/xml/swarm.bak diff --git a/autorun/commander/Commander.py b/autorun/commander/Commander.py index 871271d..8e4a434 100644 --- a/autorun/commander/Commander.py +++ b/autorun/commander/Commander.py @@ -34,9 +34,11 @@ class Commander(Thread): def simpleC(self, comm, argv): if comm == 'list': for node in self.nodes.getNodes(): - self.printNodeInfo(node) - si = self.swarm.getSIByNode(node) - self.printClientInfo(si) + if node: + self.printNodeInfo(node) + si = self.swarm.getSIByNode(node) + if si: + self.printClientInfo(si) if comm == 'help': print "List of commands:" keys = self.commands.keys() @@ -242,7 +244,7 @@ class Commander(Thread): def run(self): self.about() - self.update() + #self.update() while True: try: input = raw_input("commander> ") @@ -266,9 +268,8 @@ class Commander(Thread): " KB/s" + ", Up:" +si.upload_limit + " KB/s" + ')' def about(self): - print "Commander version 1.2\nEnter \"help\" for instructions\n" + print 'Commander version 1.2\nEnter "help" for instructions\n' if __name__ == "__main__": c = Commander("../xml/nodes.xml", "../xml/swarm.xml") c.start() - diff --git a/autorun/commander/XMLParser.py b/autorun/commander/XMLParser.py index a4f7b57..6dacf2d 100644 --- a/autorun/commander/XMLParser.py +++ b/autorun/commander/XMLParser.py @@ -123,9 +123,9 @@ class Swarm: def getSIs(self): return self.swarm -#~ swarm = Swarm("swarm.xml") -#~ for si in swarm.getSIs(): - #~ print si +#swarm = Swarm("../xml/swarm.xml") +#for si in swarm.getSIs(): +# print si #nodes = Nodes("../xml/nodes.xml") #for node in nodes.getNodes(): diff --git a/autorun/xml/genxml.py b/autorun/xml/genxml.py new file mode 100755 index 0000000..2fe197a --- /dev/null +++ b/autorun/xml/genxml.py @@ -0,0 +1,76 @@ +#!/usr/bin/python +from lxml import etree +import sys + +containers = ["01", "02", "03", "04", "05", "06", "07", "08", "09", "10"] +#containers=["01"] +machine_template = "141.85.224.2xx" +machine_template = "141.85.224.2xx" +sshp_template = "1xx22" +bittorentp_template = "1xx69" +commanderp_template = "1xx04" + +client_paths = { +"tribler":"/home/p2p/p2p-clients/tribler", +"hrktorrent": "/home/p2p/p2p-clients/hrktorrent", +"transmission": "/home/p2p/p2p-clients/transmission/cli" +} + +torrent_file = "so-vm-linux-krypton.tar.gz" +bittorent_client = "tribler" + +def genxmls(bittorent_client, torrent_file): + torrent_path = "/home/p2p/p2p-meta/" + torrent_file +".torrent" + swarm = etree.Element("swarm") + (etree.SubElement(swarm, "torrent_file")).text = torrent_path + + nodes = etree.Element("nodes") + id=1 + for container1 in containers: + for container2 in containers: + node = etree.SubElement(nodes, "node", id=str(id)) + (etree.SubElement(node, "public_address")).text = machine_template.replace("xx", container1) + (etree.SubElement(node, "public_port")).text = bittorentp_template.replace("xx", container2) + (etree.SubElement(node, "public_iface")).text = "eth0" + (etree.SubElement(node, "private_address")).text = machine_template.replace("xx", container1) + (etree.SubElement(node, "private_port")).text = "" + (etree.SubElement(node, "private_iface")).text = "" + (etree.SubElement(node, "ssh_port")).text = sshp_template.replace("xx", container2) + (etree.SubElement(node, "username")).text = "p2p" + (etree.SubElement(node, "listen_port")).text = commanderp_template.replace("xx", container2) + (etree.SubElement(node, "daemon_dir")).text = "/home/p2p/cs-p2p-next/autorun/server/" + (etree.SubElement(node, "daemon_file")).text = "Server.py" + + clients = etree.SubElement(node, "clients") + for k,v in client_paths.iteritems(): + client= etree.SubElement(clients, "client", id=k) + (etree.SubElement(client, "base")).text = v + + instance = etree.SubElement(swarm, "instance", id=str(id)) + + (etree.SubElement(instance, "node")).text = str(id) + (etree.SubElement(instance, "client")).text = bittorent_client + (etree.SubElement(instance, "upload_limit")).text = "512" + (etree.SubElement(instance, "download_limit")).text = "256" + (etree.SubElement(instance, "download_dir")).text = "/home/p2p/p2p-dld/"+bittorent_client + (etree.SubElement(instance, "log_dir")).text = "/home/p2p/p2p-dld/"+bittorent_client + (etree.SubElement(instance, "log_file")).text = bittorent_client+"-"+torrent_file+".log" + (etree.SubElement(instance, "output_dir")).text = "/home/p2p/p2p-log/"+bittorent_client + (etree.SubElement(instance, "output_file")).text = bittorent_client+"-"+torrent_file+".out" + (etree.SubElement(instance, "actions")) + + id = id +1 + + et = etree.ElementTree(nodes) + et.write("nodes.xml", encoding='iso-8859-1', pretty_print=True) + et = etree.ElementTree(swarm) + et.write("swarm.xml", encoding='iso-8859-1', pretty_print=True) + +def main(): + if len(sys.argv) != 3: + print "Usage: \n\t %s bittorent_client torrent_file" % sys.argv[0] + sys.exit(0) + genxmls(sys.argv[1], sys.argv[2]) + +if __name__ == "__main__": + sys.exit(main()) \ No newline at end of file diff --git a/autorun/xml/nodes.bak b/autorun/xml/nodes.bak new file mode 100644 index 0000000..a1b3693 --- /dev/null +++ b/autorun/xml/nodes.bak @@ -0,0 +1,27 @@ + + + + 141.85.224.201 + 50800 + eth0 + 172.16.10.8 + + venet0:0 + 10822 + p2p + 10840 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/tribler + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/transmission/cli + + + + diff --git a/autorun/xml/nodes.xml b/autorun/xml/nodes.xml index a1b3693..1f6fc34 100644 --- a/autorun/xml/nodes.xml +++ b/autorun/xml/nodes.xml @@ -1,27 +1,2403 @@ - + - - 141.85.224.201 - 50800 - eth0 - 172.16.10.8 - - venet0:0 - 10822 - p2p - 10840 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/tribler - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/transmission/cli - - - + + 141.85.224.201 + 10169 + eth0 + 141.85.224.201 + + + 10122 + p2p + 10104 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.201 + 10269 + eth0 + 141.85.224.201 + + + 10222 + p2p + 10204 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.201 + 10369 + eth0 + 141.85.224.201 + + + 10322 + p2p + 10304 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.201 + 10469 + eth0 + 141.85.224.201 + + + 10422 + p2p + 10404 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.201 + 10569 + eth0 + 141.85.224.201 + + + 10522 + p2p + 10504 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.201 + 10669 + eth0 + 141.85.224.201 + + + 10622 + p2p + 10604 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.201 + 10769 + eth0 + 141.85.224.201 + + + 10722 + p2p + 10704 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.201 + 10869 + eth0 + 141.85.224.201 + + + 10822 + p2p + 10804 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.201 + 10969 + eth0 + 141.85.224.201 + + + 10922 + p2p + 10904 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.201 + 11069 + eth0 + 141.85.224.201 + + + 11022 + p2p + 11004 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.202 + 10169 + eth0 + 141.85.224.202 + + + 10122 + p2p + 10104 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.202 + 10269 + eth0 + 141.85.224.202 + + + 10222 + p2p + 10204 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.202 + 10369 + eth0 + 141.85.224.202 + + + 10322 + p2p + 10304 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.202 + 10469 + eth0 + 141.85.224.202 + + + 10422 + p2p + 10404 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.202 + 10569 + eth0 + 141.85.224.202 + + + 10522 + p2p + 10504 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.202 + 10669 + eth0 + 141.85.224.202 + + + 10622 + p2p + 10604 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.202 + 10769 + eth0 + 141.85.224.202 + + + 10722 + p2p + 10704 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.202 + 10869 + eth0 + 141.85.224.202 + + + 10822 + p2p + 10804 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.202 + 10969 + eth0 + 141.85.224.202 + + + 10922 + p2p + 10904 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.202 + 11069 + eth0 + 141.85.224.202 + + + 11022 + p2p + 11004 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.203 + 10169 + eth0 + 141.85.224.203 + + + 10122 + p2p + 10104 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.203 + 10269 + eth0 + 141.85.224.203 + + + 10222 + p2p + 10204 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.203 + 10369 + eth0 + 141.85.224.203 + + + 10322 + p2p + 10304 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.203 + 10469 + eth0 + 141.85.224.203 + + + 10422 + p2p + 10404 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.203 + 10569 + eth0 + 141.85.224.203 + + + 10522 + p2p + 10504 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.203 + 10669 + eth0 + 141.85.224.203 + + + 10622 + p2p + 10604 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.203 + 10769 + eth0 + 141.85.224.203 + + + 10722 + p2p + 10704 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.203 + 10869 + eth0 + 141.85.224.203 + + + 10822 + p2p + 10804 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.203 + 10969 + eth0 + 141.85.224.203 + + + 10922 + p2p + 10904 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.203 + 11069 + eth0 + 141.85.224.203 + + + 11022 + p2p + 11004 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.204 + 10169 + eth0 + 141.85.224.204 + + + 10122 + p2p + 10104 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.204 + 10269 + eth0 + 141.85.224.204 + + + 10222 + p2p + 10204 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.204 + 10369 + eth0 + 141.85.224.204 + + + 10322 + p2p + 10304 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.204 + 10469 + eth0 + 141.85.224.204 + + + 10422 + p2p + 10404 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.204 + 10569 + eth0 + 141.85.224.204 + + + 10522 + p2p + 10504 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.204 + 10669 + eth0 + 141.85.224.204 + + + 10622 + p2p + 10604 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.204 + 10769 + eth0 + 141.85.224.204 + + + 10722 + p2p + 10704 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.204 + 10869 + eth0 + 141.85.224.204 + + + 10822 + p2p + 10804 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.204 + 10969 + eth0 + 141.85.224.204 + + + 10922 + p2p + 10904 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.204 + 11069 + eth0 + 141.85.224.204 + + + 11022 + p2p + 11004 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.205 + 10169 + eth0 + 141.85.224.205 + + + 10122 + p2p + 10104 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.205 + 10269 + eth0 + 141.85.224.205 + + + 10222 + p2p + 10204 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.205 + 10369 + eth0 + 141.85.224.205 + + + 10322 + p2p + 10304 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.205 + 10469 + eth0 + 141.85.224.205 + + + 10422 + p2p + 10404 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.205 + 10569 + eth0 + 141.85.224.205 + + + 10522 + p2p + 10504 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.205 + 10669 + eth0 + 141.85.224.205 + + + 10622 + p2p + 10604 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.205 + 10769 + eth0 + 141.85.224.205 + + + 10722 + p2p + 10704 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.205 + 10869 + eth0 + 141.85.224.205 + + + 10822 + p2p + 10804 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.205 + 10969 + eth0 + 141.85.224.205 + + + 10922 + p2p + 10904 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.205 + 11069 + eth0 + 141.85.224.205 + + + 11022 + p2p + 11004 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.206 + 10169 + eth0 + 141.85.224.206 + + + 10122 + p2p + 10104 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.206 + 10269 + eth0 + 141.85.224.206 + + + 10222 + p2p + 10204 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.206 + 10369 + eth0 + 141.85.224.206 + + + 10322 + p2p + 10304 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.206 + 10469 + eth0 + 141.85.224.206 + + + 10422 + p2p + 10404 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.206 + 10569 + eth0 + 141.85.224.206 + + + 10522 + p2p + 10504 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.206 + 10669 + eth0 + 141.85.224.206 + + + 10622 + p2p + 10604 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.206 + 10769 + eth0 + 141.85.224.206 + + + 10722 + p2p + 10704 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.206 + 10869 + eth0 + 141.85.224.206 + + + 10822 + p2p + 10804 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.206 + 10969 + eth0 + 141.85.224.206 + + + 10922 + p2p + 10904 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.206 + 11069 + eth0 + 141.85.224.206 + + + 11022 + p2p + 11004 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.207 + 10169 + eth0 + 141.85.224.207 + + + 10122 + p2p + 10104 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.207 + 10269 + eth0 + 141.85.224.207 + + + 10222 + p2p + 10204 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.207 + 10369 + eth0 + 141.85.224.207 + + + 10322 + p2p + 10304 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.207 + 10469 + eth0 + 141.85.224.207 + + + 10422 + p2p + 10404 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.207 + 10569 + eth0 + 141.85.224.207 + + + 10522 + p2p + 10504 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.207 + 10669 + eth0 + 141.85.224.207 + + + 10622 + p2p + 10604 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.207 + 10769 + eth0 + 141.85.224.207 + + + 10722 + p2p + 10704 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.207 + 10869 + eth0 + 141.85.224.207 + + + 10822 + p2p + 10804 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.207 + 10969 + eth0 + 141.85.224.207 + + + 10922 + p2p + 10904 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.207 + 11069 + eth0 + 141.85.224.207 + + + 11022 + p2p + 11004 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.208 + 10169 + eth0 + 141.85.224.208 + + + 10122 + p2p + 10104 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.208 + 10269 + eth0 + 141.85.224.208 + + + 10222 + p2p + 10204 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.208 + 10369 + eth0 + 141.85.224.208 + + + 10322 + p2p + 10304 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.208 + 10469 + eth0 + 141.85.224.208 + + + 10422 + p2p + 10404 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.208 + 10569 + eth0 + 141.85.224.208 + + + 10522 + p2p + 10504 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.208 + 10669 + eth0 + 141.85.224.208 + + + 10622 + p2p + 10604 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.208 + 10769 + eth0 + 141.85.224.208 + + + 10722 + p2p + 10704 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.208 + 10869 + eth0 + 141.85.224.208 + + + 10822 + p2p + 10804 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.208 + 10969 + eth0 + 141.85.224.208 + + + 10922 + p2p + 10904 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.208 + 11069 + eth0 + 141.85.224.208 + + + 11022 + p2p + 11004 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.209 + 10169 + eth0 + 141.85.224.209 + + + 10122 + p2p + 10104 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.209 + 10269 + eth0 + 141.85.224.209 + + + 10222 + p2p + 10204 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.209 + 10369 + eth0 + 141.85.224.209 + + + 10322 + p2p + 10304 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.209 + 10469 + eth0 + 141.85.224.209 + + + 10422 + p2p + 10404 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.209 + 10569 + eth0 + 141.85.224.209 + + + 10522 + p2p + 10504 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.209 + 10669 + eth0 + 141.85.224.209 + + + 10622 + p2p + 10604 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.209 + 10769 + eth0 + 141.85.224.209 + + + 10722 + p2p + 10704 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.209 + 10869 + eth0 + 141.85.224.209 + + + 10822 + p2p + 10804 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.209 + 10969 + eth0 + 141.85.224.209 + + + 10922 + p2p + 10904 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.209 + 11069 + eth0 + 141.85.224.209 + + + 11022 + p2p + 11004 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.210 + 10169 + eth0 + 141.85.224.210 + + + 10122 + p2p + 10104 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.210 + 10269 + eth0 + 141.85.224.210 + + + 10222 + p2p + 10204 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.210 + 10369 + eth0 + 141.85.224.210 + + + 10322 + p2p + 10304 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.210 + 10469 + eth0 + 141.85.224.210 + + + 10422 + p2p + 10404 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.210 + 10569 + eth0 + 141.85.224.210 + + + 10522 + p2p + 10504 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.210 + 10669 + eth0 + 141.85.224.210 + + + 10622 + p2p + 10604 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.210 + 10769 + eth0 + 141.85.224.210 + + + 10722 + p2p + 10704 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.210 + 10869 + eth0 + 141.85.224.210 + + + 10822 + p2p + 10804 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.210 + 10969 + eth0 + 141.85.224.210 + + + 10922 + p2p + 10904 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + + + 141.85.224.210 + 11069 + eth0 + 141.85.224.210 + + + 11022 + p2p + 11004 + /home/p2p/cs-p2p-next/autorun/server/ + Server.py + + + /home/p2p/p2p-clients/transmission/cli + + + /home/p2p/p2p-clients/hrktorrent + + + /home/p2p/p2p-clients/tribler + + + diff --git a/autorun/xml/swarm.bak b/autorun/xml/swarm.bak new file mode 100644 index 0000000..5ca60e5 --- /dev/null +++ b/autorun/xml/swarm.bak @@ -0,0 +1,23 @@ + + + /home/p2p/p2p-meta/so-vm-linux-krypton.tar.gz.torrent + + 1 + transmission + 512 + 256 + /home/p2p/p2p-dld/transmission + /home/p2p/p2p-log/transmission + transmission-himym520.log + /home/p2p/p2p-log/transmission + transmission-himym520.out + + + + + + + + + + diff --git a/autorun/xml/swarm.xml b/autorun/xml/swarm.xml index 5ca60e5..c28f489 100644 --- a/autorun/xml/swarm.xml +++ b/autorun/xml/swarm.xml @@ -1,23 +1,1204 @@ - + - /home/p2p/p2p-meta/so-vm-linux-krypton.tar.gz.torrent - - 1 - transmission - 512 - 256 - /home/p2p/p2p-dld/transmission - /home/p2p/p2p-log/transmission - transmission-himym520.log - /home/p2p/p2p-log/transmission - transmission-himym520.out - - - - - - - - - + /home/p2p/p2p-meta/testfile.torrent + + 1 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 2 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 3 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 4 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 5 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 6 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 7 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 8 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 9 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 10 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 11 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 12 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 13 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 14 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 15 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 16 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 17 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 18 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 19 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 20 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 21 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 22 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 23 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 24 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 25 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 26 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 27 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 28 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 29 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 30 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 31 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 32 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 33 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 34 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 35 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 36 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 37 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 38 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 39 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 40 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 41 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 42 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 43 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 44 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 45 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 46 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 47 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 48 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 49 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 50 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 51 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 52 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 53 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 54 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 55 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 56 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 57 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 58 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 59 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 60 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 61 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 62 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 63 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 64 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 65 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 66 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 67 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 68 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 69 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 70 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 71 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 72 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 73 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 74 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 75 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 76 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 77 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 78 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 79 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 80 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 81 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 82 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 83 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 84 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 85 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 86 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 87 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 88 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 89 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 90 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 91 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 92 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 93 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 94 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 95 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 96 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 97 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 98 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 99 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + + + 100 + tribler + 512 + 256 + /home/p2p/p2p-dld/tribler + /home/p2p/p2p-dld/tribler + tribler-testfile.log + /home/p2p/p2p-log/tribler + tribler-testfile.out + + -- 2.20.1