Advertisement
hu6

.rtorrent.rc

hu6
Jan 4th, 2013
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.45 KB | None | 0 0
  1. # This is an example resource file for rTorrent. Copy to
  2. # ~/.rtorrent.rc and enable/modify the options as needed. Remember to
  3. # uncomment the options you wish to enable.
  4.  
  5. # Maximum and minimum number of peers to connect to per torrent.
  6. min_peers = 1
  7. max_peers = 500
  8.  
  9. # Same as above but for seeding completed torrents (-1 = same as downloading)
  10. min_peers_seed = 1
  11. max_peers_seed = 150
  12.  
  13. # Maximum number of simultanious uploads per torrent.
  14. max_uploads = 15
  15.  
  16. # Global upload and download rate in KiB. "0" for unlimited.
  17. download_rate = 0
  18. upload_rate = 0
  19.  
  20. # Default directory to save the downloaded torrents.
  21. directory = ~/Downloads/
  22.  
  23. # Default session directory. Make sure you don't run multiple instance
  24. # of rtorrent using the same session directory. Perhaps using a
  25. # relative path?
  26. #session = ./session
  27. session = ~/.session/
  28.  
  29. # Watch a directory for new torrents, and stop those that have been
  30. # deleted.
  31. #schedule = watch_directory,5,5,load_start=./watch/*.torrent
  32. #schedule = untied_directory,5,5,stop_untied=
  33.  
  34. # Close torrents when diskspace is low.
  35. #schedule = low_diskspace,5,60,close_low_diskspace=100M
  36.  
  37. # The ip address reported to the tracker.
  38. #ip = 127.0.0.1
  39. #ip = rakshasa.no
  40.  
  41. # The ip address the listening socket and outgoing connections is
  42. # bound to.
  43. #bind = 127.0.0.1
  44. #bind = rakshasa.no
  45.  
  46. # Port range to use for listening.
  47. port_range = 64866-64866
  48.  
  49. # Start opening ports at a random position within the port range.
  50. port_random = no
  51.  
  52. # Check hash for finished torrents. Might be usefull until the bug is
  53. # fixed that causes lack of diskspace not to be properly reported.
  54. check_hash = yes
  55.  
  56. # Set whetever the client should try to connect to UDP trackers.
  57. use_udp_trackers = yes
  58.  
  59. # Alternative calls to bind and ip that should handle dynamic ip's.
  60. #schedule = ip_tick,0,1800,ip=rakshasa
  61. #schedule = bind_tick,0,1800,bind=rakshasa
  62.  
  63. # Encryption options, set to none (default) or any combination of the following:
  64. # allow_incoming, try_outgoing, require, require_RC4, enable_retry, prefer_plaintext
  65. #
  66. # The example value allows incoming encrypted connections, starts unencrypted
  67. # outgoing connections but retries with encryption if they fail, preferring
  68. # plaintext to RC4 encryption after the encrypted handshake
  69. #
  70. encryption = allow_incoming,try_outgoing,enable_retry,prefer_plaintext
  71.  
  72. # Enable DHT support for trackerless torrents or when all trackers are down.
  73. # May be set to "disable" (completely disable DHT), "off" (do not start DHT),
  74. # "auto" (start and stop DHT as needed), or "on" (start DHT immediately).
  75. # The default is "off". For DHT to work, a session directory must be defined.
  76. #
  77. dht = auto
  78.  
  79. # UDP port to use for DHT.
  80. #
  81. # dht_port = 6881
  82. dht_port = 64866
  83. #scgi_port = 127.0.0.1:5001
  84.  
  85. # Enable peer exchange (for torrents not marked private)
  86. #
  87. peer_exchange = yes
  88.  
  89. #
  90. # Do not modify the following parameters unless you know what you're doing.
  91. #
  92.  
  93. # Hash read-ahead controls how many MB to request the kernel to read
  94. # ahead. If the value is too low the disk may not be fully utilized,
  95. # while if too high the kernel might not be able to keep the read
  96. # pages in memory thus end up trashing.
  97. #hash_read_ahead = 10
  98.  
  99. # Interval between attempts to check the hash, in milliseconds.
  100. #hash_interval = 100
  101.  
  102. # Number of attempts to check the hash while using the mincore status,
  103. # before forcing. Overworked systems might need lower values to get a
  104. # decent hash checking rate.
  105. #hash_max_tries = 10
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement