Bittorent control option [Документация VAS Experts]

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
en:dpi:dpi_components:mediaserver:btrt:start [2018/04/29 16:42] – [Управление] kvazikraven:dpi:dpi_components:mediaserver:btrt:start [Unknown date] (current) – removed - external edit (Unknown date) 127.0.0.1
Line 1: Line 1:
-====== 5 Bittorent control option ====== 
-{{indexmenu_n>5}} 
-====== BTRT - BitTorrent Proxy Tracker ====== 
-===== Description ===== 
-BTRT is a BitTorrent tracker allowing to optimize the network traffic distribution in favor of reducing traffic to external networks by increasing the amount of intranet traffic. Reducing the network traffic volume to external networks is achieved by prioritization of peer IP addresses in response to //announce// requests: according to the [[#The main configuration file /etc/btrt/btrt.conf|configuration]] IP addresses of the operator's network peers are replied in the first place. 
  
-BTRT replies to standard BitTorrent client HTTP requests: //announce// and //scrape//, also it designed to handle non-standard //forwarded_announce// requests, more details on it see [[#Handling of requests to external trackers|here]]. 
- 
- 
- 
-===== Hardware requirements ===== 
-The main requirement is imposed to the RAM size. BTRT holds the data about all torrent files and peers and more. To calculate the required amount of RAM you can use as basis of 512 bytes per peer. 
- 
- 
-===== Software requirements ===== 
-BTRT runs on CentOS 6. To install the BTRT the following packages should be installed on the system: 
-  * ''mysql-server'', version 5.1.73 or later 
-  * ''mysql-connector-c++'' version 1.1.5 or later 
- 
-===== Use cases ===== 
-==== Local retracking ==== 
-The simplest way to use BTRT is to use it as a local retracker. Several trackers that the BitTorrent client should access by sending // announce // requests can be specified in torrent-files. Special name ''retracker.local'' is used for local retracking. Local retracking is provided by forwarding requests to the ''retracker.local'' on BTRT. 
- 
-==== "Adjacent" retrackers data using ==== 
-Local retracking allows to redistribute traffic only within the operator's network and provides a reduction in volumes of traffic to external networks only through operator's customers. The operator often has a contractual relationship with partners which implies a lower traffic cost in the networks of partners. If the tracker is launched in the partner's network, the use of peers registered on this server allows to reduce the traffic volumes in external networks. 
-When processing //announce// requests BTRT enables to use not only local peers data but also to request the data from retrackers operating in partner networks. In response to //announce// request  in this case BitTorrent client is sent the IP addresses of peers registered  both in operator's network and in partner networks resulting in redistribution of traffic generated by BitTorrent clients. 
-==== Handling of requests to external trackers ==== 
-BTRT handles the //forwarded_announce// requests generated by DPI platform. //Forwarded_announce// requests stand for //announce// requests sent to external BitTorrent trackers, which in turn are intercepted by DPI platform and forwarded to the BTRT. 
- 
-When the //forwarded_announce// request is processed, BTRT, if necessary, sends the request to an external (third-party) tracker for the list of peers, but a list of peers is formed according to the peers priorities specified in the configuration (local peers, partner peers, etc.) and then the list is sent to the BitTorren client. So having enough peers in operator and partner networks, it's possible to significantly limit the bandwidth when communicating with the external peers, so to redistribute the traffic in such a way that the intranet traffic will be increased. 
-===== Installation ===== 
-The packet and its dependencies should be installed in order to properly install the application initially. It could be done by applying the command: 
-<code bash>    
-sudo yum install btrt 
-</code> 
- 
-BTRT uses MySQL database. To perform further installation steps, you must run the service ** mysqld **: 
-<code bash> 
-sudo service mysqld start 
-</code> 
- 
-User account and MySQL schema should be created before the first launch of BTRT (existing user account can also be used). 
-It is highly recommended to create specific MySQL account for the BTRT. To do so, you need to connect to the MySQL server with superuser privileges: 
-<code bash> 
-mysql -hlocalhost -uroot -p 
-</code> 
- 
-and  execute the account and schema creation commands providing user password: 
-<code mysql> 
-CREATE USER 'btrt'@'localhost' IDENTIFIED BY 'password_for_btrt_user'; 
-CREATE DATABASE btrt; 
-GRANT ALL PRIVILEGES ON btrt.* TO 'btrt'@'localhost';  
-</code> 
- 
-After the account is created, you have to finish the privileged MySQL session by pressing the key combination ** Ctrl-D **. 
-and create objects in the BTRT data schema, providing the name and password of the previously created MySQL user: 
-<code bash> 
-mysql -hlocalhost -ubtrt -p < /etc/btrt/btrt.db_creation.sql 
-</code> 
- 
-Before the first start, you have to create an //__/etc/btrt/btrt.conf__// configuration file based on the //__/etc/btrt/btrt.conf.default__// configuration template. More details on configuration is [[#Configuration|here]].  
- 
-        
- 
-===== Updating ===== 
-To update a previously installed application, the tracker service should be stopped: 
-<code bash> 
-sudo service btrt stop 
-</code> 
- 
-then the updated btrt packet should be installed: 
-<code bash> 
-sudo yum update btrt 
-</code> 
- 
-When upgrading from version 2.1 and below, you need to update the database structure: 
-<code bash> 
-mysql -hlocalhost -ubtrt -p < /etc/btrt/btrt.db_upgrade_2.1.0.sql 
-</code> 
- 
-The consistency of the [[#Configuration|configuration]] has to be checked due to the possible changes therein caused by upgrading, and then to launch the tracker service: 
-<code bash> 
-sudo service btrt start 
-</code> 
- 
- 
- 
-===== Configuration ===== 
-The main configuration file is //__/etc/btrt/btrt.conf__//. The configuration in this file is specified in the [[https://ru.wikipedia.org/wiki/YAML|YAML]] format. 
- 
-==== Формат YAML ==== 
-The base [[https://ru.wikipedia.org/wiki/YAML|YAML]] elements are: 
-  * "Key-Value" pair, for example:\\ ''level: "info"''\\ 
- 
-  * value sequence, for example:\\ ''- "127.0.0.0/8"''\\ ''- "192.168.0.0/16"'' 
-  *  
-It is possible to create complex data structures by using the basic elements. 
- 
-One of the key principles describing complex structures behind the [[https://ru.wikipedia.org/wiki/YAML|YAML]] format is the rule of formatting nested elements using the indents from the beginning of a line. The same hierarchy level elements should have the same number of leading spaces, for example, the following text: 
-<code bash> 
-# 
-# Logging parameters 
-logging: 
-    path:           "/var/log/btrt"     # Path to log files, default: /var/log/btrt 
-    level:          "info"              # Possible levels are: 
-                                        #   critical, error, warning, info, diagnostic, debug 
-                                        # default logging level is "info" 
-    switch_time:    "01:00:00"          # Log switching time in format "HH:MI:SS", default: "01:00:00" 
-</code> 
- 
-can be interpreted as data structure ''logging'' containing three fields: ''path'', ''level'' and ''switch_time''. 
- 
-As pointed out above, given that the guiding principle for editing documents in [[https://ru.wikipedia.org/wiki/YAML|YAML]] format **__is to use a certain number of whitespace characters to form indents instead of using tabs__**. 
- 
-==== The main configuration file /etc/btrt/btrt.conf ==== 
-The main configuration file contains the description of most parameters used by the BTRT. Initially, when the package is installed, the configuration template //__/etc/btrt/btrt.conf.default__// file is created. It describes all of the settings and options with corresponding comments and can be used to create the working configuration. 
- 
-To create a working configuration, the following parameters have to be modified at least: 
- 
-Description of connection to the MySQL database: 
-<code bash> 
-database: 
-    url:        "tcp://127.0.0.1:3306"  # URL for connection to MySQL, default: "tcp://127.0.0.1:3306" 
-    user:       "root"                  # User name, default: "root" 
-    password:   "root"                  # Password 
-    schema:     "btrt"                  # Schema name, default: "btrt" 
-</code> 
- 
-Description of the IP addresses pools: 
-<code bash> 
-    peer_groups: 
-        # It is useful to have definition for peers in local network.  
-        # It can be used when peer from the local network is registered on non-local tracker (neighbor, forwarded tracker) 
-        -   name:       "local peers" 
-            priority:   0 
-            cidr_file:  "/etc/btrt/local_cidrs.conf" 
-            cidr_list: 
-                - 
- 
-        # neighboring peers is used to identifying range of IP-addresses of peers connected to neighboring trackers 
-        -   name:       "neighboring peers" 
-            priority:   1 
-            cidr_file:  "/etc/btrt/neighboring_cidrs.conf" 
-            cidr_list: 
-                - 
-</code> 
- 
-Description of the "neighbors" trackers: 
-<code bash> 
-    neighbors: 
-        -   name:                   "the nearest retracker" 
-            refresh_interval:       1800 
-            peers_expiry_interval:  7200   
-            announce_request:       "http://retracker.mgts.by/announce?info_hash={info_hash}&peer_id=0123456789012345678A&port=6882&downloaded=0&uploaded=0&left=4194304&event=started&compact=1&numwant=1000" 
-</code> 
- 
- 
-===== Control ===== 
-The main executable tracker file is ''/usr/sbin/btrt''.\\ To display the prompting message, the following command should be launched: 
-<code bash> 
-btrt help 
-</code> 
- 
-The tracker operates as a service. So to start the service, execute the following command: 
-<code bash> 
-sudo service btrt start 
-</code> 
- 
-to stop the service: 
-<code bash> 
-sudo service btrt stop 
-</code> 
- 
-The log files are created accrording to the settings specified in configuration file during the tracker operates. Log files are created in the directory ''/var/log/btrt'' by default.