[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[tor-commits] [sbws/master] Add sbws configuration man
commit e935af835d105374a0de08013a221a129a7f29b9
Author: juga0 <juga@xxxxxxxxxx>
Date: Wed Jul 25 00:48:26 2018 +0000
Add sbws configuration man
---
docs/source/man_sbws.ini.rst | 160 +++++++++++++++++++++++++++++++++++++++++++
1 file changed, 160 insertions(+)
diff --git a/docs/source/man_sbws.ini.rst b/docs/source/man_sbws.ini.rst
new file mode 100644
index 0000000..ff8848c
--- /dev/null
+++ b/docs/source/man_sbws.ini.rst
@@ -0,0 +1,160 @@
+Simple Bandwidth Scanner configuration file manual
+===================================================
+
+DESCRIPTION
+-----------
+
+Tor bandwidth scanner configuration file.
+
+SECTIONS
+---------
+
+general
+ data_period = INT
+ Days into the past that measurements are considered valid. (Default: 5)
+ http_timeout = INT
+ Timeout in seconds to give to the python Requests library. (Default: 10)
+ circuit_timeout = INT
+ Timeout in seconds to create circuits. (Default: 10)
+ reset_bw_ipv4_changes = {on, off}
+ Whether or not to reset the bandwidth measurements when the relay's IP
+ address changes. If it changes, we only consider results for the relay that
+ we obtained while the relay was located at its most recent IP address.
+ (Default: on)
+ reset_bw_ipv6_changes = off
+ NOT implemented for IPv6.
+
+paths
+ sbws_home = STR
+ sbws home directory. (Default: ~/.sbws)
+ datadir = STR
+ Directory where sbws stores temporal bandwidth results files.
+ (Default: ~/.sbws/datadir)
+ v3bw_dname = STR
+ Directory where sbws stores the bandwidth list files.
+ These are the files to be read by the Tor Directory Authorities.
+ (Default: ~/.sbws/v3bw)
+ v3bw_fname = STR
+ File names of the bandwidth list files.
+ The latest bandwidth file is symlinked by ``latests.v3bw``
+ started_filepath = STR
+ File path to store the timestamp when the scanner was last started.
+ (Default: ~/.sbws/started_at)
+ log_dname = STR
+ Directory where to store log files when logging to files is enabled.
+ (Default ~/.sbws/log)
+
+destinations
+ usability_test_interval = INT
+ How often to check if a destination is usable
+
+tor
+ datadir = STR
+ sbws' owned tor directory. (Default: ~/.sbws/tor)
+ control_socket = STR
+ sbws's owned tor control socket file.
+ (Default: $XDG_RUNTIME_DIR/sbws/control)
+ pid = STR
+ sbws's owned tor pid file. (Default: $XDG_RUNTIME_DIR/sbws/tor.pid)
+ log = STR
+ sbws's owned tor directory log files. (Default: ~/.sbws/tor/log)
+ extra_lines =
+ sbws's tor extra configuration. (Default: None)
+
+scanner
+ nickname = STR
+ A human-readable string with chars in a-zA-Z0-9 to identify the scanner.
+ (Default: IDidntEditTheSBWSConfig)
+ download_toofast = INT
+ Limits on what download times are too fast/slow/etc. (Default: 1)
+ download_min = INT
+ Limits on what download times are too fast/slow/etc. (Default: 5)
+ download_target = INT
+ Limits on what download times are too fast/slow/etc. (Default: 6)
+ download_max = INT
+ Limits on what download times are too fast/slow/etc. (Default: 10)
+ num_rtts = INT
+ How many RTT measurements to make. (Default: 10)
+ num_downloads = INT
+ Number of downloads with acceptable times we must have for a relay before
+ moving on. (Default: 5)
+ initial_read_request = INT
+ The number of bytes to initially request from the server. (Default: 16384)
+ measurement_threads = INT
+ How many measurements to make in parallel. (Default: 3)
+ min_download_size = INT
+ Minimum number of bytes we should ever try to download in a measurement.
+ (Default: 1)
+ max_download_size = INT
+ Maximum number of bytes we should ever try to download in a measurement.
+ (Default: 1073741824) 1073741824 == 1 GiB
+
+relayprioritizer
+ measure_authorities = {on, off}
+ Whether or not to measure authorities. (Default: off)
+ fraction_relays = FLOAT
+ The target fraction of best priority relays we would like to return.
+ 0.05 is 5%. In a 7000 relay network, 5% is 350 relays. (Default: 0.05)
+ min_relays = INT
+ The minimum number of best priority relays we are willing to return.
+ (Default: 50)
+
+cleanup
+ stale_days = INT
+ After this many days, compress data files. (Default: 10)
+ rotten_days = INT
+ After this many days, delete data files. (Default: 90)
+
+logging
+ to_file = {yes, no}
+ Whether or not to log to a rotating file the directory paths.log_dname.
+ (Default: no)
+ to_stdout = {yes, no}
+ Whether or not to log to stdout. (Default: yes)
+ to_syslog = {yes, no}
+ Whether or not to log to syslog. (Default: no)
+ to_file_max_bytes = INT
+ If logging to file, how large (in bytes) should the file be allowed to get
+ before rotating to a new one. 10485760 is 10 MiB. If zero or number of
+ backups is zero, never rotate the log file. (Default: 10485760)
+ to_file_num_backups = INT
+ If logging to file, how many backups to keep. If zero or max bytes is zero,
+ never rotate the log file. (Default: 50)
+ level = {debug, info, warning, error, critical}
+ Level to log at. (Default: info)
+ to_file_level = {debug, info, warning, error, critical}
+ Level to log at when using files. (Default: info)
+ to_stdout_level = {debug, info, warning, error, critical}
+ Level to log at when using stdout. (Default: info)
+ to_syslog_level = {debug, info, warning, error, critical}
+ Level to log at when using syslog. (Default: info)
+ format = STR
+ Format string to use when logging.
+ (Default: [%(asctime)s] [%(name)s] [%(levelname)s] %(message)s)
+ to_file_format = STR
+ Format string to use when logging to files. (Default: $format)
+ to_stdout_format = STR
+ Format string to use when logging to stdout. (Default: $format)
+ to_syslog_format = STR
+ Format string to use when logging to syslog.
+ (Default: %(module)s[%(process)s]: <%(levelname)s> %(message)s)
+
+FILES
+-----
+
+$HOME/.sbws.ini
+ Default location for the sbws user configuration file.
+
+$HOME/.sbws
+ Default sbws home, where it stores measurement data files,
+ bandwidth list files and tor process data.
+
+SEE ALSO
+---------
+
+**sbws** (1), https://sbws.readthedocs.org.
+
+BUGS
+----
+
+Please report bugs at https://trac.torproject.org/.
\ No newline at end of file
_______________________________________________
tor-commits mailing list
tor-commits@xxxxxxxxxxxxxxxxxxxx
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits