Advertisement
Guest User

Untitled

a guest
Feb 16th, 2012
284
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.50 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 = 10
  7. max_peers_seed = 50
  8.  
  9. # Maximum number of simultanious uploads per torrent.
  10. max_uploads = 15
  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 = /home/fads/Torrents
  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 = /home/fads/.rtorrent
  23.  
  24. # Watch a directory for new torrents, and stop those that have been
  25. # deleted.
  26. schedule = watch_directory,5,5,load=/home/fads/.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. # The ip address reported to the tracker.
  39. #ip = 127.0.0.1
  40. #ip = rakshasa.no
  41.  
  42. # The ip address the listening socket and outgoing connections is
  43. # bound to.
  44. #bind = 127.0.0.1
  45. #bind = rakshasa.no
  46.  
  47. # Port range to use for listening.
  48. port_range = 6890-6999
  49.  
  50. # Start opening ports at a random position within the port range.
  51. port_random = no
  52.  
  53. # Check hash for finished torrents. Might be usefull until the bug is
  54. # fixed that causes lack of diskspace not to be properly reported.
  55. #check_hash = no
  56.  
  57. # Set whetever the client should try to connect to UDP trackers.
  58. use_udp_trackers = yes
  59.  
  60. # Alternative calls to bind and ip that should handle dynamic ip's.
  61. #schedule = ip_tick,0,1800,ip=rakshasa
  62. #schedule = bind_tick,0,1800,bind=rakshasa
  63.  
  64. # Encryption options, set to none (default) or any combination of the following:
  65. # allow_incoming, try_outgoing, require, require_RC4, enable_retry, prefer_plaintext
  66. #
  67. # The example value allows incoming encrypted connections, starts unencrypted
  68. # outgoing connections but retries with encryption if they fail, preferring
  69. # plaintext to RC4 encryption after the encrypted handshake
  70. #
  71. # encryption = allow_incoming,enable_retry,prefer_plaintext
  72.  
  73. # Enable DHT support for trackerless torrents or when all trackers are down.
  74. # May be set to "disable" (completely disable DHT), "off" (do not start DHT),
  75. # "auto" (start and stop DHT as needed), or "on" (start DHT immediately).
  76. # The default is "off". For DHT to work, a session directory must be defined.
  77. #
  78. dht = auto
  79.  
  80. # UDP port to use for DHT.
  81. #
  82. dht_port = 6881
  83.  
  84. # Enable peer exchange (for torrents not marked private)
  85. #
  86. peer_exchange = yes
  87.  
  88. #
  89. # Do not modify the following parameters unless you know what you're doing.
  90. #
  91.  
  92. # Hash read-ahead controls how many MB to request the kernel to read
  93. # ahead. If the value is too low the disk may not be fully utilized,
  94. # while if too high the kernel might not be able to keep the read
  95. # pages in memory thus end up trashing.
  96. #hash_read_ahead = 10
  97.  
  98. # Interval between attempts to check the hash, in milliseconds.
  99. #hash_interval = 100
  100.  
  101. # Number of attempts to check the hash while using the mincore status,
  102. # before forcing. Overworked systems might need lower values to get a
  103. # decent hash checking rate.
  104. #hash_max_tries = 10
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement