.rtorrent.rc 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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. # Maximum and minimum number of peers to connect to per torrent.
  5. #min_peers = 1
  6. #max_peers = 100
  7. # Same as above but for seeding completed torrents (-1 = same as downloading)
  8. #min_peers_seed = 1
  9. #max_peers_seed = 50
  10. # Maximum number of uploads single torrent may use
  11. max_uploads = 10
  12. # Maximum number of simultaneous downloads
  13. #max_downloads_global = 10
  14. # Maximum number of simultaneous uploads
  15. #max_uploads_global = 20
  16. # Global upload and download rate in KiB. "0" for unlimited.
  17. #download_rate = 0
  18. #upload_rate = 300
  19. # Default directory to save the downloaded torrents.
  20. directory = ./Downloads
  21. # Default session directory. Make sure you don't run multiple instance
  22. # of rtorrent using the same session directory. Perhaps using a
  23. # relative path?
  24. session = ./.rtorrent
  25. # Watch a directory for new torrents, and stop those that have been
  26. # deleted.
  27. #schedule = watch_directory,5,5,load_start=./rtactive/*.torrent
  28. #schedule = tied_directory,6,5,start_tied=
  29. #schedule = untied_directory,7,5,stop_untied=
  30. # Close torrents when diskspace is low.
  31. schedule = low_diskspace,5,60,close_low_diskspace=2000M
  32. # Periodically save session data
  33. #schedule = session_save,240,300,session_save=
  34. # Enable the default ratio group.
  35. #ratio.enable=
  36. # Change the limits, the defaults should be sufficient.
  37. # Upload to a minimum ratio of 4.0
  38. #ratio.min.set=400
  39. # Upload to a maximum ratio of 20.0
  40. #ratio.max.set=2000
  41. # Upload a minimum of 250 MB
  42. #ratio.upload.set=250M
  43. # When seeding ratio is reached close the torrent
  44. #system.method.set = group.seeding.ratio.command, d.close=
  45. # Move files to ./unsorted when download completes
  46. #system.method.set_key = event.download.finished,move_complete,"execute=mv,-n,$d.get_base_path=,./unsorted/;d.set_directory=./unsorted/"
  47. # Port range to use for listening.
  48. port_range = 33101-33199
  49. # Start opening ports at a random position within the port range.
  50. port_random = yes
  51. # Encryption options, set to none (default) or any combination of the following:
  52. # allow_incoming, try_outgoing, require, require_RC4, enable_retry, prefer_plaintext
  53. #
  54. # The example value allows incoming encrypted connections, starts unencrypted
  55. # outgoing connections but retries with encryption if they fail, preferring
  56. # plaintext to RC4 encryption after the encrypted handshake
  57. #
  58. encryption = allow_incoming,try_outgoing,enable_retry,prefer_plaintext
  59. # Sort the main view by ratio
  60. #view.sort_current = main,greater=d.get_ratio=
  61. #view.sort_new = main,less=d.get_ratio=
  62. #view.sort = main
  63. # Sort the seeding view by the upload rate and only show torrents with peers
  64. #view.sort_current = seeding,greater=d.get_up_rate=
  65. #view.filter = seeding,"and=d.get_complete=,d.get_peers_connected="
  66. #view.sort_new = seeding,less=d.get_up_rate=
  67. #view.sort = seeding
  68. # Sort the leeching view by name
  69. #view.sort_current = leeching,greater=d.get_name=
  70. #view.sort_new = leeching,greater=d.get_name=
  71. #view.sort = leeching
  72. # Filter the active view by connected peers
  73. #view.sort_current = active,less=d.get_name=
  74. #view.sort_new = leeching,less=d.get_name=
  75. #view.filter = active,d.get_peers_connected=
  76. #view.sort = active
  77. #schedule = sort_main,11,5,view.sort=main
  78. #schedule = sort_seeding,12,5,view.sort=seeding
  79. #schedule = sort_leeching,13,5,view.sort=leeching
  80. #schedule = sort_active,14,5,view.sort=active
  81. # Enable DHT support for trackerless torrents or when all trackers are down.
  82. # May be set to "disable" (completely disable DHT), "off" (do not start DHT),
  83. # "auto" (start and stop DHT as needed), or "on" (start DHT immediately).
  84. # The default is "off". For DHT to work, a session directory must be defined.
  85. #
  86. dht = auto
  87. # UDP port to use for DHT.
  88. #
  89. dht_port = 6881