Advertisement
Guest User

Lakers

a guest
May 15th, 2009
3,055
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.72 KB | None | 0 0
  1. #This s 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 = 40
  7. max_peers = 300
  8.  
  9. # Same as above but for seeding completed torrents (-1 = same as downloading)
  10. min_peers_seed = 10
  11. max_peers_seed = 350
  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 = 10000
  18. upload_rate = 15000
  19.  
  20. # Default directory to save the downloaded torrents.
  21. directory = /home/admin/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 = /home/admin/.session
  27.  
  28. # Watch a directory for new torrents, and stop those that have been
  29. # deleted.
  30. schedule = watch_directory,5,5,load_start=/home/admin/torrents/*.torrent
  31. #schedule = untied_directory,5,5,stop_untied=
  32.  
  33. # Close torrents when diskspace is low.
  34. #schedule = low_diskspace,5,60,close_low_diskspace=500M
  35.  
  36. # Stop torrents when reaching upload ratio in percent,
  37. # when also reaching total upload in bytes, or when
  38. # reaching final upload ratio in percent.
  39. # example: stop at ratio 2.0 with at least 200 MB uploaded, or else ratio 20.0
  40. #schedule = ratio,60,60,stop_on_ratio=200,200M,2000
  41.  
  42. # The ip address reported to the tracker.
  43. #ip = 127.0.0.1
  44. #ip = rakshasa.no
  45.  
  46. # The ip address the listening socket and outgoing connections is
  47. # bound to.
  48. #bind = 127.0.0.1
  49. #bind = rakshasa.no
  50.  
  51. # Port range to use for listening.
  52. port_range = 62788-62900
  53.  
  54. scgi_port = localhost:5000
  55.  
  56. # Start opening ports at a random position within the port range.
  57. #port_random = no
  58.  
  59. # Check hash for finished torrents. Might be usefull until the bug is
  60. # fixed that causes lack of diskspace not to be properly reported.
  61. check_hash = no
  62.  
  63. # Set whetever the client should try to connect to UDP trackers.
  64. #use_udp_trackers = yes
  65.  
  66. # Alternative calls to bind and ip that should handle dynamic ip's.
  67. #schedule = ip_tick,0,1800,ip=rakshasa
  68. #schedule = bind_tick,0,1800,bind=rakshasa
  69.  
  70. # Encryption options, set to none (default) or any combination of the following:
  71. # allow_incoming, try_outgoing, require, require_RC4, enable_retry, prefer_plaintext
  72. #
  73. # The example value allows incoming encrypted connections, starts unencrypted
  74. # outgoing connections but retries with encryption if they fail, preferring
  75. # plaintext to RC4 encryption after the encrypted handshake
  76. #
  77. encryption = allow_incoming,enable_retry,prefer_plaintext
  78. # encryption = allow_incoming,try_outgoing
  79.  
  80. #
  81. # Do not modify the following parameters unless you know what you're doing.
  82. #
  83.  
  84. # Hash read-ahead controls how many MB to request the kernel to read
  85. # ahead. If the value is too low the disk may not be fully utilized,
  86. # while if too high the kernel might not be able to keep the read
  87. # pages in memory thus end up trashing.
  88. hash_read_ahead = 64
  89.  
  90. # Interval between attempts to check the hash, in milliseconds.
  91. hash_interval = 2
  92.  
  93. # Number of attempts to check the hash while using the mincore status,
  94. # before forcing. Overworked systems might need lower values to get a
  95. # decent hash checking rate.
  96. hash_max_tries = 2
  97.  
  98. # Max number of files to keep open simultaniously.
  99. max_open_files = 256
  100.  
  101. # Number of sockets to simultaneously keep open.
  102. #max_open_sockets = <no default>
  103.  
  104.  
  105. # Example of scheduling commands: Switch between two ip's every 5
  106. # seconds.
  107. #schedule = "ip_tick1,5,10,ip=torretta"
  108. #schedule = "ip_tick2,10,10,ip=lampedusa"
  109.  
  110. # Remove a scheduled event.
  111. #schedule_remove = "ip_tick1"
  112.  
  113. dht = disable
  114.  
  115. max_memory_usage = 800M
  116.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement