|
From: Jonathan L. <le...@us...> - 2006-12-01 17:33:19
|
Update of /cvsroot/pyxida/Pyxida/config In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1000/config Modified Files: log.config pyxida.cfg Log Message: runs ICMP Index: log.config =================================================================== RCS file: /cvsroot/pyxida/Pyxida/config/log.config,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** log.config 1 Dec 2006 15:31:28 -0000 1.4 --- log.config 1 Dec 2006 17:33:15 -0000 1.5 *************** *** 51,52 **** --- 51,54 ---- edu.harvard.syrah.pyxida.level = DEBUG + edu.harvard.syrah.pyxida.ping.level = INFO + Index: pyxida.cfg =================================================================== RCS file: /cvsroot/pyxida/Pyxida/config/pyxida.cfg,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** pyxida.cfg 30 Nov 2006 13:00:42 -0000 1.5 --- pyxida.cfg 1 Dec 2006 17:33:15 -0000 1.6 *************** *** 3,7 **** ############################## ! # This is the configuration file for an PYXIDA node. # It should be the same for all nodes. --- 3,7 ---- ############################## ! # This is the configuration file for a Pyxida node. # It should be the same for all nodes. *************** *** 10,16 **** ############################## pyxida.port=55500 pyxida.bootstraplist=glenora.eecs.harvard.edu sb01.eecs.harvard.edu sb02.eecs.harvard.edu sb10.eecs.harvard.edu sb11.eecs.harvard.edu ! pyxida.use_icmp=false --- 10,33 ---- ############################## + # Port = integer in port range + # Port number over which overlay communication will take place. pyxida.port=55500 + # Api.Port = integer in port range + # Port number that XML/RPC server listens on. + # pyxida.api.port=55501 + + # Bootstrap list = list of overlay nodes + # Small subset of the overlay. + # Nodes learn about the rest of the system through gossip. + # Separate entries with a single whitespace. pyxida.bootstraplist=glenora.eecs.harvard.edu sb01.eecs.harvard.edu sb02.eecs.harvard.edu sb10.eecs.harvard.edu sb11.eecs.harvard.edu ! # Use ICMP = boolean ! # False: use round trip time for gossip messages ! # as measure of inter-node latency. ! # True: use JPCAP library to generate ICMP (or TCP echo) ! # packets to measure latency. This will generate more ! # accurate and consistent results but requires ! # that you run the code as root. ! pyxida.use_icmp=true |