Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.22 KB | None | 0 0
  1. Maximum and minimum number of peers to connect to per torrent.
  2. #min_peers = 40
  3. max_peers = 100
  4.  
  5. # Same as above but for seeding completed torrents (-1 = same as downloading)
  6. min_peers_seed = -1
  7. max_peers_seed = -1
  8.  
  9. # Maximum number of simultanious uploads per torrent.
  10. max_uploads = 50
  11.  
  12. # Global upload and download rate in KiB. "0" for unlimited.
  13. download_rate = 0
  14. upload_rate = 0
  15.  
  16. # Default directory to save the downloaded torrents.
  17. directory = /torrents/downloads/
  18.  
  19. # Default session directory. Make sure you don't run multiple instance
  20. # of rtorrent using the same session directory. Perhaps using a
  21. # relative path?
  22. session = /torrents/downloads/.session
  23.  
  24. # Watch a directory for new torrents, and stop those that have been
  25. # deleted.
  26. schedule = watch_directory,5,5,load_start=/torrents/watch/*.torrent
  27. schedule = untied_directory,5,5,stop_untied=
  28.  
  29. # Close torrents when diskspace is low. */
  30. schedule = low_diskspace,5,60,close_low_diskspace=100M
  31.  
  32. # Stop torrents when reaching upload ratio in percent,
  33. # when also reaching total upload in bytes, or when
  34. # reaching final upload ratio in percent.
  35. # example: stop at ratio 2.0 with at least 200 MB uploaded, or else ratio 20.0
  36. #schedule = ratio,60,60,stop_on_ratio=200,200M,2000
  37.  
  38.  
  39. # When the torrent finishes, it executes "mv -n <base_path> ~/Download/"
  40. # and then sets the destination directory to "~/Download/". (0.7.7+)
  41. # on_finished = move_complete,"execute=mv,-u,$d.get_base_path=,/home/downloads/<username>/complete/ ;d.set_directory=/home/downloads/<username>/complete/"
  42.  
  43. # The ip address reported to the tracker.
  44. #ip = 127.0.0.1
  45. #ip = rakshasa.no
  46.  
  47. # The ip address the listening socket and outgoing connections is
  48. # bound to.
  49. #bind = 127.0.0.1
  50. #bind = rakshasa.no
  51.  
  52. # Port range to use for listening.
  53. port_range = 55995-56000
  54.  
  55. # Start opening ports at a random position within the port range.
  56. #port_random = yes
  57.  
  58. scgi_port = 127.0.0.1:5000
  59.  
  60. # Check hash for finished torrents. Might be usefull until the bug is
  61. # fixed that causes lack of diskspace not to be properly reported.
  62. #check_hash = no
  63.  
  64. # Set whetever the client should try to connect to UDP trackers.
  65. #use_udp_trackers = no
  66.  
  67. # Alternative calls to bind and ip that should handle dynamic ip's.
  68. #schedule = ip_tick,0,1800,ip=rakshasa
  69. #schedule = bind_tick,0,1800,bind=rakshasa
  70.  
  71. # Encryption options, set to none (default) or any combination of the following:
  72. # allow_incoming, try_outgoing, require, require_RC4, enable_retry, prefer_plaintext
  73. #
  74. # The example value allows incoming encrypted connections, starts unencrypted
  75. # outgoing connections but retries with encryption if they fail, preferring
  76. # plaintext to RC4 encryption after the encrypted handshake
  77. #
  78. encryption = allow_incoming,enable_retry,prefer_plaintext
  79.  
  80. # Enable DHT support for trackerless torrents or when all trackers are down.
  81. # May be set to "disable" (completely disable DHT), "off" (do not start DHT),
  82. # "auto" (start and stop DHT as needed), or "on" (start DHT immediately).
  83. # The default is "off". For DHT to work, a session directory must be defined.
  84. #
  85. dht = disable
  86.  
  87. # UDP port to use for DHT.
  88. #
  89. # dht_port = 6881
  90.  
  91. # Enable peer exchange (for torrents not marked private)
  92. #
  93. peer_exchange = no
  94.  
  95. #
  96. # Do not modify the following parameters unless you know what you're doing.
  97. #
  98.  
  99. # Hash read-ahead controls how many MB to request the kernel to read
  100. # ahead. If the value is too low the disk may not be fully utilized,
  101. # while if too high the kernel might not be able to keep the read
  102. # pages in memory thus end up trashing.
  103. #hash_read_ahead = 10
  104.  
  105. # Interval between attempts to check the hash, in milliseconds.
  106. #hash_interval = 100
  107.  
  108. # Number of attempts to check the hash while using the mincore status,
  109. # before forcing. Overworked systems might need lower values to get a
  110. # decent hash checking rate.
  111. #hash_max_tries = 10
  112.  
  113. # Max number of files to keep open simultaniously.
  114. #max_open_files = 128
  115.  
  116. # Number of sockets to simultaneously keep open.
  117. #max_open_sockets = <no default>
  118.  
  119.  
  120. # Example of scheduling commands: Switch between two ip's every 5
  121. # seconds.
  122. #schedule = "ip_tick1,5,10,ip=torretta"
  123. #schedule = "ip_tick2,10,10,ip=lampedusa"
  124.  
  125. # Remove a scheduled event.
  126. #schedule_remove = "ip_tick1"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement