aria2c.rst 145 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218
  1. aria2c(1)
  2. =========
  3. SYNOPSIS
  4. --------
  5. **aria2c** [<OPTIONS>] [<URI>|<MAGNET>|<TORRENT_FILE>|<METALINK_FILE>] ...
  6. DESCRIPTION
  7. -----------
  8. aria2 is a utility for downloading files. The supported protocols are
  9. HTTP(S), FTP, SFTP, BitTorrent, and Metalink. aria2 can download a
  10. file from multiple sources/protocols and tries to utilize your maximum
  11. download bandwidth. It supports downloading a file from HTTP(S)/FTP
  12. /SFTP and BitTorrent at the same time, while the data downloaded from
  13. HTTP(S)/FTP/SFTP is uploaded to the BitTorrent swarm. Using Metalink
  14. chunk checksums, aria2 automatically validates chunks of data while
  15. downloading a file.
  16. OPTIONS
  17. -------
  18. .. note::
  19. Most FTP related options are applicable to SFTP as well.
  20. Some options are not effective against SFTP (e.g., :option:`--ftp-pasv`)
  21. Basic Options
  22. ~~~~~~~~~~~~~
  23. .. option:: -d, --dir=<DIR>
  24. The directory to store the downloaded file.
  25. .. option:: -i, --input-file=<FILE>
  26. Downloads the URIs listed in ``FILE``. You can specify multiple sources for a
  27. single entity by putting multiple URIs on a single line separated by the
  28. :kbd:`TAB` character.
  29. Additionally, options can be specified after each URI line. Option lines
  30. must start with one or more white space characters (:kbd:`SPACE` or :kbd:`TAB`)
  31. and must only contain one option per line.
  32. Input files can use gzip compression.
  33. When ``FILE`` is specified as ``-``, aria2 will read the input from ``stdin``.
  34. See the `Input File`_ subsection for details.
  35. See also the :option:`--deferred-input` option.
  36. See also the :option:`--save-session-file` option.
  37. .. option:: -l, --log=<LOG>
  38. The file name of the log file. If ``-`` is specified, log is written to
  39. ``stdout``. If empty string("") is specified, or this option is omitted,
  40. no log is written to disk at all.
  41. .. option:: -j, --max-concurrent-downloads=<N>
  42. Set the maximum number of parallel downloads for every queue item.
  43. See also the :option:`--split <-s>` option.
  44. Default: ``5``
  45. .. option:: -V, --check-integrity[=true|false]
  46. Check file integrity by validating piece hashes or a hash of entire
  47. file. This option has effect only in BitTorrent, Metalink downloads
  48. with checksums or HTTP(S)/FTP downloads with
  49. :option:`--checksum` option. If
  50. piece hashes are provided, this option can detect damaged portions
  51. of a file and re-download them. If a hash of entire file is
  52. provided, hash check is only done when file has been already
  53. download. This is determined by file length. If hash check fails,
  54. file is re-downloaded from scratch. If both piece hashes and a hash
  55. of entire file are provided, only piece hashes are used. Default:
  56. ``false``
  57. .. option:: -c, --continue[=true|false]
  58. Continue downloading a partially downloaded file.
  59. Use this option to resume a download started by a web browser or another
  60. program which downloads files sequentially from the beginning.
  61. Currently this option is only applicable to HTTP(S)/FTP downloads.
  62. .. option:: -h, --help[=<TAG>|<KEYWORD>]
  63. The help messages are classified with tags. A tag starts with
  64. ``#``. For example, type ``--help=#http`` to get the usage for the
  65. options tagged with ``#http``. If non-tag word is given, print the
  66. usage for the options whose name includes that word. Available
  67. Values: ``#basic``, ``#advanced``, ``#http``, ``#https``, ``#ftp``,
  68. ``#metalink``, ``#bittorrent``, ``#cookie``, ``#hook``, ``#file``, ``#rpc``,
  69. ``#checksum``, ``#experimental``, ``#deprecated``, ``#help``, ``#all``
  70. Default: ``#basic``
  71. HTTP/FTP/SFTP Options
  72. ~~~~~~~~~~~~~~~~~~~~~
  73. .. option:: --all-proxy=<PROXY>
  74. Use a proxy server for all protocols. To override a previously
  75. defined proxy, use "". You also can override this setting and specify a
  76. proxy server for a particular protocol using :option:`--http-proxy`,
  77. :option:`--https-proxy` and :option:`--ftp-proxy` options. This affects all
  78. downloads.
  79. The format of PROXY is ``[http://][USER:PASSWORD@]HOST[:PORT]``.
  80. See also `ENVIRONMENT`_ section.
  81. .. note::
  82. If user and password are embedded in proxy URI and they are also
  83. specified by *--{http,https,ftp,all}-proxy-{user,passwd}* options,
  84. those specified later override prior options. For example, if you specified
  85. ``http-proxy-user=myname``, ``http-proxy-passwd=mypass`` in aria2.conf and
  86. you specified ``--http-proxy="http://proxy"`` on the command-line, then
  87. you'd get HTTP proxy ``http://proxy`` with user ``myname`` and password
  88. ``mypass``.
  89. Another example: if you specified on the command-line
  90. ``--http-proxy="http://user:pass@proxy" --http-proxy-user="myname"
  91. --http-proxy-passwd="mypass"``, then you'd get HTTP proxy
  92. ``http://proxy`` with user ``myname`` and password ``mypass``.
  93. One more example: if you specified in command-line ``--http-proxy-user="myname"
  94. --http-proxy-passwd="mypass" --http-proxy="http://user:pass@proxy"``,
  95. then you'd get HTTP proxy ``http://proxy`` with user ``user`` and password
  96. ``pass``.
  97. .. option:: --all-proxy-passwd=<PASSWD>
  98. Set password for :option:`--all-proxy` option.
  99. .. option:: --all-proxy-user=<USER>
  100. Set user for :option:`--all-proxy` option.
  101. .. option:: --checksum=<TYPE>=<DIGEST>
  102. Set checksum. TYPE is hash type. The supported hash type is listed
  103. in ``Hash Algorithms`` in ``aria2c -v``. DIGEST is hex digest. For
  104. example, setting sha-1 digest looks like this:
  105. ``sha-1=0192ba11326fe2298c8cb4de616f4d4140213838`` This option applies
  106. only to HTTP(S)/FTP downloads.
  107. .. option:: --connect-timeout=<SEC>
  108. Set the connect timeout in seconds to establish connection to
  109. HTTP/FTP/proxy server. After the connection is established, this
  110. option makes no effect and :option:`--timeout <-t>` option is used instead.
  111. Default: ``60``
  112. .. option:: --dry-run[=true|false]
  113. If ``true`` is given, aria2 just checks whether the remote file is
  114. available and doesn't download data. This option has effect on
  115. HTTP/FTP download. BitTorrent downloads are canceled if ``true`` is
  116. specified. Default: ``false``
  117. .. option:: --lowest-speed-limit=<SPEED>
  118. Close connection if download speed is lower than or equal to this
  119. value(bytes per sec).
  120. ``0`` means aria2 does not have a lowest speed limit.
  121. You can append ``K`` or ``M`` (1K = 1024, 1M = 1024K).
  122. This option does not affect BitTorrent downloads.
  123. Default: ``0``
  124. .. option:: -x, --max-connection-per-server=<NUM>
  125. The maximum number of connections to one server for each download.
  126. Default: ``1``
  127. .. option:: --max-file-not-found=<NUM>
  128. If aria2 receives "file not found" status from the remote HTTP/FTP
  129. servers NUM times without getting a single byte, then force the
  130. download to fail. Specify ``0`` to disable this option. This options is
  131. effective only when using HTTP/FTP servers.
  132. Default: ``0``
  133. .. option:: -m, --max-tries=<N>
  134. Set number of tries. ``0`` means unlimited.
  135. See also :option:`--retry-wait`.
  136. Default: ``5``
  137. .. option:: -k, --min-split-size=<SIZE>
  138. aria2 does not split less than 2*SIZE byte range. For example,
  139. let's consider downloading 20MiB file. If SIZE is 10M, aria2 can
  140. split file into 2 range [0-10MiB) and [10MiB-20MiB) and download it
  141. using 2 sources(if :option:`--split <-s>` >= 2, of course). If SIZE is 15M,
  142. since 2*15M > 20MiB, aria2 does not split file and download it using
  143. 1 source. You can append ``K`` or ``M`` (1K = 1024, 1M = 1024K).
  144. Possible Values: ``1M`` -``1024M`` Default: ``20M``
  145. .. option:: --netrc-path=<FILE>
  146. Specify the path to the netrc file.
  147. Default: ``$(HOME)/.netrc``
  148. .. note::
  149. Permission of the .netrc file must be 600. Otherwise, the file
  150. will be ignored.
  151. .. option:: -n, --no-netrc[=true|false]
  152. Disables netrc support. netrc support is enabled by default.
  153. .. note::
  154. netrc file is only read at the startup if
  155. :option:`--no-netrc <-n>` is ``false``.
  156. So if :option:`--no-netrc <-n>` is ``true`` at the startup,
  157. no netrc is available throughout the session.
  158. You cannot get netrc enabled even if you send
  159. :option:`--no-netrc=false <-n>` using
  160. :func:`aria2.changeGlobalOption`.
  161. .. option:: --no-proxy=<DOMAINS>
  162. Specify a comma separated list of host names, domains and network addresses
  163. with or without a subnet mask where no proxy should be used.
  164. .. note::
  165. For network addresses with a subnet mask, both IPv4 and IPv6 addresses work.
  166. The current implementation does not resolve the host name in an URI to compare
  167. network addresses specified in :option:`--no-proxy`. So it is only effective
  168. if URI has numeric IP addresses.
  169. .. option:: -o, --out=<FILE>
  170. The file name of the downloaded file. When the
  171. :option:`--force-sequential <-Z>` option is used, this option is ignored.
  172. .. note::
  173. You cannot specify a file name for Metalink or BitTorrent downloads.
  174. The file name specified here is only used when the URIs fed to aria2
  175. are given on the command line directly, but not when using
  176. :option:`--input-file <-i>`, :option:`--force-sequential <-Z>` option.
  177. Example:
  178. .. code-block:: console
  179. $ aria2c -o myfile.zip "http://mirror1/file.zip" "http://mirror2/file.zip"
  180. .. option:: --proxy-method=<METHOD>
  181. Set the method to use in proxy request. METHOD is either ``get`` or
  182. ``tunnel``. HTTPS downloads always use ``tunnel`` regardless of this
  183. option.
  184. Default: ``get``
  185. .. option:: -R, --remote-time[=true|false]
  186. Retrieve timestamp of the remote file from the remote HTTP/FTP
  187. server and if it is available, apply it to the local file.
  188. Default: ``false``
  189. .. option:: --reuse-uri[=true|false]
  190. Reuse already used URIs if no unused URIs are left.
  191. Default: ``true``
  192. .. option:: --retry-wait=<SEC>
  193. Set the seconds to wait between retries. When ``SEC > 0``, aria2 will
  194. retry downloads when the HTTP server returns a 503 response. Default:
  195. ``0``
  196. .. option:: --server-stat-of=<FILE>
  197. Specify the file name to which performance profile of the servers is
  198. saved. You can load saved data using :option:`--server-stat-if` option. See
  199. `Server Performance Profile`_
  200. subsection below for file format.
  201. .. option:: --server-stat-if=<FILE>
  202. Specify the file name to load performance profile of the servers. The
  203. loaded data will be used in some URI selector such as ``feedback``.
  204. See also :option:`--uri-selector` option. See
  205. `Server Performance Profile`_
  206. subsection below for file format.
  207. .. option:: --server-stat-timeout=<SEC>
  208. Specifies timeout in seconds to invalidate performance profile of
  209. the servers since the last contact to them.
  210. Default: ``86400`` (24hours)
  211. .. option:: -s, --split=<N>
  212. Download a file using N connections. If more than N URIs are given,
  213. first N URIs are used and remaining URIs are used for backup. If
  214. less than N URIs are given, those URIs are used more than once so
  215. that N connections total are made simultaneously. The number of
  216. connections to the same host is restricted by the
  217. :option:`--max-connection-per-server <-x>` option.
  218. See also the :option:`--min-split-size <-k>` option.
  219. Default: ``5``
  220. .. note::
  221. Some Metalinks regulate the number of servers to connect. aria2
  222. strictly respects them. This means that if Metalink defines the
  223. ``maxconnections`` attribute lower than N, then aria2 uses the
  224. value of this lower value instead of N.
  225. .. option:: --stream-piece-selector=<SELECTOR>
  226. Specify piece selection algorithm used in HTTP/FTP download. Piece
  227. means fixed length segment which is downloaded in parallel in
  228. segmented download. If ``default`` is given, aria2 selects piece so
  229. that it reduces the number of establishing connection. This is
  230. reasonable default behavior because establishing connection is an
  231. expensive operation. If ``inorder`` is given, aria2 selects piece
  232. which has minimum index. Index=0 means first of the file. This will
  233. be useful to view movie while downloading it.
  234. :option:`--enable-http-pipelining` option may
  235. be useful to reduce re-connection overhead. Please note that aria2
  236. honors
  237. :option:`--min-split-size <-k>` option,
  238. so it will be necessary to specify a reasonable value to
  239. :option:`--min-split-size <-k>` option.
  240. If ``geom`` is given, at the beginning aria2 selects piece which has
  241. minimum index like ``inorder``, but it exponentially increasingly
  242. keeps space from previously selected piece. This will reduce the
  243. number of establishing connection and at the same time it will
  244. download the beginning part of the file first. This will be useful
  245. to view movie while downloading it.
  246. Default: ``default``
  247. .. option:: -t, --timeout=<SEC>
  248. Set timeout in seconds.
  249. Default: ``60``
  250. .. option:: --uri-selector=<SELECTOR>
  251. Specify URI selection algorithm. The possible values are ``inorder``,
  252. ``feedback`` and ``adaptive``. If ``inorder`` is given, URI is tried in
  253. the order appeared in the URI list. If ``feedback`` is given, aria2
  254. uses download speed observed in the previous downloads and choose
  255. fastest server in the URI list. This also effectively skips dead
  256. mirrors. The observed download speed is a part of performance
  257. profile of servers mentioned in :option:`--server-stat-of` and
  258. :option:`--server-stat-if` options. If ``adaptive`` is given, selects one of
  259. the best mirrors for the first and reserved connections. For
  260. supplementary ones, it returns mirrors which has not been tested
  261. yet, and if each of them has already been tested, returns mirrors
  262. which has to be tested again. Otherwise, it doesn't select anymore
  263. mirrors. Like ``feedback``, it uses a performance profile of servers.
  264. Default: ``feedback``
  265. HTTP Specific Options
  266. ~~~~~~~~~~~~~~~~~~~~~
  267. .. option:: --ca-certificate=<FILE>
  268. Use the certificate authorities in FILE to verify the peers.
  269. The certificate file must be in PEM format and can contain multiple CA
  270. certificates.
  271. Use :option:`--check-certificate` option to enable verification.
  272. .. note::
  273. If you build with OpenSSL or the recent version of GnuTLS which
  274. has ``gnutls_certificate_set_x509_system_trust()`` function and
  275. the library is properly configured to locate the system-wide CA
  276. certificates store, aria2 will automatically load those
  277. certificates at the startup.
  278. .. note::
  279. *WinTLS* and *AppleTLS* do not support this option. Instead you will
  280. have to import the certificate into the OS trust store.
  281. .. option:: --certificate=<FILE>
  282. Use the client certificate in FILE. The certificate must be
  283. either in PKCS12 (.p12, .pfx) or in PEM format.
  284. PKCS12 files must contain the certificate, a key and optionally a chain
  285. of additional certificates. Only PKCS12 files with a blank import password
  286. can be opened!
  287. When using PEM, you have to specify the private key via :option:`--private-key`
  288. as well.
  289. .. note::
  290. *WinTLS* does not support PEM files at the moment. Users have to use PKCS12
  291. files.
  292. .. note::
  293. *AppleTLS* users should use the KeyChain Access utility to import the client
  294. certificate and get the SHA-1 fingerprint from the Information dialog
  295. corresponding to that certificate.
  296. To start aria2c use `--certificate=<SHA-1>`.
  297. Alternatively PKCS12 files are also supported. PEM files, however, are not
  298. supported.
  299. .. option:: --check-certificate[=true|false]
  300. Verify the peer using certificates specified in :option:`--ca-certificate` option.
  301. Default: ``true``
  302. .. option:: --http-accept-gzip[=true|false]
  303. Send ``Accept: deflate, gzip`` request header and inflate response if
  304. remote server responds with ``Content-Encoding: gzip`` or
  305. ``Content-Encoding: deflate``. Default: ``false``
  306. .. note::
  307. Some server responds with ``Content-Encoding: gzip`` for files which
  308. itself is gzipped file. aria2 inflates them anyway because of the
  309. response header.
  310. .. option:: --http-auth-challenge[=true|false]
  311. Send HTTP authorization header only when it is requested by the
  312. server. If ``false`` is set, then authorization header is always sent
  313. to the server. There is an exception: if user name and password are
  314. embedded in URI, authorization header is always sent to the server
  315. regardless of this option. Default: ``false``
  316. .. option:: --http-no-cache[=true|false]
  317. Send ``Cache-Control: no-cache`` and ``Pragma: no-cache`` header to avoid
  318. cached content. If ``false`` is given, these headers are not sent
  319. and you can add Cache-Control header with a directive you like
  320. using :option:`--header` option. Default: ``false``
  321. .. option:: --http-user=<USER>
  322. Set HTTP user. This affects all URIs.
  323. .. option:: --http-passwd=<PASSWD>
  324. Set HTTP password. This affects all URIs.
  325. .. option:: --http-proxy=<PROXY>
  326. Use a proxy server for HTTP. To override a previously defined proxy,
  327. use "".
  328. See also the :option:`--all-proxy` option. This affects all http downloads.
  329. The format of PROXY is ``[http://][USER:PASSWORD@]HOST[:PORT]``
  330. .. option:: --http-proxy-passwd=<PASSWD>
  331. Set password for :option:`--http-proxy`.
  332. .. option:: --http-proxy-user=<USER>
  333. Set user for :option:`--http-proxy`.
  334. .. option:: --https-proxy=<PROXY>
  335. Use a proxy server for HTTPS. To override a previously defined proxy,
  336. use "".
  337. See also the :option:`--all-proxy` option. This affects all https download.
  338. The format of PROXY is ``[http://][USER:PASSWORD@]HOST[:PORT]``
  339. .. option:: --https-proxy-passwd=<PASSWD>
  340. Set password for :option:`--https-proxy`.
  341. .. option:: --https-proxy-user=<USER>
  342. Set user for :option:`--https-proxy`.
  343. .. option:: --private-key=<FILE>
  344. Use the private key in FILE.
  345. The private key must be decrypted and in PEM format.
  346. The behavior when encrypted one is given is undefined.
  347. See also :option:`--certificate` option.
  348. .. option:: --referer=<REFERER>
  349. Set an http referrer (Referer). This affects all http/https downloads.
  350. If ``*`` is given, the download URI is also used as the referrer.
  351. This may be useful when used together with the
  352. :option:`--parameterized-uri <-P>` option.
  353. .. option:: --enable-http-keep-alive[=true|false]
  354. Enable HTTP/1.1 persistent connection.
  355. Default: ``true``
  356. .. option:: --enable-http-pipelining[=true|false]
  357. Enable HTTP/1.1 pipelining.
  358. Default: ``false``
  359. .. note::
  360. In performance perspective, there is usually no advantage to enable
  361. this option.
  362. .. option:: --header=<HEADER>
  363. Append HEADER to HTTP request header.
  364. You can use this option repeatedly to specify more than one header:
  365. .. code-block:: console
  366. $ aria2c --header="X-A: b78" --header="X-B: 9J1" "http://host/file"
  367. .. option:: --load-cookies=<FILE>
  368. Load Cookies from FILE using the Firefox3 format (SQLite3),
  369. Chromium/Google Chrome (SQLite3) and the
  370. Mozilla/Firefox(1.x/2.x)/Netscape format.
  371. .. note::
  372. If aria2 is built without libsqlite3, then it doesn't support Firefox3
  373. and Chromium/Google Chrome cookie format.
  374. .. option:: --save-cookies=<FILE>
  375. Save Cookies to FILE in Mozilla/Firefox(1.x/2.x)/ Netscape
  376. format. If FILE already exists, it is overwritten. Session Cookies
  377. are also saved and their expiry values are treated as 0. Possible
  378. Values: ``/path/to/file``
  379. .. option:: --use-head[=true|false]
  380. Use HEAD method for the first request to the HTTP server.
  381. Default: ``false``
  382. .. option:: -U, --user-agent=<USER_AGENT>
  383. Set user agent for HTTP(S) downloads.
  384. Default: ``aria2/$VERSION``, $VERSION is replaced by package version.
  385. FTP/SFTP Specific Options
  386. ~~~~~~~~~~~~~~~~~~~~~~~~~
  387. .. option:: --ftp-user=<USER>
  388. Set FTP user. This affects all URIs.
  389. Default: ``anonymous``
  390. .. option:: --ftp-passwd=<PASSWD>
  391. Set FTP password. This affects all URIs.
  392. If user name is embedded but password is missing in URI, aria2 tries
  393. to resolve password using .netrc. If password is found in .netrc,
  394. then use it as password. If not, use the password specified in this
  395. option.
  396. Default: ``ARIA2USER@``
  397. .. option:: -p, --ftp-pasv[=true|false]
  398. Use the passive mode in FTP.
  399. If ``false`` is given, the active mode will be used.
  400. Default: ``true``
  401. .. note::
  402. This option is ignored for SFTP transfer.
  403. .. option:: --ftp-proxy=<PROXY>
  404. Use a proxy server for FTP. To override a previously defined proxy,
  405. use "".
  406. See also the :option:`--all-proxy` option. This affects all ftp downloads.
  407. The format of PROXY is ``[http://][USER:PASSWORD@]HOST[:PORT]``
  408. .. option:: --ftp-proxy-passwd=<PASSWD>
  409. Set password for :option:`--ftp-proxy` option.
  410. .. option:: --ftp-proxy-user=<USER>
  411. Set user for :option:`--ftp-proxy` option.
  412. .. option:: --ftp-type=<TYPE>
  413. Set FTP transfer type. TYPE is either ``binary`` or ``ascii``.
  414. Default: ``binary``
  415. .. note::
  416. This option is ignored for SFTP transfer.
  417. .. option:: --ftp-reuse-connection[=true|false]
  418. Reuse connection in FTP.
  419. Default: ``true``
  420. .. option:: --ssh-host-key-md=<TYPE>=<DIGEST>
  421. Set checksum for SSH host public key. TYPE is hash type. The
  422. supported hash type is ``sha-1`` or ``md5``. DIGEST is hex
  423. digest. For example:
  424. ``sha-1=b030503d4de4539dc7885e6f0f5e256704edf4c3``. This option can
  425. be used to validate server's public key when SFTP is used. If this
  426. option is not set, which is default, no validation takes place.
  427. BitTorrent/Metalink Options
  428. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  429. .. option:: --select-file=<INDEX>...
  430. Set file to download by specifying its index.
  431. You can find the file index using the :option:`--show-files <-S>` option.
  432. Multiple indexes can be specified by using ``,``, for example: ``3,6``.
  433. You can also use ``-`` to specify a range: ``1-5``.
  434. ``,`` and ``-`` can be used together: ``1-5,8,9``.
  435. When used with the -M option, index may vary depending on the query
  436. (see *--metalink-\** options).
  437. .. note::
  438. In multi file torrent, the adjacent files specified by this option may
  439. also be downloaded. This is by design, not a bug.
  440. A single piece may include several files or part of files, and aria2
  441. writes the piece to the appropriate files.
  442. .. option:: -S, --show-files[=true|false]
  443. Print file listing of ".torrent", ".meta4" and ".metalink" file and exit.
  444. In case of ".torrent" file, additional information
  445. (infohash, piece length, etc) is also printed.
  446. BitTorrent Specific Options
  447. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  448. .. option:: --bt-detach-seed-only[=true|false]
  449. Exclude seed only downloads when counting concurrent active
  450. downloads (See :option:`-j` option). This means that if ``-j3`` is
  451. given and this option is turned on and 3 downloads are active and
  452. one of those enters seed mode, then it is excluded from active
  453. download count (thus it becomes 2), and the next download waiting in
  454. queue gets started. But be aware that seeding item is still
  455. recognized as active download in RPC method. Default: ``false``
  456. .. option:: --bt-enable-hook-after-hash-check[=true|false]
  457. Allow hook command invocation after hash check (see :option:`-V`
  458. option) in BitTorrent download. By default, when hash check
  459. succeeds, the command given by :option:`--on-bt-download-complete`
  460. is executed. To disable this action, give ``false`` to this option.
  461. Default: ``true``
  462. .. option:: --bt-enable-lpd[=true|false]
  463. Enable Local Peer Discovery. If a private flag is set in a torrent,
  464. aria2 doesn't use this feature for that download even if ``true`` is
  465. given. Default: ``false``
  466. .. option:: --bt-exclude-tracker=<URI>[,...]
  467. Comma separated list of BitTorrent tracker's announce URI to
  468. remove. You can use special value ``*`` which matches all URIs, thus
  469. removes all announce URIs. When specifying ``*`` in shell
  470. command-line, don't forget to escape or quote it. See also
  471. :option:`--bt-tracker` option.
  472. .. option:: --bt-external-ip=<IPADDRESS>
  473. Specify the external IP address to report to a BitTorrent
  474. tracker. Although this function is named ``external``, it can accept
  475. any kind of IP addresses. IPADDRESS must be a numeric IP address.
  476. .. option:: --bt-force-encryption[=true|false]
  477. Requires BitTorrent message payload encryption with arc4. This is a
  478. shorthand of :option:`--bt-require-crypto`
  479. :option:`--bt-min-crypto-level`\=arc4. This option does not change
  480. the option value of those options. If ``true`` is given, deny
  481. legacy BitTorrent handshake and only use Obfuscation handshake and
  482. always encrypt message payload. Default: ``false``
  483. .. option:: --bt-hash-check-seed[=true|false]
  484. If ``true`` is given, after hash check using :option:`--check-integrity <-V>` option and
  485. file is complete, continue to seed file. If you want to check file
  486. and download it only when it is damaged or incomplete, set this
  487. option to ``false``. This option has effect only on BitTorrent download.
  488. Default: ``true``
  489. .. option:: --bt-lpd-interface=<INTERFACE>
  490. Use given interface for Local Peer Discovery. If this option is not
  491. specified, the default interface is chosen. You can specify
  492. interface name and IP address. Possible Values: interface, IP
  493. address
  494. .. option:: --bt-max-open-files=<NUM>
  495. Specify maximum number of files to open in multi-file
  496. BitTorrent/Metalink download globally.
  497. Default: ``100``
  498. .. option:: --bt-max-peers=<NUM>
  499. Specify the maximum number of peers per torrent. ``0`` means
  500. unlimited. See also :option:`--bt-request-peer-speed-limit` option.
  501. Default: ``55``
  502. .. option:: --bt-metadata-only[=true|false]
  503. Download meta data only. The file(s) described in meta data will not
  504. be downloaded. This option has effect only when BitTorrent Magnet
  505. URI is used. See also :option:`--bt-save-metadata` option. Default: ``false``
  506. .. option:: --bt-min-crypto-level=plain|arc4
  507. Set minimum level of encryption method.
  508. If several encryption methods are provided by a peer, aria2 chooses the lowest
  509. one which satisfies the given level.
  510. Default: ``plain``
  511. .. option:: --bt-prioritize-piece=head[=<SIZE>],tail[=<SIZE>]
  512. Try to download first and last pieces of each file first. This is
  513. useful for previewing files. The argument can contain 2 keywords:
  514. ``head`` and ``tail``. To include both keywords, they must be separated
  515. by comma. These keywords can take one parameter, SIZE. For example,
  516. if ``head=<SIZE>`` is specified, pieces in the range of first SIZE bytes
  517. of each file get higher priority. ``tail=<SIZE>`` means the range of
  518. last SIZE bytes of each file. SIZE can include ``K`` or ``M`` (1K = 1024,
  519. 1M = 1024K). If SIZE is omitted, SIZE=1M is used.
  520. .. option:: --bt-remove-unselected-file[=true|false]
  521. Removes the unselected files when download is completed in
  522. BitTorrent. To select files, use
  523. :option:`--select-file` option. If it is
  524. not used, all files are assumed to be selected. Please use this
  525. option with care because it will actually remove files from your
  526. disk.
  527. Default: ``false``
  528. .. option:: --bt-require-crypto[=true|false]
  529. If ``true`` is given, aria2 doesn't accept and establish connection with legacy
  530. BitTorrent handshake(\\19BitTorrent protocol).
  531. Thus aria2 always uses Obfuscation handshake.
  532. Default: ``false``
  533. .. option:: --bt-request-peer-speed-limit=<SPEED>
  534. If the whole download speed of every torrent is lower than SPEED,
  535. aria2 temporarily increases the number of peers to try for more
  536. download speed. Configuring this option with your preferred download
  537. speed can increase your download speed in some cases.
  538. You can append ``K`` or ``M`` (1K = 1024, 1M = 1024K).
  539. Default: ``50K``
  540. .. option:: --bt-save-metadata[=true|false]
  541. Save meta data as ".torrent" file. This option has effect only when
  542. BitTorrent Magnet URI is used. The file name is hex encoded info
  543. hash with suffix ".torrent". The directory to be saved is the same
  544. directory where download file is saved. If the same file already
  545. exists, meta data is not saved. See also :option:`--bt-metadata-only`
  546. option. Default: ``false``
  547. .. option:: --bt-seed-unverified[=true|false]
  548. Seed previously downloaded files without verifying piece hashes.
  549. Default: ``false``
  550. .. option:: --bt-stop-timeout=<SEC>
  551. Stop BitTorrent download if download speed is 0 in consecutive SEC
  552. seconds. If ``0`` is given, this feature is disabled. Default: ``0``
  553. .. option:: --bt-tracker=<URI>[,...]
  554. Comma separated list of additional BitTorrent tracker's announce
  555. URI. These URIs are not affected by :option:`--bt-exclude-tracker` option
  556. because they are added after URIs in :option:`--bt-exclude-tracker` option are
  557. removed.
  558. .. option:: --bt-tracker-connect-timeout=<SEC>
  559. Set the connect timeout in seconds to establish connection to
  560. tracker. After the connection is established, this option makes no
  561. effect and :option:`--bt-tracker-timeout` option is used instead. Default:
  562. ``60``
  563. .. option:: --bt-tracker-interval=<SEC>
  564. Set the interval in seconds between tracker requests. This
  565. completely overrides interval value and aria2 just uses this value
  566. and ignores the min interval and interval value in the response of
  567. tracker. If ``0`` is set, aria2 determines interval based on the
  568. response of tracker and the download progress. Default: ``0``
  569. .. option:: --bt-tracker-timeout=<SEC>
  570. Set timeout in seconds. Default: ``60``
  571. .. option:: --dht-entry-point=<HOST>:<PORT>
  572. Set host and port as an entry point to IPv4 DHT network.
  573. .. option:: --dht-entry-point6=<HOST>:<PORT>
  574. Set host and port as an entry point to IPv6 DHT network.
  575. .. option:: --dht-file-path=<PATH>
  576. Change the IPv4 DHT routing table file to PATH.
  577. Default: ``$HOME/.aria2/dht.dat`` if present, otherwise
  578. ``$XDG_CACHE_HOME/aria2/dht.dat``.
  579. .. option:: --dht-file-path6=<PATH>
  580. Change the IPv6 DHT routing table file to PATH.
  581. Default: ``$HOME/.aria2/dht6.dat`` if present, otherwise
  582. ``$XDG_CACHE_HOME/aria2/dht6.dat``.
  583. .. option:: --dht-listen-addr6=<ADDR>
  584. Specify address to bind socket for IPv6 DHT. It should be a global
  585. unicast IPv6 address of the host.
  586. .. option:: --dht-listen-port=<PORT>...
  587. Set UDP listening port used by DHT(IPv4, IPv6) and UDP tracker.
  588. Multiple ports can be specified by using ``,``, for example:
  589. ``6881,6885``. You can also use ``-`` to specify a range:
  590. ``6881-6999``. ``,`` and ``-`` can be used together.
  591. Default: ``6881-6999``
  592. .. note::
  593. Make sure that the specified ports are open for incoming UDP traffic.
  594. .. option:: --dht-message-timeout=<SEC>
  595. Set timeout in seconds. Default: ``10``
  596. .. option:: --enable-dht[=true|false]
  597. Enable IPv4 DHT functionality. It also enables UDP tracker
  598. support. If a private flag is set in a torrent, aria2 doesn't use
  599. DHT for that download even if ``true`` is given. Default: ``true``
  600. .. option:: --enable-dht6[=true|false]
  601. Enable IPv6 DHT functionality. If a private flag is set in a
  602. torrent, aria2 doesn't use DHT for that download even if ``true`` is
  603. given. Use :option:`--dht-listen-port` option to specify port number to
  604. listen on. See also :option:`--dht-listen-addr6` option.
  605. .. option:: --enable-peer-exchange[=true|false]
  606. Enable Peer Exchange extension. If a private flag is set in a torrent, this
  607. feature is disabled for that download even if ``true`` is given.
  608. Default: ``true``
  609. .. option:: --follow-torrent=true|false|mem
  610. If ``true`` or ``mem`` is specified, when a file whose suffix is ``.torrent`` or content
  611. type is ``application/x-bittorrent`` is downloaded, aria2 parses it as a torrent
  612. file and downloads files mentioned in it.
  613. If ``mem`` is specified, a torrent file is not written to the disk, but is just
  614. kept in memory.
  615. If ``false`` is specified, the ``.torrent`` file is downloaded to the disk, but
  616. is not parsed as a torrent and its contents are not downloaded.
  617. Default: ``true``
  618. .. option:: -O, --index-out=<INDEX>=<PATH>
  619. Set file path for file with index=INDEX. You can find the file index
  620. using the :option:`--show-files <-S>` option. PATH is a relative path to the
  621. path specified in :option:`--dir <-d>` option. You can use this option multiple
  622. times. Using this option, you can specify the output file names of
  623. BitTorrent downloads.
  624. .. option:: --listen-port=<PORT>...
  625. Set TCP port number for BitTorrent downloads.
  626. Multiple ports can be specified by using ``,``, for example: ``6881,6885``.
  627. You can also use ``-`` to specify a range: ``6881-6999``.
  628. ``,`` and ``-`` can be used together: ``6881-6889,6999``.
  629. Default: ``6881-6999``
  630. .. note::
  631. Make sure that the specified ports are open for incoming TCP traffic.
  632. .. option:: --max-overall-upload-limit=<SPEED>
  633. Set max overall upload speed in bytes/sec.
  634. ``0`` means unrestricted.
  635. You can append ``K`` or ``M`` (1K = 1024, 1M = 1024K).
  636. To limit the upload speed per torrent, use :option:`--max-upload-limit <-u>` option.
  637. Default: ``0``
  638. .. option:: -u, --max-upload-limit=<SPEED>
  639. Set max upload speed per each torrent in bytes/sec.
  640. ``0`` means unrestricted.
  641. You can append ``K`` or ``M`` (1K = 1024, 1M = 1024K).
  642. To limit the overall upload speed, use :option:`--max-overall-upload-limit` option.
  643. Default: ``0``
  644. .. option:: --peer-id-prefix=<PEER_ID_PREFIX>
  645. Specify the prefix of peer ID. The peer ID in
  646. BitTorrent is 20 byte length. If more than 20
  647. bytes are specified, only first 20 bytes are
  648. used. If less than 20 bytes are specified, random
  649. byte data are added to make its length 20 bytes.
  650. Default: ``A2-$MAJOR-$MINOR-$PATCH-``, $MAJOR, $MINOR and $PATCH are
  651. replaced by major, minor and patch version number respectively. For
  652. instance, aria2 version 1.18.8 has prefix ID ``A2-1-18-8-``.
  653. .. option:: --seed-ratio=<RATIO>
  654. Specify share ratio. Seed completed torrents until share ratio reaches
  655. RATIO.
  656. You are strongly encouraged to specify equals or more than ``1.0`` here.
  657. Specify ``0.0`` if you intend to do seeding regardless of share ratio.
  658. If :option:`--seed-time` option is specified along with this option, seeding ends when
  659. at least one of the conditions is satisfied.
  660. Default: ``1.0``
  661. .. option:: --seed-time=<MINUTES>
  662. Specify seeding time in minutes. Also see the :option:`--seed-ratio` option.
  663. .. note::
  664. Specifying :option:`--seed-time=0 <--seed-time>` disables seeding after download completed.
  665. .. option:: -T, --torrent-file=<TORRENT_FILE>
  666. The path to the ".torrent" file. You are not required to use this
  667. option because you can specify ".torrent" files without :option:`--torrent-file <-T>`.
  668. Metalink Specific Options
  669. ~~~~~~~~~~~~~~~~~~~~~~~~~
  670. .. option:: --follow-metalink=true|false|mem
  671. If ``true`` or ``mem`` is specified, when a file whose suffix is ``.meta4`` or ``.metalink`` or content
  672. type of ``application/metalink4+xml`` or ``application/metalink+xml`` is downloaded, aria2 parses it as a metalink
  673. file and downloads files mentioned in it.
  674. If ``mem`` is specified, a metalink file is not written to the disk, but is just
  675. kept in memory.
  676. If ``false`` is specified, the ``.metalink`` file is downloaded to
  677. the disk, but is not parsed as a metalink file and its contents are not
  678. downloaded.
  679. Default: ``true``
  680. .. option:: --metalink-base-uri=<URI>
  681. Specify base URI to resolve relative URI in metalink:url and
  682. metalink:metaurl element in a metalink file stored in local disk. If
  683. URI points to a directory, URI must end with ``/``.
  684. .. option:: -M, --metalink-file=<METALINK_FILE>
  685. The file path to ".meta4" and ".metalink" file. Reads input from ``stdin`` when ``-`` is
  686. specified. You are not required to use this option because you can
  687. specify ".metalink" files without :option:`--metalink-file <-M>`.
  688. .. option:: --metalink-language=<LANGUAGE>
  689. The language of the file to download.
  690. .. option:: --metalink-location=<LOCATION>[,...]
  691. The location of the preferred server.
  692. A comma-delimited list of locations is acceptable, for example, ``jp,us``.
  693. .. option:: --metalink-os=<OS>
  694. The operating system of the file to download.
  695. .. option:: --metalink-version=<VERSION>
  696. The version of the file to download.
  697. .. option:: --metalink-preferred-protocol=<PROTO>
  698. Specify preferred protocol.
  699. The possible values are ``http``, ``https``, ``ftp`` and ``none``.
  700. Specify ``none`` to disable this feature.
  701. Default: ``none``
  702. .. option:: --metalink-enable-unique-protocol[=true|false]
  703. If ``true`` is given and several protocols are available for a mirror in a
  704. metalink file, aria2 uses one of them.
  705. Use :option:`--metalink-preferred-protocol` option to specify the preference of
  706. protocol.
  707. Default: ``true``
  708. RPC Options
  709. ~~~~~~~~~~~
  710. .. option:: --enable-rpc[=true|false]
  711. Enable JSON-RPC/XML-RPC server. It is strongly recommended to set
  712. secret authorization token using :option:`--rpc-secret` option. See
  713. also :option:`--rpc-listen-port` option. Default: ``false``
  714. .. option:: --pause[=true|false]
  715. Pause download after added. This option is effective only when
  716. :option:`--enable-rpc=true <--enable-rpc>` is given.
  717. Default: ``false``
  718. .. option:: --pause-metadata[=true|false]
  719. Pause downloads created as a result of metadata download. There are
  720. 3 types of metadata downloads in aria2: (1) downloading .torrent
  721. file. (2) downloading torrent metadata using magnet link. (3)
  722. downloading metalink file. These metadata downloads will generate
  723. downloads using their metadata. This option pauses these subsequent
  724. downloads. This option is effective only when
  725. :option:`--enable-rpc=true <--enable-rpc>` is given.
  726. Default: ``false``
  727. .. option:: --rpc-allow-origin-all[=true|false]
  728. Add Access-Control-Allow-Origin header field with value ``*`` to the
  729. RPC response.
  730. Default: ``false``
  731. .. option:: --rpc-certificate=<FILE>
  732. Use the certificate in FILE for RPC server. The certificate must be
  733. either in PKCS12 (.p12, .pfx) or in PEM format.
  734. PKCS12 files must contain the certificate, a key and optionally a chain
  735. of additional certificates. Only PKCS12 files with a blank import password
  736. can be opened!
  737. When using PEM, you have to specify the private key via :option:`--rpc-private-key`
  738. as well. Use :option:`--rpc-secure` option to enable encryption.
  739. .. note::
  740. *WinTLS* does not support PEM files at the moment. Users have to use PKCS12
  741. files.
  742. .. note::
  743. *AppleTLS* users should use the KeyChain Access utility to first generate a
  744. self-signed SSL-Server certificate, e.g. using the wizard, and get the
  745. SHA-1 fingerprint from the Information dialog corresponding to that new
  746. certificate.
  747. To start aria2c with :option:`--rpc-secure` use
  748. `--rpc-certificate=<SHA-1>`.
  749. Alternatively PKCS12 files are also supported. PEM files, however, are not
  750. supported.
  751. .. option:: --rpc-listen-all[=true|false]
  752. Listen incoming JSON-RPC/XML-RPC requests on all network interfaces. If false
  753. is given, listen only on local loopback interface. Default: ``false``
  754. .. option:: --rpc-listen-port=<PORT>
  755. Specify a port number for JSON-RPC/XML-RPC server to listen to. Possible
  756. Values: ``1024`` -``65535`` Default: ``6800``
  757. .. option:: --rpc-max-request-size=<SIZE>
  758. Set max size of JSON-RPC/XML-RPC request. If aria2 detects the request is
  759. more than SIZE bytes, it drops connection. Default: ``2M``
  760. .. option:: --rpc-passwd=<PASSWD>
  761. Set JSON-RPC/XML-RPC password.
  762. .. Warning::
  763. :option:`--rpc-passwd` option will be deprecated in the future
  764. release. Migrate to :option:`--rpc-secret` option as soon as
  765. possible.
  766. .. option:: --rpc-private-key=<FILE>
  767. Use the private key in FILE for RPC server. The private key must be
  768. decrypted and in PEM format. Use :option:`--rpc-secure` option to
  769. enable encryption. See also :option:`--rpc-certificate` option.
  770. .. option:: --rpc-save-upload-metadata[=true|false]
  771. Save the uploaded torrent or metalink meta data in the directory
  772. specified by :option:`--dir` option. The file name consists of SHA-1
  773. hash hex string of meta data plus extension. For torrent, the
  774. extension is '.torrent'. For metalink, it is '.meta4'. If false is
  775. given to this option, the downloads added by
  776. :func:`aria2.addTorrent` or :func:`aria2.addMetalink` will not be
  777. saved by :option:`--save-session` option. Default: ``false``
  778. .. option:: --rpc-secret=<TOKEN>
  779. Set RPC secret authorization token. Read :ref:`rpc_auth` to know
  780. how this option value is used.
  781. .. option:: --rpc-secure[=true|false]
  782. RPC transport will be encrypted by SSL/TLS. The RPC clients must
  783. use https scheme to access the server. For WebSocket client, use wss
  784. scheme. Use :option:`--rpc-certificate` and
  785. :option:`--rpc-private-key` options to specify the server
  786. certificate and private key.
  787. .. option:: --rpc-user=<USER>
  788. Set JSON-RPC/XML-RPC user.
  789. .. Warning::
  790. :option:`--rpc-user` option will be deprecated in the future
  791. release. Migrate to :option:`--rpc-secret` option as soon as
  792. possible.
  793. Advanced Options
  794. ~~~~~~~~~~~~~~~~
  795. .. option:: --allow-overwrite[=true|false]
  796. Restart download from scratch if the corresponding control file
  797. doesn't exist. See also :option:`--auto-file-renaming` option. Default:
  798. ``false``
  799. .. option:: --allow-piece-length-change[=true|false]
  800. If false is given, aria2 aborts download when a piece length is different
  801. from one in a control file.
  802. If true is given, you can proceed but some download progress will be lost.
  803. Default: ``false``
  804. .. option:: --always-resume[=true|false]
  805. Always resume download. If ``true`` is given, aria2 always tries to
  806. resume download and if resume is not possible, aborts download. If
  807. ``false`` is given, when all given URIs do not support resume or aria2
  808. encounters ``N`` URIs which does not support resume (``N`` is the value
  809. specified using :option:`--max-resume-failure-tries` option), aria2
  810. downloads file from scratch. See :option:`--max-resume-failure-tries`
  811. option. Default: ``true``
  812. .. option:: --async-dns[=true|false]
  813. Enable asynchronous DNS.
  814. Default: ``true``
  815. .. option:: --async-dns-server=<IPADDRESS>[,...]
  816. Comma separated list of DNS server address used in asynchronous DNS
  817. resolver. Usually asynchronous DNS resolver reads DNS server
  818. addresses from ``/etc/resolv.conf``. When this option is used, it uses
  819. DNS servers specified in this option instead of ones in
  820. ``/etc/resolv.conf``. You can specify both IPv4 and IPv6 address. This
  821. option is useful when the system does not have ``/etc/resolv.conf`` and
  822. user does not have the permission to create it.
  823. .. option:: --auto-file-renaming[=true|false]
  824. Rename file name if the same file already exists.
  825. This option works only in HTTP(S)/FTP download.
  826. The new file name has a dot and a number(1..9999) appended.
  827. Default: ``true``
  828. .. option:: --auto-save-interval=<SEC>
  829. Save a control file(\*.aria2) every SEC seconds.
  830. If ``0`` is given, a control file is not saved during download. aria2 saves a
  831. control file when it stops regardless of the value.
  832. The possible values are between ``0`` to ``600``.
  833. Default: ``60``
  834. .. option:: --conditional-get[=true|false]
  835. Download file only when the local file is older than remote
  836. file. This function only works with HTTP(S) downloads only. It does
  837. not work if file size is specified in Metalink. It also ignores
  838. Content-Disposition header. If a control file exists, this option
  839. will be ignored. This function uses If-Modified-Since header to get
  840. only newer file conditionally. When getting modification time of
  841. local file, it uses user supplied file name (see :option:`--out <-o>` option) or
  842. file name part in URI if :option:`--out <-o>` is not specified.
  843. To overwrite existing file, :option:`--allow-overwrite` is required.
  844. Default: ``false``
  845. .. option:: --conf-path=<PATH>
  846. Change the configuration file path to PATH.
  847. Default: ``$HOME/.aria2/aria2.conf`` if present, otherwise
  848. ``$XDG_CONFIG_HOME/aria2/aria2.conf``.
  849. .. option:: --console-log-level=<LEVEL>
  850. Set log level to output to console. LEVEL is either ``debug``,
  851. ``info``, ``notice``, ``warn`` or ``error``. Default: ``notice``
  852. .. option:: -D, --daemon[=true|false]
  853. Run as daemon. The current working directory will be changed to ``/``
  854. and standard input, standard output and standard error will be
  855. redirected to ``/dev/null``. Default: ``false``
  856. .. option:: --deferred-input[=true|false]
  857. If ``true`` is given, aria2 does not read all URIs and options from file
  858. specified by :option:`--input-file <-i>` option at startup,
  859. but it reads one by one when it
  860. needs later. This may reduce memory usage if input file contains a
  861. lot of URIs to download. If ``false`` is given, aria2 reads all URIs
  862. and options at startup.
  863. Default: ``false``
  864. .. Warning::
  865. :option:`--deferred-input` option will be disabled when
  866. :option:`--save-session` is used together.
  867. .. option:: --disable-ipv6[=true|false]
  868. Disable IPv6. This is useful if you have to use broken DNS and want
  869. to avoid terribly slow AAAA record lookup. Default: ``false``
  870. .. option:: --disk-cache=<SIZE>
  871. Enable disk cache. If SIZE is ``0``, the disk cache is
  872. disabled. This feature caches the downloaded data in memory, which
  873. grows to at most SIZE bytes. The cache storage is created for aria2
  874. instance and shared by all downloads. The one advantage of the disk
  875. cache is reduce the disk I/O because the data are written in larger
  876. unit and it is reordered by the offset of the file. If hash
  877. checking is involved and the data are cached in memory, we don't
  878. need to read them from the disk. SIZE can include ``K`` or ``M``
  879. (1K = 1024, 1M = 1024K). Default: ``16M``
  880. .. option:: --download-result=<OPT>
  881. This option changes the way ``Download Results`` is formatted. If OPT
  882. is ``default``, print GID, status, average download speed and
  883. path/URI. If multiple files are involved, path/URI of first
  884. requested file is printed and remaining ones are omitted. If OPT is
  885. ``full``, print GID, status, average download speed, percentage of
  886. progress and path/URI. The percentage of progress and path/URI are
  887. printed for each requested file in each row.
  888. Default: ``default``
  889. .. option:: --dscp=<DSCP>
  890. Set DSCP value in outgoing IP packets of BitTorrent traffic for
  891. QoS. This parameter sets only DSCP bits in TOS field of IP packets,
  892. not the whole field. If you take values from
  893. */usr/include/netinet/ip.h* divide them by 4 (otherwise values would
  894. be incorrect, e.g. your ``CS1`` class would turn into ``CS4``). If
  895. you take commonly used values from RFC, network vendors'
  896. documentation, Wikipedia or any other source, use them as they are.
  897. .. option:: --rlimit-nofile=<NUM>
  898. Set the soft limit of open file descriptors.
  899. This open will only have effect when:
  900. a) The system supports it (posix)
  901. b) The limit does not exceed the hard limit.
  902. c) The specified limit is larger than the current soft limit.
  903. This is equivalent to setting nofile via ulimit,
  904. except that it will never decrease the limit.
  905. This option is only available on systems supporting the rlimit API.
  906. .. option:: --enable-color[=true|false]
  907. Enable color output for a terminal.
  908. Default: ``true``
  909. .. option:: --enable-mmap[=true|false]
  910. Map files into memory. This option may not work if the file space
  911. is not pre-allocated. See :option:`--file-allocation`.
  912. Default: ``false``
  913. .. option:: --event-poll=<POLL>
  914. Specify the method for polling events. The possible values are
  915. ``epoll``, ``kqueue``, ``port``, ``poll`` and ``select``. For each ``epoll``,
  916. ``kqueue``, ``port`` and ``poll``, it is available if system supports it.
  917. ``epoll`` is available on recent Linux. ``kqueue`` is available on
  918. various \*BSD systems including Mac OS X. ``port`` is available on Open
  919. Solaris. The default value may vary depending on the system you use.
  920. .. option:: --file-allocation=<METHOD>
  921. Specify file allocation method.
  922. ``none`` doesn't pre-allocate file space. ``prealloc`` pre-allocates file space
  923. before download begins. This may take some time depending on the size of the
  924. file.
  925. If you are using newer file systems such as ext4
  926. (with extents support), btrfs, xfs or NTFS(MinGW build only), ``falloc`` is
  927. your best choice. It allocates large(few GiB)
  928. files almost instantly. Don't use ``falloc`` with
  929. legacy file systems such as ext3 and FAT32 because it takes
  930. almost same time as ``prealloc`` and it blocks aria2
  931. entirely until allocation finishes. ``falloc`` may
  932. not be available if your system doesn't have
  933. :manpage:`posix_fallocate(3)` function.
  934. ``trunc`` uses :manpage:`ftruncate(2)` system call or
  935. platform-specific counterpart to truncate a file to a specified
  936. length.
  937. Possible Values: ``none``, ``prealloc``, ``trunc``, ``falloc``
  938. Default: ``prealloc``
  939. .. option:: --force-save[=true|false]
  940. Save download with :option:`--save-session <--save-session>` option
  941. even if the download is completed or removed. This option also saves
  942. control file in that situations. This may be useful to save
  943. BitTorrent seeding which is recognized as completed state.
  944. Default: ``false``
  945. .. option:: --gid=<GID>
  946. Set GID manually. aria2 identifies each download by the ID called
  947. GID. The GID must be hex string of 16 characters, thus [0-9a-zA-Z]
  948. are allowed and leading zeros must not be stripped. The GID all 0 is
  949. reserved and must not be used. The GID must be unique, otherwise
  950. error is reported and the download is not added. This option is
  951. useful when restoring the sessions saved using
  952. :option:`--save-session <--save-session>` option. If this option is
  953. not used, new GID is generated by aria2.
  954. .. option:: --hash-check-only[=true|false]
  955. If ``true`` is given, after hash check using
  956. :option:`--check-integrity <-V>` option,
  957. abort download whether or not download is complete.
  958. Default: ``false``
  959. .. option:: --human-readable[=true|false]
  960. Print sizes and speed in human readable format (e.g., 1.2Ki, 3.4Mi)
  961. in the console readout. Default: ``true``
  962. .. option:: --interface=<INTERFACE>
  963. Bind sockets to given interface. You can specify interface name, IP
  964. address and host name.
  965. Possible Values: interface, IP address, host name
  966. .. note::
  967. If an interface has multiple addresses, it is highly recommended to
  968. specify IP address explicitly. See also :option:`--disable-ipv6`. If your
  969. system doesn't have :manpage:`getifaddrs(3)`, this option doesn't accept interface
  970. name.
  971. .. option:: --max-download-result=<NUM>
  972. Set maximum number of download result kept in memory. The download
  973. results are completed/error/removed downloads. The download results
  974. are stored in FIFO queue and it can store at most NUM download
  975. results. When queue is full and new download result is created,
  976. oldest download result is removed from the front of the queue and
  977. new one is pushed to the back. Setting big number in this option may
  978. result high memory consumption after thousands of
  979. downloads. Specifying 0 means no download result is kept. Default:
  980. ``1000``
  981. .. option:: --max-resume-failure-tries=<N>
  982. When used with :option:`--always-resume=false, <--always-resume>` aria2 downloads file from
  983. scratch when aria2 detects N number of URIs that does not support
  984. resume. If N is ``0``, aria2 downloads file from scratch when all
  985. given URIs do not support resume. See :option:`--always-resume` option.
  986. Default: ``0``
  987. .. option:: --min-tls-version=<VERSION>
  988. Specify minimum SSL/TLS version to enable.
  989. Possible Values: ``SSLv3``, ``TLSv1``, ``TLSv1.1``, ``TLSv1.2``
  990. Default: ``TLSv1``
  991. .. option:: --multiple-interface=<INTERFACES>
  992. Comma separated list of interfaces to bind sockets to. Requests will
  993. be splited among the interfaces to achieve link aggregation. You can
  994. specify interface name, IP address and hostname. If
  995. :option:`--interface` is used, this option will be ignored.
  996. Possible Values: interface, IP address, hostname
  997. .. option:: --log-level=<LEVEL>
  998. Set log level to output.
  999. LEVEL is either ``debug``, ``info``, ``notice``, ``warn`` or ``error``.
  1000. Default: ``debug``
  1001. .. option:: --on-bt-download-complete=<COMMAND>
  1002. For BitTorrent, a command specified in :option:`--on-download-complete` is
  1003. called after download completed and seeding is over. On the other
  1004. hand, this option set the command to be executed after download
  1005. completed but before seeding.
  1006. See `Event Hook`_ for more details about COMMAND.
  1007. Possible Values: ``/path/to/command``
  1008. .. option:: --on-download-complete=<COMMAND>
  1009. Set the command to be executed after download completed. See
  1010. See `Event Hook`_ for more details about COMMAND.
  1011. See also :option:`--on-download-stop` option.
  1012. Possible Values: ``/path/to/command``
  1013. .. option:: --on-download-error=<COMMAND>
  1014. Set the command to be executed after download aborted due to error.
  1015. See `Event Hook`_ for more details about COMMAND.
  1016. See also :option:`--on-download-stop` option. Possible Values:
  1017. ``/path/to/command``
  1018. .. option:: --on-download-pause=<COMMAND>
  1019. Set the command to be executed after download was paused.
  1020. See `Event Hook`_ for more details about COMMAND.
  1021. Possible Values: ``/path/to/command``
  1022. .. option:: --on-download-start=<COMMAND>
  1023. Set the command to be executed after download got started.
  1024. See `Event Hook`_ for more details about COMMAND.
  1025. Possible Values: ``/path/to/command``
  1026. .. option:: --on-download-stop=<COMMAND>
  1027. Set the command to be executed after download stopped. You can override
  1028. the command to be executed for particular download result using
  1029. :option:`--on-download-complete` and :option:`--on-download-error`. If they are
  1030. specified, command specified in this option is not executed.
  1031. See `Event Hook`_ for more details about COMMAND.
  1032. Possible Values: ``/path/to/command``
  1033. .. option:: --piece-length=<LENGTH>
  1034. Set a piece length for HTTP/FTP downloads. This is the boundary when
  1035. aria2 splits a file. All splits occur at multiple of this
  1036. length. This option will be ignored in BitTorrent downloads. It
  1037. will be also ignored if Metalink file contains piece hashes.
  1038. Default: ``1M``
  1039. .. note::
  1040. The possible use case of :option:`--piece-length`
  1041. option is change the request range in one HTTP pipelined request.
  1042. To enable HTTP pipelining use
  1043. :option:`--enable-http-pipelining`.
  1044. .. option:: --show-console-readout[=true|false]
  1045. Show console readout. Default: ``true``
  1046. .. option:: --summary-interval=<SEC>
  1047. Set interval in seconds to output download progress summary.
  1048. Setting ``0`` suppresses the output.
  1049. Default: ``60``
  1050. .. note::
  1051. In multi file torrent downloads, the files adjacent forward to the specified files
  1052. are also allocated if they share the same piece.
  1053. .. option:: -Z, --force-sequential[=true|false]
  1054. Fetch URIs in the command-line sequentially and download each URI in a
  1055. separate session, like the usual command-line download utilities.
  1056. Default: ``false``
  1057. .. option:: --max-overall-download-limit=<SPEED>
  1058. Set max overall download speed in bytes/sec. ``0`` means
  1059. unrestricted. You can append ``K`` or ``M`` (1K = 1024, 1M = 1024K). To
  1060. limit the download speed per download, use :option:`--max-download-limit`
  1061. option. Default: ``0``
  1062. .. option:: --max-download-limit=<SPEED>
  1063. Set max download speed per each download in bytes/sec. ``0`` means
  1064. unrestricted. You can append ``K`` or ``M`` (1K = 1024, 1M = 1024K). To
  1065. limit the overall download speed, use :option:`--max-overall-download-limit`
  1066. option. Default: ``0``
  1067. .. option:: --no-conf[=true|false]
  1068. Disable loading aria2.conf file.
  1069. .. option:: --no-file-allocation-limit=<SIZE>
  1070. No file allocation is made for files whose size is smaller than SIZE.
  1071. You can append ``K`` or ``M`` (1K = 1024, 1M = 1024K).
  1072. Default: ``5M``
  1073. .. option:: -P, --parameterized-uri[=true|false]
  1074. Enable parameterized URI support.
  1075. You can specify set of parts: ``http://{sv1,sv2,sv3}/foo.iso``.
  1076. Also you can specify numeric sequences with step counter:
  1077. ``http://host/image[000-100:2].img``.
  1078. A step counter can be omitted.
  1079. If all URIs do not point to the same file, such as the second example above,
  1080. -Z option is required.
  1081. Default: ``false``
  1082. .. option:: -q, --quiet[=true|false]
  1083. Make aria2 quiet (no console output).
  1084. Default: ``false``
  1085. .. option:: --realtime-chunk-checksum[=true|false]
  1086. Validate chunk of data by calculating checksum while downloading a file if
  1087. chunk checksums are provided.
  1088. Default: ``true``
  1089. .. option:: --remove-control-file[=true|false]
  1090. Remove control file before download. Using with
  1091. :option:`--allow-overwrite=true, <--allow-overwrite>` download always starts from
  1092. scratch. This will be useful for users behind proxy server which
  1093. disables resume.
  1094. .. option:: --save-session=<FILE>
  1095. Save error/unfinished downloads to FILE on exit. You can pass this
  1096. output file to aria2c with :option:`--input-file <-i>` option on
  1097. restart. If you like the output to be gzipped append a .gz extension to
  1098. the file name.
  1099. Please note that downloads added by
  1100. :func:`aria2.addTorrent` and :func:`aria2.addMetalink` RPC method
  1101. and whose meta data could not be saved as a file are not saved.
  1102. Downloads removed using :func:`aria2.remove` and
  1103. :func:`aria2.forceRemove` will not be saved. GID is also saved with
  1104. :option:`gid <--gid>`, but there are some restrictions, see below.
  1105. .. note::
  1106. Normally, GID of the download itself is saved. But some downloads
  1107. use meta data (e.g., BitTorrent and Metalink). In this case, there
  1108. are some restrictions.
  1109. magnet URI, and followed by torrent download
  1110. GID of BitTorrent meta data download is saved.
  1111. URI to torrent file, and followed by torrent download
  1112. GID of torrent file download is saved.
  1113. URI to metalink file, and followed by file downloads described in metalink file
  1114. GID of metalink file download is saved.
  1115. local torrent file
  1116. GID of torrent download is saved.
  1117. local metalink file
  1118. Any meaningful GID is not saved.
  1119. .. option:: --save-session-interval=<SEC>
  1120. Save error/unfinished downloads to a file specified by
  1121. :option:`--save-session` option every SEC seconds. If ``0`` is
  1122. given, file will be saved only when aria2 exits. Default: ``0``
  1123. .. option:: --socket-recv-buffer-size=<SIZE>
  1124. Set the maximum socket receive buffer in bytes. Specifing ``0``
  1125. will disable this option. This value will be set to socket file
  1126. descriptor using ``SO_RCVBUF`` socket option with ``setsockopt()``
  1127. call. Default: ``0``
  1128. .. option:: --stop=<SEC>
  1129. Stop application after SEC seconds has passed.
  1130. If ``0`` is given, this feature is disabled.
  1131. Default: ``0``
  1132. .. option:: --stop-with-process=<PID>
  1133. Stop application when process PID is not running. This is useful if
  1134. aria2 process is forked from a parent process. The parent process
  1135. can fork aria2 with its own pid and when parent process exits for
  1136. some reason, aria2 can detect it and shutdown itself.
  1137. .. option:: --truncate-console-readout[=true|false]
  1138. Truncate console readout to fit in a single line.
  1139. Default: ``true``
  1140. .. option:: -v, --version
  1141. Print the version number, copyright and the configuration information and
  1142. exit.
  1143. Notes for Options
  1144. ~~~~~~~~~~~~~~~~~
  1145. Optional arguments
  1146. ^^^^^^^^^^^^^^^^^^
  1147. The options that have its argument surrounded by square brackets([])
  1148. take an optional argument. Usually omitting the argument is evaluated to ``true``.
  1149. If you use short form of these options(such as ``-V``) and give
  1150. an argument, then the option name and its argument should be concatenated(e.g.
  1151. ``-Vfalse``). If any spaces are inserted between the option name and the argument,
  1152. the argument will be treated as URI and usually this is not what you expect.
  1153. Units (K and M)
  1154. ^^^^^^^^^^^^^^^
  1155. Some options takes ``K`` and ``M`` to conveniently represent 1024 and
  1156. 1048576 respectively. aria2 detects these characters in
  1157. case-insensitive way. In other words, ``k`` and ``m`` can be used as
  1158. well as ``K`` and ``M`` respectively.
  1159. URI, MAGNET, TORRENT_FILE, METALINK_FILE
  1160. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1161. You can specify multiple URIs in command-line. Unless you specify
  1162. :option:`--force-sequential <-Z>` option, all URIs must point to the same file or downloading will
  1163. fail.
  1164. You can specify arbitrary number of BitTorrent Magnet URI. Please note
  1165. that they are always treated as a separate download. Both hex encoded
  1166. 40 characters Info Hash and Base32 encoded 32 characters Info Hash are
  1167. supported. The multiple ``tr`` parameters are supported. Because
  1168. BitTorrent Magnet URI is likely to contain ``&`` character, it is highly
  1169. recommended to always quote URI with single(``'``) or double(``"``) quotation.
  1170. It is strongly recommended to enable DHT especially when ``tr``
  1171. parameter is missing. See http://www.bittorrent.org/beps/bep_0009.html
  1172. for more details about BitTorrent Magnet URI.
  1173. You can also specify arbitrary number of torrent files and Metalink
  1174. documents stored on a local drive. Please note that they are always
  1175. treated as a separate download. Both Metalink4 and Metalink version
  1176. 3.0 are supported.
  1177. You can specify both torrent file with -T option and URIs. By doing
  1178. this, you can download a file from both torrent swarm and
  1179. HTTP(S)/FTP/SFTP server at the same time, while the data from
  1180. HTTP(S)/FTP/SFTP are uploaded to the torrent swarm. For single file
  1181. torrents, URI can be a complete URI pointing to the resource or if URI
  1182. ends with /, name in torrent file in torrent is added. For multi-file
  1183. torrents, name and path are added to form a URI for each file.
  1184. .. note::
  1185. Make sure that URI is quoted with single(``'``) or double(``"``) quotation if it
  1186. contains ``&`` or any characters that have special meaning in shell.
  1187. Resuming Download
  1188. ~~~~~~~~~~~~~~~~~
  1189. Usually, you can resume transfer by just issuing same command (aria2c
  1190. URI) if the previous transfer is made by aria2.
  1191. If the previous transfer is made by a browser or wget like sequential
  1192. download manager, then use :option:`--continue <-c>` option to continue the
  1193. transfer.
  1194. Event Hook
  1195. ~~~~~~~~~~
  1196. aria2 provides options to specify arbitrary command after specific event
  1197. occurred. Currently following options are available:
  1198. :option:`--on-bt-download-complete`,
  1199. :option:`--on-download-pause`,
  1200. :option:`--on-download-complete`.
  1201. :option:`--on-download-start`,
  1202. :option:`--on-download-error`,
  1203. :option:`--on-download-stop`.
  1204. aria2 passes 3 arguments to specified command when it is executed.
  1205. These arguments are: GID, the number of files and file path. For
  1206. HTTP, FTP, and SFTP downloads, usually the number of files is 1.
  1207. BitTorrent download can contain multiple files. If number of files is
  1208. more than one, file path is first one. In other words, this is the
  1209. value of path key of first struct whose selected key is true in the
  1210. response of :func:`aria2.getFiles` RPC method. If you want to get all
  1211. file paths, consider to use JSON-RPC/XML-RPC. Please note that file
  1212. path may change during download in HTTP because of redirection or
  1213. Content-Disposition header.
  1214. Let's see an example of how arguments are passed to command:
  1215. .. code-block:: console
  1216. $ cat hook.sh
  1217. #!/bin/sh
  1218. echo "Called with [$1] [$2] [$3]"
  1219. $ aria2c --on-download-complete hook.sh http://example.org/file.iso
  1220. Called with [1] [1] [/path/to/file.iso]
  1221. .. _exit-status:
  1222. EXIT STATUS
  1223. -----------
  1224. Because aria2 can handle multiple downloads at once, it encounters
  1225. lots of errors in a session. aria2 returns the following exit status
  1226. based on the last error encountered.
  1227. 0
  1228. If all downloads were successful.
  1229. 1
  1230. If an unknown error occurred.
  1231. 2
  1232. If time out occurred.
  1233. 3
  1234. If a resource was not found.
  1235. 4
  1236. If aria2 saw the specified number of "resource not found" error.
  1237. See :option:`--max-file-not-found` option.
  1238. 5
  1239. If a download aborted because download speed was too slow.
  1240. See :option:`--lowest-speed-limit` option.
  1241. 6
  1242. If network problem occurred.
  1243. 7
  1244. If there were unfinished downloads. This error is only reported if
  1245. all finished downloads were successful and there were unfinished
  1246. downloads in a queue when aria2 exited by pressing :kbd:`Ctrl-C` by an user
  1247. or sending TERM or INT signal.
  1248. 8
  1249. If remote server did not support resume when resume was required to
  1250. complete download.
  1251. 9
  1252. If there was not enough disk space available.
  1253. 10
  1254. If piece length was different from one in .aria2 control file. See
  1255. :option:`--allow-piece-length-change` option.
  1256. 11
  1257. If aria2 was downloading same file at that moment.
  1258. 12
  1259. If aria2 was downloading same info hash torrent at that moment.
  1260. 13
  1261. If file already existed. See :option:`--allow-overwrite` option.
  1262. 14
  1263. If renaming file failed. See :option:`--auto-file-renaming` option.
  1264. 15
  1265. If aria2 could not open existing file.
  1266. 16
  1267. If aria2 could not create new file or truncate existing file.
  1268. 17
  1269. If file I/O error occurred.
  1270. 18
  1271. If aria2 could not create directory.
  1272. 19
  1273. If name resolution failed.
  1274. 20
  1275. If aria2 could not parse Metalink document.
  1276. 21
  1277. If FTP command failed.
  1278. 22
  1279. If HTTP response header was bad or unexpected.
  1280. 23
  1281. If too many redirects occurred.
  1282. 24
  1283. If HTTP authorization failed.
  1284. 25
  1285. If aria2 could not parse bencoded file (usually ".torrent" file).
  1286. 26
  1287. If ".torrent" file was corrupted or missing information that aria2 needed.
  1288. 27
  1289. If Magnet URI was bad.
  1290. 28
  1291. If bad/unrecognized option was given or unexpected option argument
  1292. was given.
  1293. 29
  1294. If the remote server was unable to handle the request due to a
  1295. temporary overloading or maintenance.
  1296. 30
  1297. If aria2 could not parse JSON-RPC request.
  1298. 31
  1299. Reserved. Not used.
  1300. 32
  1301. If checksum validation failed.
  1302. .. note::
  1303. An error occurred in a finished download will not be reported
  1304. as exit status.
  1305. ENVIRONMENT
  1306. -----------
  1307. aria2 recognizes the following environment variables.
  1308. ``http_proxy [http://][USER:PASSWORD@]HOST[:PORT]``
  1309. Specify proxy server for use in HTTP.
  1310. Overrides http-proxy value in configuration file.
  1311. The command-line option :option:`--http-proxy` overrides this value.
  1312. ``https_proxy [http://][USER:PASSWORD@]HOST[:PORT]``
  1313. Specify proxy server for use in HTTPS.
  1314. Overrides https-proxy value in configuration file.
  1315. The command-line option :option:`--https-proxy` overrides this value.
  1316. ``ftp_proxy [http://][USER:PASSWORD@]HOST[:PORT]``
  1317. Specify proxy server for use in FTP.
  1318. Overrides ftp-proxy value in configuration file.
  1319. The command-line option :option:`--ftp-proxy` overrides this value.
  1320. ``all_proxy [http://][USER:PASSWORD@]HOST[:PORT]``
  1321. Specify proxy server for use if no protocol-specific proxy is specified.
  1322. Overrides all-proxy value in configuration file.
  1323. The command-line option :option:`--all-proxy` overrides this value.
  1324. .. note::
  1325. Although aria2 accepts ``ftp://`` and ``https://`` scheme in proxy URI, it
  1326. simply assumes that ``http://`` is specified and does not change its
  1327. behavior based on the specified scheme.
  1328. ``no_proxy [DOMAIN,...]``
  1329. Specify a comma-separated list of host names, domains and network addresses
  1330. with or without a subnet mask where no proxy should be used. Overrides the
  1331. `no-proxy` value in configuration file. The command-line option
  1332. :option:`--no-proxy` overrides this value.
  1333. FILES
  1334. -----
  1335. aria2.conf
  1336. ~~~~~~~~~~
  1337. By default, aria2 checks whether the legacy path
  1338. ``$HOME/.aria2/aria2.conf`` is present, otherwise it parses
  1339. ``$XDG_CONFIG_HOME/aria2/aria2.conf`` as its configuration file. You
  1340. can specify the path to configuration file using :option:`--conf-path`
  1341. option. If you don't want to use the configuration file, use
  1342. :option:`--no-conf` option.
  1343. The configuration file is a text file and has 1 option per each
  1344. line. In each line, you can specify name-value pair in the format:
  1345. ``NAME=VALUE``, where name is the long command-line option name without
  1346. ``--`` prefix. You can use same syntax for the command-line option. The
  1347. lines beginning ``#`` are treated as comments::
  1348. # sample configuration file for aria2c
  1349. listen-port=60000
  1350. dht-listen-port=60000
  1351. seed-ratio=1.0
  1352. max-upload-limit=50K
  1353. ftp-pasv=true
  1354. .. note::
  1355. The confidential information such as user/password might be included
  1356. in the configuration file. It is recommended to change file mode
  1357. bits of the configuration file (e.g., ``chmod 600 aria2.conf``), so
  1358. that other user cannot see the contents of the file.
  1359. dht.dat
  1360. ~~~~~~~~
  1361. Unless the legacy file paths ``$HOME/.aria2/dht.dat`` and
  1362. ``$HOME/.aria2/dht6.dat`` are pointing to existing files, the routing
  1363. table of IPv4 DHT is saved to the path
  1364. ``$XDG_CACHE_HOME/aria2/dht.dat`` and the routing table of IPv6 DHT is
  1365. saved to the path ``$XDG_CACHE_HOME/aria2/dht6.dat``.
  1366. Netrc
  1367. ~~~~~
  1368. Netrc support is enabled by default for HTTP(S)/FTP/SFTP. To disable
  1369. netrc support, specify :option:`--no-netrc <-n>` option. Your .netrc
  1370. file should have correct permissions(600).
  1371. If machine name starts ``.``, aria2 performs domain-match instead of
  1372. exact match. This is an extension of aria2. For example of domain
  1373. match, imagine the following .netrc entry::
  1374. machine .example.org login myid password mypasswd
  1375. ``aria2.example.org`` domain-matches ``.example.org`` and uses ``myid`` and
  1376. ``mypasswd``.
  1377. Some domain-match example follow: ``example.net`` does not domain-match
  1378. ``.example.org``. ``example.org`` does not domain-match ``.example.org``
  1379. because of preceding ``.``. If you want to match ``example.org``, specify
  1380. ``example.org``.
  1381. Control File
  1382. ~~~~~~~~~~~~
  1383. aria2 uses a control file to track the progress of a download. A
  1384. control file is placed in the same directory as the downloading file
  1385. and its file name is the file name of downloading file with ``.aria2``
  1386. appended. For example, if you are downloading file.zip, then the
  1387. control file should be file.zip.aria2. (There is a exception for this
  1388. naming convention. If you are downloading a multi torrent, its
  1389. control file is the "top directory" name of the torrent with ``.aria2``
  1390. appended. The "top directory" name is a value of "name" key in "info"
  1391. directory in a torrent file.)
  1392. Usually a control file is deleted once download completed. If aria2
  1393. decides that download cannot be resumed(for example, when downloading
  1394. a file from a HTTP server which doesn't support resume), a control
  1395. file is not created.
  1396. Normally if you lose a control file, you cannot resume download. But
  1397. if you have a torrent or metalink with chunk checksums for the file,
  1398. you can resume the download without a control file by giving -V option
  1399. to aria2c in command-line.
  1400. .. _input-file:
  1401. Input File
  1402. ~~~~~~~~~~
  1403. The input file can contain a list of URIs for aria2 to download. You
  1404. can specify multiple URIs for a single entity: separate URIs on a
  1405. single line using the TAB character.
  1406. Each line is treated as if it is provided in command-line argument.
  1407. Therefore they are affected by :option:`--force-sequential <-Z>` and :option:`--parameterized-uri <-P>` options.
  1408. Since URIs in the input file are directly read by aria2, they must not
  1409. be quoted with single(``'``) or double(``"``) quotation.
  1410. Lines starting with ``#`` are treated as comments and skipped.
  1411. Additionally, the following options can be specified after each line
  1412. of URIs. These optional lines must start with white space(s).
  1413. .. hlist::
  1414. :columns: 3
  1415. * :option:`all-proxy <--all-proxy>`
  1416. * :option:`all-proxy-passwd <--all-proxy-passwd>`
  1417. * :option:`all-proxy-user <--all-proxy-user>`
  1418. * :option:`allow-overwrite <--allow-overwrite>`
  1419. * :option:`allow-piece-length-change <--allow-piece-length-change>`
  1420. * :option:`always-resume <--always-resume>`
  1421. * :option:`async-dns <--async-dns>`
  1422. * :option:`auto-file-renaming <--auto-file-renaming>`
  1423. * :option:`bt-enable-hook-after-hash-check <--bt-enable-hook-after-hash-check>`
  1424. * :option:`bt-enable-lpd <--bt-enable-lpd>`
  1425. * :option:`bt-exclude-tracker <--bt-exclude-tracker>`
  1426. * :option:`bt-external-ip <--bt-external-ip>`
  1427. * :option:`bt-force-encryption <--bt-force-encryption>`
  1428. * :option:`bt-hash-check-seed <--bt-hash-check-seed>`
  1429. * :option:`bt-max-peers <--bt-max-peers>`
  1430. * :option:`bt-metadata-only <--bt-metadata-only>`
  1431. * :option:`bt-min-crypto-level <--bt-min-crypto-level>`
  1432. * :option:`bt-prioritize-piece <--bt-prioritize-piece>`
  1433. * :option:`bt-remove-unselected-file <--bt-remove-unselected-file>`
  1434. * :option:`bt-request-peer-speed-limit <--bt-request-peer-speed-limit>`
  1435. * :option:`bt-require-crypto <--bt-require-crypto>`
  1436. * :option:`bt-save-metadata <--bt-save-metadata>`
  1437. * :option:`bt-seed-unverified <--bt-seed-unverified>`
  1438. * :option:`bt-stop-timeout <--bt-stop-timeout>`
  1439. * :option:`bt-tracker <--bt-tracker>`
  1440. * :option:`bt-tracker-connect-timeout <--bt-tracker-connect-timeout>`
  1441. * :option:`bt-tracker-interval <--bt-tracker-interval>`
  1442. * :option:`bt-tracker-timeout <--bt-tracker-timeout>`
  1443. * :option:`check-integrity <-V>`
  1444. * :option:`checksum <--checksum>`
  1445. * :option:`conditional-get <--conditional-get>`
  1446. * :option:`connect-timeout <--connect-timeout>`
  1447. * :option:`continue <-c>`
  1448. * :option:`dir <-d>`
  1449. * :option:`dry-run <--dry-run>`
  1450. * :option:`enable-http-keep-alive <--enable-http-keep-alive>`
  1451. * :option:`enable-http-pipelining <--enable-http-pipelining>`
  1452. * :option:`enable-mmap <--enable-mmap>`
  1453. * :option:`enable-peer-exchange <--enable-peer-exchange>`
  1454. * :option:`file-allocation <--file-allocation>`
  1455. * :option:`follow-metalink <--follow-metalink>`
  1456. * :option:`follow-torrent <--follow-torrent>`
  1457. * :option:`force-save <--force-save>`
  1458. * :option:`ftp-passwd <--ftp-passwd>`
  1459. * :option:`ftp-pasv <-p>`
  1460. * :option:`ftp-proxy <--ftp-proxy>`
  1461. * :option:`ftp-proxy-passwd <--ftp-proxy-passwd>`
  1462. * :option:`ftp-proxy-user <--ftp-proxy-user>`
  1463. * :option:`ftp-reuse-connection <--ftp-reuse-connection>`
  1464. * :option:`ftp-type <--ftp-type>`
  1465. * :option:`ftp-user <--ftp-user>`
  1466. * :option:`gid <--gid>`
  1467. * :option:`hash-check-only <--hash-check-only>`
  1468. * :option:`header <--header>`
  1469. * :option:`http-accept-gzip <--http-accept-gzip>`
  1470. * :option:`http-auth-challenge <--http-auth-challenge>`
  1471. * :option:`http-no-cache <--http-no-cache>`
  1472. * :option:`http-passwd <--http-passwd>`
  1473. * :option:`http-proxy <--http-proxy>`
  1474. * :option:`http-proxy-passwd <--http-proxy-passwd>`
  1475. * :option:`http-proxy-user <--http-proxy-user>`
  1476. * :option:`http-user <--http-user>`
  1477. * :option:`https-proxy <--https-proxy>`
  1478. * :option:`https-proxy-passwd <--https-proxy-passwd>`
  1479. * :option:`https-proxy-user <--https-proxy-user>`
  1480. * :option:`index-out <-O>`
  1481. * :option:`lowest-speed-limit <--lowest-speed-limit>`
  1482. * :option:`max-connection-per-server <-x>`
  1483. * :option:`max-download-limit <--max-download-limit>`
  1484. * :option:`max-file-not-found <--max-file-not-found>`
  1485. * :option:`max-resume-failure-tries <--max-resume-failure-tries>`
  1486. * :option:`max-tries <-m>`
  1487. * :option:`max-upload-limit <-u>`
  1488. * :option:`metalink-base-uri <--metalink-base-uri>`
  1489. * :option:`metalink-enable-unique-protocol <--metalink-enable-unique-protocol>`
  1490. * :option:`metalink-language <--metalink-language>`
  1491. * :option:`metalink-location <--metalink-location>`
  1492. * :option:`metalink-os <--metalink-os>`
  1493. * :option:`metalink-preferred-protocol <--metalink-preferred-protocol>`
  1494. * :option:`metalink-version <--metalink-version>`
  1495. * :option:`min-split-size <-k>`
  1496. * :option:`no-file-allocation-limit <--no-file-allocation-limit>`
  1497. * :option:`no-netrc <-n>`
  1498. * :option:`no-proxy <--no-proxy>`
  1499. * :option:`out <-o>`
  1500. * :option:`parameterized-uri <-P>`
  1501. * :option:`pause <--pause>`
  1502. * :option:`pause-metadata <--pause-metadata>`
  1503. * :option:`piece-length <--piece-length>`
  1504. * :option:`proxy-method <--proxy-method>`
  1505. * :option:`realtime-chunk-checksum <--realtime-chunk-checksum>`
  1506. * :option:`referer <--referer>`
  1507. * :option:`remote-time <-R>`
  1508. * :option:`remove-control-file <--remove-control-file>`
  1509. * :option:`retry-wait <--retry-wait>`
  1510. * :option:`reuse-uri <--reuse-uri>`
  1511. * :option:`rpc-save-upload-metadata <--rpc-save-upload-metadata>`
  1512. * :option:`seed-ratio <--seed-ratio>`
  1513. * :option:`seed-time <--seed-time>`
  1514. * :option:`select-file <--select-file>`
  1515. * :option:`split <-s>`
  1516. * :option:`ssh-host-key-md <--ssh-host-key-md>`
  1517. * :option:`stream-piece-selector <--stream-piece-selector>`
  1518. * :option:`timeout <-t>`
  1519. * :option:`uri-selector <--uri-selector>`
  1520. * :option:`use-head <--use-head>`
  1521. * :option:`user-agent <-U>`
  1522. These options have exactly same meaning of the ones in the
  1523. command-line options, but it just applies to the URIs it belongs to.
  1524. Please note that for options in input file ``--`` prefix must be
  1525. stripped.
  1526. For example, the content of uri.txt is::
  1527. http://server/file.iso http://mirror/file.iso
  1528. dir=/iso_images
  1529. out=file.img
  1530. http://foo/bar
  1531. If aria2 is executed with ``-i uri.txt -d /tmp`` options, then
  1532. ``file.iso`` is saved as ``/iso_images/file.img`` and it is downloaded
  1533. from ``http://server/file.iso`` and ``http://mirror/file.iso``. The file
  1534. ``bar`` is downloaded from ``http://foo/bar`` and saved as ``/tmp/bar``.
  1535. In some cases, :option:`out <-o>` parameter has no effect.
  1536. See note of :option:`--out <-o>`
  1537. option for the restrictions.
  1538. Server Performance Profile
  1539. ~~~~~~~~~~~~~~~~~~~~~~~~~~
  1540. This section describes the format of server performance profile. The
  1541. file is plain text and each line has several ``NAME=VALUE`` pair,
  1542. delimited by comma. Currently following NAMEs are recognized:
  1543. ``host``
  1544. Host name of the server. Required.
  1545. ``protocol``
  1546. Protocol for this profile, such as ftp, http. Required.
  1547. ``dl_speed``
  1548. The average download speed observed in the previous download in
  1549. bytes per sec. Required.
  1550. ``sc_avg_speed``
  1551. The average download speed observed in the previous download in
  1552. bytes per sec. This value is only updated if the download is done in
  1553. single connection environment and only used by
  1554. AdaptiveURISelector. Optional.
  1555. ``mc_avg_speed``
  1556. The average download speed observed in the previous download in
  1557. bytes per sec. This value is only updated if the download is done in
  1558. multi connection environment and only used by
  1559. AdaptiveURISelector. Optional.
  1560. ``counter``
  1561. How many times the server is used. Currently this value is only used
  1562. by AdaptiveURISelector. Optional.
  1563. ``last_updated``
  1564. Last contact time in GMT with this server, specified in the seconds
  1565. since the Epoch(00:00:00 on January 1, 1970, UTC). Required.
  1566. ``status``
  1567. ERROR is set when server cannot be reached or out-of-service or
  1568. timeout occurred. Otherwise, OK is set.
  1569. Those fields must exist in one line. The order of the fields is not
  1570. significant. You can put pairs other than the above; they are simply
  1571. ignored.
  1572. An example follows::
  1573. host=localhost, protocol=http, dl_speed=32000, last_updated=1222491640, status=OK
  1574. host=localhost, protocol=ftp, dl_speed=0, last_updated=1222491632, status=ERROR
  1575. RPC INTERFACE
  1576. -------------
  1577. aria2 provides JSON-RPC over HTTP and XML-RPC over HTTP interfaces that offer
  1578. basically the same functionality. aria2 also provides JSON-RPC
  1579. over WebSocket. JSON-RPC over WebSocket uses the same method signatures
  1580. and response format as JSON-RPC over HTTP, but additionally provides
  1581. server-initiated notifications. See `JSON-RPC over WebSocket`_ section for more
  1582. information.
  1583. The request path of the JSON-RPC interface (for both over HTTP and over
  1584. WebSocket) is ``/jsonrpc``. The request path of the XML-RPC interface is
  1585. ``/rpc``.
  1586. The WebSocket URI for JSON-RPC over WebSocket is
  1587. ``ws://HOST:PORT/jsonrpc``. If you enabled SSL/TLS encryption, use
  1588. ``wss://HOST:PORT/jsonrpc`` instead.
  1589. The implemented JSON-RPC is based on JSON-RPC 2.0
  1590. <http://jsonrpc.org/specification>, and
  1591. supports HTTP POST and GET (JSONP). The WebSocket transport is
  1592. an aria2 extension.
  1593. The JSON-RPC interface does not support notifications over HTTP, but the
  1594. RPC server will send notifications over WebSocket. It also does not
  1595. support floating point numbers. The character encoding must be UTF-8.
  1596. When reading the following documentation for JSON-RPC, interpret structs as JSON
  1597. objects.
  1598. Terminology
  1599. ~~~~~~~~~~~
  1600. GID
  1601. The GID (or gid) is a key to manage each download. Each download will be
  1602. assigned a unique GID. The GID is stored as 64-bit binary value in aria2.
  1603. For RPC access, it is represented as a hex string of 16 characters (e.g.,
  1604. ``2089b05ecca3d829``). Normally, aria2 generates this GID for each
  1605. download, but the user can specify GIDs manually using the :option:`--gid
  1606. <--gid>` option. When querying downloads by GID, you can specify only the
  1607. prefix of a GID as long as it is unique among others.
  1608. .. _rpc_auth:
  1609. RPC authorization secret token
  1610. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1611. As of 1.18.4, in addition to HTTP basic authorization, aria2 provides
  1612. RPC method-level authorization. In a future release, HTTP basic
  1613. authorization will be removed and RPC method-level authorization will
  1614. become mandatory.
  1615. To use RPC method-level authorization, the user has to specify an RPC secret
  1616. authorization token using the :option:`--rpc-secret` option. For each RPC
  1617. method call, the caller has to include the token prefixed with
  1618. ``token:``. Even when the :option:`--rpc-secret` option is not used, if the
  1619. first parameter in the RPC method is a string and starts with ``token:``, it
  1620. will removed from the parameter list before the request is being processed.
  1621. For example, if the RPC secret authorization token is ``$$secret$$``,
  1622. calling `aria2.addUri` RPC method would have to look like this::
  1623. aria2.addUri("token:$$secret$$", ["http://example.org/file"])
  1624. The `system.multicall` RPC method is treated specially. Since the XML-RPC
  1625. specification only allows a single array as a parameter for this method, we
  1626. don't specify the token in the call. Instead, each nested method call has
  1627. to provide the token as the first parameter as described above.
  1628. .. note::
  1629. The secret token validation in aria2 is designed to take at least a certain
  1630. amount of time to mitigate brute-force/dictionary attacks against the RPC
  1631. interface. Therefore it is recommended to prefer Batch or `system.multicall`
  1632. requests when appropriate.
  1633. Methods
  1634. ~~~~~~~
  1635. All code examples are compatible with the Python 2.7 interpreter.
  1636. For information on the *secret* parameter, see :ref:`rpc_auth`.
  1637. .. function:: aria2.addUri([secret], uris[, options[, position]])
  1638. This method adds a new download. *uris* is an array of
  1639. HTTP/FTP/SFTP/BitTorrent URIs (strings) pointing to the same
  1640. resource. If you mix URIs pointing to different resources, then the
  1641. download may fail or be corrupted without aria2 complaining. When
  1642. adding BitTorrent Magnet URIs, *uris* must have only one element and
  1643. it should be BitTorrent Magnet URI. *options* is a struct and its
  1644. members are pairs of option name and value. See :ref:`rpc_options`
  1645. below for more details. If *position* is given, it must be an
  1646. integer starting from 0. The new download will be inserted at
  1647. *position* in the waiting queue. If *position* is omitted or
  1648. *position* is larger than the current size of the queue, the new
  1649. download is appended to the end of the queue. This method returns
  1650. the GID of the newly registered download.
  1651. **JSON-RPC Example**
  1652. The following example adds ``http://example.org/file``::
  1653. >>> import urllib2, json
  1654. >>> jsonreq = json.dumps({'jsonrpc':'2.0', 'id':'qwer',
  1655. ... 'method':'aria2.addUri',
  1656. ... 'params':[['http://example.org/file']]})
  1657. >>> c = urllib2.urlopen('http://localhost:6800/jsonrpc', jsonreq)
  1658. >>> c.read()
  1659. '{"id":"qwer","jsonrpc":"2.0","result":"2089b05ecca3d829"}'
  1660. **XML-RPC Example**
  1661. The following example adds ``http://example.org/file``::
  1662. >>> import xmlrpclib
  1663. >>> s = xmlrpclib.ServerProxy('http://localhost:6800/rpc')
  1664. >>> s.aria2.addUri(['http://example.org/file'])
  1665. '2089b05ecca3d829'
  1666. The following example adds a new download with two sources and some options::
  1667. >>> s.aria2.addUri(['http://example.org/file', 'http://mirror/file'],
  1668. dict(dir="/tmp"))
  1669. 'd2703803b52216d1'
  1670. The following example adds a download and inserts it to the front of the
  1671. queue::
  1672. >>> s.aria2.addUri(['http://example.org/file'], {}, 0)
  1673. 'ca3d829cee549a4d'
  1674. .. function:: aria2.addTorrent([secret], torrent[, uris[, options[, position]]])
  1675. This method adds a BitTorrent download by uploading a ".torrent" file.
  1676. If you want to add a BitTorrent Magnet URI, use the :func:`aria2.addUri`
  1677. method instead. *torrent* must be a base64-encoded string containing the
  1678. contents of the ".torrent" file.
  1679. *uris* is an array of URIs (string). *uris* is used for
  1680. Web-seeding. For single file torrents, the URI can be a complete URI
  1681. pointing to the resource; if URI ends with /, name in torrent file
  1682. is added. For multi-file torrents, name and path in torrent are
  1683. added to form a URI for each file.
  1684. *options* is a struct and its members are pairs of option name and value.
  1685. See :ref:`rpc_options` below for more details.
  1686. If *position* is given, it must be an integer starting from 0. The new
  1687. download will be inserted at *position* in the waiting queue. If
  1688. *position* is omitted or *position* is larger than the current size of the
  1689. queue, the new download is appended to the end of the queue.
  1690. This method returns the GID of the newly registered download.
  1691. If :option:`--rpc-save-upload-metadata` is ``true``, the
  1692. uploaded data is saved as a file named as the hex string of SHA-1 hash of
  1693. data plus ".torrent" in the directory specified by :option:`--dir
  1694. <-d>` option. E.g. a file name might be
  1695. ``0a3893293e27ac0490424c06de4d09242215f0a6.torrent``. If a file with the
  1696. same name already exists, it is overwritten! If the file cannot be saved
  1697. successfully or :option:`--rpc-save-upload-metadata` is ``false``,
  1698. the downloads added by this method are not saved by :option:`--save-session`.
  1699. The following examples add local file ``file.torrent``.
  1700. **JSON-RPC Example**
  1701. ::
  1702. >>> import urllib2, json, base64
  1703. >>> torrent = base64.b64encode(open('file.torrent').read())
  1704. >>> jsonreq = json.dumps({'jsonrpc':'2.0', 'id':'asdf',
  1705. ... 'method':'aria2.addTorrent', 'params':[torrent]})
  1706. >>> c = urllib2.urlopen('http://localhost:6800/jsonrpc', jsonreq)
  1707. >>> c.read()
  1708. '{"id":"asdf","jsonrpc":"2.0","result":"2089b05ecca3d829"}'
  1709. **XML-RPC Example**
  1710. ::
  1711. >>> import xmlrpclib
  1712. >>> s = xmlrpclib.ServerProxy('http://localhost:6800/rpc')
  1713. >>> s.aria2.addTorrent(xmlrpclib.Binary(open('file.torrent', mode='rb').read()))
  1714. '2089b05ecca3d829'
  1715. .. function:: aria2.addMetalink([secret], metalink[, options[, position]])
  1716. This method adds a Metalink download by uploading a ".metalink" file.
  1717. *metalink* is a base64-encoded string which contains the contents of the
  1718. ".metalink" file.
  1719. *options* is a struct and its members are pairs of option name and value.
  1720. See :ref:`rpc_options` below for more details.
  1721. If *position* is given, it must be an integer starting from 0. The new
  1722. download will be inserted at *position* in the waiting queue. If
  1723. *position* is omitted or *position* is larger than the current size of the
  1724. queue, the new download is appended to the end of the queue.
  1725. This method returns an array of GIDs of newly registered downloads.
  1726. If :option:`--rpc-save-upload-metadata` is ``true``, the uploaded data
  1727. is saved as a file named hex string of SHA-1 hash of data plus
  1728. ".metalink" in the directory specified by :option:`--dir <-d>`
  1729. option. E.g. a file name might be
  1730. ``0a3893293e27ac0490424c06de4d09242215f0a6.metalink``. If a file with the
  1731. same name already exists, it is overwritten! If the file cannot be saved
  1732. successfully or :option:`--rpc-save-upload-metadata` is ``false``,
  1733. the downloads added by this method are not saved by
  1734. :option:`--save-session`.
  1735. The following examples add local file file.meta4.
  1736. **JSON-RPC Example**
  1737. ::
  1738. >>> import urllib2, json, base64
  1739. >>> metalink = base64.b64encode(open('file.meta4').read())
  1740. >>> jsonreq = json.dumps({'jsonrpc':'2.0', 'id':'qwer',
  1741. ... 'method':'aria2.addMetalink',
  1742. ... 'params':[metalink]})
  1743. >>> c = urllib2.urlopen('http://localhost:6800/jsonrpc', jsonreq)
  1744. >>> c.read()
  1745. '{"id":"qwer","jsonrpc":"2.0","result":["2089b05ecca3d829"]}'
  1746. **XML-RPC Example**
  1747. ::
  1748. >>> import xmlrpclib
  1749. >>> s = xmlrpclib.ServerProxy('http://localhost:6800/rpc')
  1750. >>> s.aria2.addMetalink(xmlrpclib.Binary(open('file.meta4', mode='rb').read()))
  1751. ['2089b05ecca3d829']
  1752. .. function:: aria2.remove([secret], gid)
  1753. This method removes the download denoted by *gid* (string). If the specified
  1754. download is in progress, it is first stopped. The status of the removed
  1755. download becomes ``removed``.
  1756. This method returns GID of removed download.
  1757. The following examples remove a download with GID#2089b05ecca3d829.
  1758. **JSON-RPC Example**
  1759. ::
  1760. >>> import urllib2, json
  1761. >>> jsonreq = json.dumps({'jsonrpc':'2.0', 'id':'qwer',
  1762. ... 'method':'aria2.remove',
  1763. ... 'params':['2089b05ecca3d829']})
  1764. >>> c = urllib2.urlopen('http://localhost:6800/jsonrpc', jsonreq)
  1765. >>> c.read()
  1766. '{"id":"qwer","jsonrpc":"2.0","result":"2089b05ecca3d829"}'
  1767. **XML-RPC Example**
  1768. ::
  1769. >>> import xmlrpclib
  1770. >>> s = xmlrpclib.ServerProxy('http://localhost:6800/rpc')
  1771. >>> s.aria2.remove('2089b05ecca3d829')
  1772. '2089b05ecca3d829'
  1773. .. function:: aria2.forceRemove([secret], gid)
  1774. This method removes the download denoted by *gid*. This method
  1775. behaves just like :func:`aria2.remove` except that this method removes
  1776. the download without performing any actions which take time, such as
  1777. contacting BitTorrent trackers to unregister the download first.
  1778. .. function:: aria2.pause([secret], gid)
  1779. This method pauses the download denoted by *gid* (string). The status of
  1780. paused download becomes ``paused``. If the download was active, the download
  1781. is placed in the front of waiting queue. While the status is ``paused``,
  1782. the download is not started. To change status to ``waiting``, use the
  1783. :func:`aria2.unpause` method.
  1784. This method returns GID of paused download.
  1785. .. function:: aria2.pauseAll([secret])
  1786. This method is equal to calling :func:`aria2.pause` for every active/waiting
  1787. download. This methods returns ``OK``.
  1788. .. function:: aria2.forcePause([secret], gid)
  1789. This method pauses the download denoted by *gid*. This method
  1790. behaves just like :func:`aria2.pause` except that this method pauses
  1791. downloads without performing any actions which take time, such as contacting
  1792. BitTorrent trackers to unregister the download first.
  1793. .. function:: aria2.forcePauseAll([secret])
  1794. This method is equal to calling :func:`aria2.forcePause` for every
  1795. active/waiting download. This methods returns ``OK``.
  1796. .. function:: aria2.unpause([secret], gid)
  1797. This method changes the status of the download denoted by *gid* (string) from
  1798. ``paused`` to ``waiting``, making the download eligible to be restarted.
  1799. This method returns the GID of the unpaused download.
  1800. .. function:: aria2.unpauseAll([secret])
  1801. This method is equal to calling :func:`aria2.unpause` for every active/waiting
  1802. download. This methods returns ``OK``.
  1803. .. function:: aria2.tellStatus([secret], gid[, keys])
  1804. This method returns the progress of the download denoted by *gid* (string).
  1805. *keys* is an array of strings. If specified, the response contains only keys
  1806. in the *keys* array. If *keys* is empty or omitted, the response contains all
  1807. keys. This is useful when you just want specific keys and avoid unnecessary
  1808. transfers.
  1809. For example, ``aria2.tellStatus("2089b05ecca3d829", ["gid", "status"])``
  1810. returns the *gid* and *status* keys only. The response is a struct and
  1811. contains following keys. Values are strings.
  1812. ``gid``
  1813. GID of the download.
  1814. ``status``
  1815. ``active`` for currently downloading/seeding downloads.
  1816. ``waiting`` for downloads in the queue; download is not started.
  1817. ``paused`` for paused downloads.
  1818. ``error`` for downloads that were stopped because of error.
  1819. ``complete`` for stopped and completed downloads.
  1820. ``removed`` for the downloads removed by user.
  1821. ``totalLength``
  1822. Total length of the download in bytes.
  1823. ``completedLength``
  1824. Completed length of the download in bytes.
  1825. ``uploadLength``
  1826. Uploaded length of the download in bytes.
  1827. ``bitfield``
  1828. Hexadecimal representation of the download progress. The highest bit
  1829. corresponds to the piece at index 0. Any set bits indicate loaded pieces,
  1830. while unset bits indicate not yet loaded and/or missing pieces. Any overflow
  1831. bits at the end are set to zero. When the download was not started yet,
  1832. this key will not be included in the response.
  1833. ``downloadSpeed``
  1834. Download speed of this download measured in bytes/sec.
  1835. ``uploadSpeed``
  1836. Upload speed of this download measured in bytes/sec.
  1837. ``infoHash``
  1838. InfoHash. BitTorrent only.
  1839. ``numSeeders``
  1840. The number of seeders aria2 has connected to. BitTorrent only.
  1841. ``pieceLength``
  1842. Piece length in bytes.
  1843. ``numPieces``
  1844. The number of pieces.
  1845. ``connections``
  1846. The number of peers/servers aria2 has connected to.
  1847. ``errorCode``
  1848. The code of the last error for this item, if any. The value
  1849. is a string. The error codes are defined in the `EXIT STATUS`_ section.
  1850. This value is only available for stopped/completed downloads.
  1851. ``errorMessage``
  1852. The (hopefully) human readable error message associated to
  1853. ``errorCode``.
  1854. ``followedBy``
  1855. List of GIDs which are generated as the result of this
  1856. download. For example, when aria2 downloads a Metalink file, it
  1857. generates downloads described in the Metalink (see the
  1858. :option:`--follow-metalink` option). This value is useful to track
  1859. auto-generated downloads. If there are no such downloads, this key will not
  1860. be included in the response.
  1861. ``belongsTo``
  1862. GID of a parent download. Some downloads are a part of another
  1863. download. For example, if a file in a Metalink has BitTorrent
  1864. resources, the downloads of ".torrent" files are parts of that parent.
  1865. If this download has no parent, this key will not be included in the
  1866. response.
  1867. ``dir``
  1868. Directory to save files.
  1869. ``files``
  1870. Returns the list of files. The elements of this list are the same structs
  1871. used in :func:`aria2.getFiles` method.
  1872. ``bittorrent``
  1873. Struct which contains information retrieved from the .torrent
  1874. (file). BitTorrent only. It contains following keys.
  1875. ``announceList``
  1876. List of lists of announce URIs. If the torrent contains ``announce``
  1877. and no ``announce-list``, ``announce`` is converted to the
  1878. ``announce-list`` format.
  1879. ``comment``
  1880. The comment of the torrent. ``comment.utf-8`` is used if available.
  1881. ``creationDate``
  1882. The creation time of the torrent. The value is an integer since
  1883. the epoch, measured in seconds.
  1884. ``mode``
  1885. File mode of the torrent. The value is either ``single`` or ``multi``.
  1886. ``info``
  1887. Struct which contains data from Info dictionary. It contains
  1888. following keys.
  1889. ``name``
  1890. name in info dictionary. ``name.utf-8`` is used if available.
  1891. **JSON-RPC Example**
  1892. The following example gets information about a download with GID#2089b05ecca3d829::
  1893. >>> import urllib2, json
  1894. >>> from pprint import pprint
  1895. >>> jsonreq = json.dumps({'jsonrpc':'2.0', 'id':'qwer',
  1896. ... 'method':'aria2.tellStatus',
  1897. ... 'params':['2089b05ecca3d829']})
  1898. >>> c = urllib2.urlopen('http://localhost:6800/jsonrpc', jsonreq)
  1899. >>> pprint(json.loads(c.read()))
  1900. {u'id': u'qwer',
  1901. u'jsonrpc': u'2.0',
  1902. u'result': {u'bitfield': u'0000000000',
  1903. u'completedLength': u'901120',
  1904. u'connections': u'1',
  1905. u'dir': u'/downloads',
  1906. u'downloadSpeed': u'15158',
  1907. u'files': [{u'index': u'1',
  1908. u'length': u'34896138',
  1909. u'completedLength': u'34896138',
  1910. u'path': u'/downloads/file',
  1911. u'selected': u'true',
  1912. u'uris': [{u'status': u'used',
  1913. u'uri': u'http://example.org/file'}]}],
  1914. u'gid': u'2089b05ecca3d829',
  1915. u'numPieces': u'34',
  1916. u'pieceLength': u'1048576',
  1917. u'status': u'active',
  1918. u'totalLength': u'34896138',
  1919. u'uploadLength': u'0',
  1920. u'uploadSpeed': u'0'}}
  1921. The following example gets only specific keys::
  1922. >>> jsonreq = json.dumps({'jsonrpc':'2.0', 'id':'qwer',
  1923. ... 'method':'aria2.tellStatus',
  1924. ... 'params':['2089b05ecca3d829',
  1925. ... ['gid',
  1926. ... 'totalLength',
  1927. ... 'completedLength']]})
  1928. >>> c = urllib2.urlopen('http://localhost:6800/jsonrpc', jsonreq)
  1929. >>> pprint(json.loads(c.read()))
  1930. {u'id': u'qwer',
  1931. u'jsonrpc': u'2.0',
  1932. u'result': {u'completedLength': u'5701632',
  1933. u'gid': u'2089b05ecca3d829',
  1934. u'totalLength': u'34896138'}}
  1935. **XML-RPC Example**
  1936. The following example gets information about a download with GID#2089b05ecca3d829::
  1937. >>> import xmlrpclib
  1938. >>> from pprint import pprint
  1939. >>> s = xmlrpclib.ServerProxy('http://localhost:6800/rpc')
  1940. >>> r = s.aria2.tellStatus('2089b05ecca3d829')
  1941. >>> pprint(r)
  1942. {'bitfield': 'ffff80',
  1943. 'completedLength': '34896138',
  1944. 'connections': '0',
  1945. 'dir': '/downloads',
  1946. 'downloadSpeed': '0',
  1947. 'errorCode': '0',
  1948. 'files': [{'index': '1',
  1949. 'length': '34896138',
  1950. 'completedLength': '34896138',
  1951. 'path': '/downloads/file',
  1952. 'selected': 'true',
  1953. 'uris': [{'status': 'used',
  1954. 'uri': 'http://example.org/file'}]}],
  1955. 'gid': '2089b05ecca3d829',
  1956. 'numPieces': '17',
  1957. 'pieceLength': '2097152',
  1958. 'status': 'complete',
  1959. 'totalLength': '34896138',
  1960. 'uploadLength': '0',
  1961. 'uploadSpeed': '0'}
  1962. The following example gets only specific keys::
  1963. >>> r = s.aria2.tellStatus('2089b05ecca3d829', ['gid', 'totalLength', 'completedLength'])
  1964. >>> pprint(r)
  1965. {'completedLength': '34896138', 'gid': '2089b05ecca3d829', 'totalLength': '34896138'}
  1966. .. function:: aria2.getUris([secret], gid)
  1967. This method returns the URIs used in the download denoted by *gid* (string).
  1968. The response is an array of structs and it contains following keys.
  1969. Values are string.
  1970. ``uri``
  1971. URI
  1972. ``status``
  1973. 'used' if the URI is in use. 'waiting' if the URI is still waiting in the
  1974. queue.
  1975. **JSON-RPC Example**
  1976. ::
  1977. >>> import urllib2, json
  1978. >>> from pprint import pprint
  1979. >>> jsonreq = json.dumps({'jsonrpc':'2.0', 'id':'qwer',
  1980. ... 'method':'aria2.getUris',
  1981. ... 'params':['2089b05ecca3d829']})
  1982. >>> c = urllib2.urlopen('http://localhost:6800/jsonrpc', jsonreq)
  1983. >>> pprint(json.loads(c.read()))
  1984. {u'id': u'qwer',
  1985. u'jsonrpc': u'2.0',
  1986. u'result': [{u'status': u'used',
  1987. u'uri': u'http://example.org/file'}]}
  1988. **XML-RPC Example**
  1989. ::
  1990. >>> import xmlrpclib
  1991. >>> from pprint import pprint
  1992. >>> s = xmlrpclib.ServerProxy('http://localhost:6800/rpc')
  1993. >>> r = s.aria2.getUris('2089b05ecca3d829')
  1994. >>> pprint(r)
  1995. [{'status': 'used', 'uri': 'http://example.org/file'}]
  1996. .. function:: aria2.getFiles([secret], gid)
  1997. This method returns the file list of the download denoted by *gid* (string).
  1998. The response is an array of structs which contain following keys.
  1999. Values are strings.
  2000. ``index``
  2001. Index of the file, starting at 1, in the same order as files appear in the
  2002. multi-file torrent.
  2003. ``path``
  2004. File path.
  2005. ``length``
  2006. File size in bytes.
  2007. ``completedLength``
  2008. Completed length of this file in bytes. Please note that it is
  2009. possible that sum of ``completedLength`` is less than the
  2010. ``completedLength`` returned by the :func:`aria2.tellStatus` method.
  2011. This is because ``completedLength`` in
  2012. :func:`aria2.getFiles`
  2013. only includes completed pieces. On the other hand, ``completedLength``
  2014. in :func:`aria2.tellStatus` also includes partially completed pieces.
  2015. ``selected``
  2016. ``true`` if this file is selected by :option:`--select-file` option. If
  2017. :option:`--select-file` is not specified or this is single-file torrent or
  2018. not a torrent download at all, this value is always ``true``. Otherwise
  2019. ``false``.
  2020. ``uris``
  2021. Returns a list of URIs for this file. The element type is the same struct
  2022. used in the :func:`aria2.getUris` method.
  2023. **JSON-RPC Example**
  2024. ::
  2025. >>> import urllib2, json
  2026. >>> from pprint import pprint
  2027. >>> jsonreq = json.dumps({'jsonrpc':'2.0', 'id':'qwer',
  2028. ... 'method':'aria2.getFiles',
  2029. ... 'params':['2089b05ecca3d829']})
  2030. >>> c = urllib2.urlopen('http://localhost:6800/jsonrpc', jsonreq)
  2031. >>> pprint(json.loads(c.read()))
  2032. {u'id': u'qwer',
  2033. u'jsonrpc': u'2.0',
  2034. u'result': [{u'index': u'1',
  2035. u'length': u'34896138',
  2036. u'completedLength': u'34896138',
  2037. u'path': u'/downloads/file',
  2038. u'selected': u'true',
  2039. u'uris': [{u'status': u'used',
  2040. u'uri': u'http://example.org/file'}]}]}
  2041. **XML-RPC Example**
  2042. ::
  2043. >>> import xmlrpclib
  2044. >>> from pprint import pprint
  2045. >>> s = xmlrpclib.ServerProxy('http://localhost:6800/rpc')
  2046. >>> r = s.aria2.getFiles('2089b05ecca3d829')
  2047. >>> pprint(r)
  2048. [{'index': '1',
  2049. 'length': '34896138',
  2050. 'completedLength': '34896138',
  2051. 'path': '/downloads/file',
  2052. 'selected': 'true',
  2053. 'uris': [{'status': 'used',
  2054. 'uri': 'http://example.org/file'}]}]
  2055. .. function:: aria2.getPeers([secret], gid)
  2056. This method returns a list peers of the download denoted by *gid* (string).
  2057. This method is for BitTorrent only. The response is an array of structs and
  2058. contains the following keys. Values are strings.
  2059. ``peerId``
  2060. Percent-encoded peer ID.
  2061. ``ip``
  2062. IP address of the peer.
  2063. ``port``
  2064. Port number of the peer.
  2065. ``bitfield``
  2066. Hexadecimal representation of the download progress of the peer. The
  2067. highest bit corresponds to the piece at index 0. Set bits indicate the
  2068. piece is available and unset bits indicate the piece is missing. Any
  2069. spare bits at the end are set to zero.
  2070. ``amChoking``
  2071. ``true`` if aria2 is choking the peer. Otherwise ``false``.
  2072. ``peerChoking``
  2073. ``true`` if the peer is choking aria2. Otherwise ``false``.
  2074. ``downloadSpeed``
  2075. Download speed (byte/sec) that this client obtains from the peer.
  2076. ``uploadSpeed``
  2077. Upload speed(byte/sec) that this client uploads to the peer.
  2078. ``seeder``
  2079. ``true`` is this peer is a seeder. Otherwise ``false``.
  2080. **JSON-RPC Example**
  2081. ::
  2082. >>> import urllib2, json
  2083. >>> from pprint import pprint
  2084. >>> jsonreq = json.dumps({'jsonrpc':'2.0', 'id':'qwer',
  2085. ... 'method':'aria2.getPeers',
  2086. ... 'params':['2089b05ecca3d829']})
  2087. >>> c = urllib2.urlopen('http://localhost:6800/jsonrpc', jsonreq)
  2088. >>> pprint(json.loads(c.read()))
  2089. {u'id': u'qwer',
  2090. u'jsonrpc': u'2.0',
  2091. u'result': [{u'amChoking': u'true',
  2092. u'bitfield': u'ffffffffffffffffffffffffffffffffffffffff',
  2093. u'downloadSpeed': u'10602',
  2094. u'ip': u'10.0.0.9',
  2095. u'peerChoking': u'false',
  2096. u'peerId': u'aria2%2F1%2E10%2E5%2D%87%2A%EDz%2F%F7%E6',
  2097. u'port': u'6881',
  2098. u'seeder': u'true',
  2099. u'uploadSpeed': u'0'},
  2100. {u'amChoking': u'false',
  2101. u'bitfield': u'ffffeff0fffffffbfffffff9fffffcfff7f4ffff',
  2102. u'downloadSpeed': u'8654',
  2103. u'ip': u'10.0.0.30',
  2104. u'peerChoking': u'false',
  2105. u'peerId': u'bittorrent client758',
  2106. u'port': u'37842',
  2107. u'seeder': u'false',
  2108. u'uploadSpeed': u'6890'}]}
  2109. **XML-RPC Example**
  2110. ::
  2111. >>> import xmlrpclib
  2112. >>> from pprint import pprint
  2113. >>> s = xmlrpclib.ServerProxy('http://localhost:6800/rpc')
  2114. >>> r = s.aria2.getPeers('2089b05ecca3d829')
  2115. >>> pprint(r)
  2116. [{'amChoking': 'true',
  2117. 'bitfield': 'ffffffffffffffffffffffffffffffffffffffff',
  2118. 'downloadSpeed': '10602',
  2119. 'ip': '10.0.0.9',
  2120. 'peerChoking': 'false',
  2121. 'peerId': 'aria2%2F1%2E10%2E5%2D%87%2A%EDz%2F%F7%E6',
  2122. 'port': '6881',
  2123. 'seeder': 'true',
  2124. 'uploadSpeed': '0'},
  2125. {'amChoking': 'false',
  2126. 'bitfield': 'ffffeff0fffffffbfffffff9fffffcfff7f4ffff',
  2127. 'downloadSpeed': '8654',
  2128. 'ip': '10.0.0.30',
  2129. 'peerChoking': 'false',
  2130. 'peerId': 'bittorrent client758',
  2131. 'port': '37842',
  2132. 'seeder': 'false,
  2133. 'uploadSpeed': '6890'}]
  2134. .. function:: aria2.getServers([secret], gid)
  2135. This method returns currently connected HTTP(S)/FTP/SFTP servers of
  2136. the download denoted by *gid* (string). The response is an array of
  2137. structs and contains the following keys. Values are strings.
  2138. ``index``
  2139. Index of the file, starting at 1, in the same order as files appear in the
  2140. multi-file metalink.
  2141. ``servers``
  2142. A list of structs which contain the following keys.
  2143. ``uri``
  2144. Original URI.
  2145. ``currentUri``
  2146. This is the URI currently used for downloading. If redirection is
  2147. involved, currentUri and uri may differ.
  2148. ``downloadSpeed``
  2149. Download speed (byte/sec)
  2150. **JSON-RPC Example**
  2151. ::
  2152. >>> import urllib2, json
  2153. >>> from pprint import pprint
  2154. >>> jsonreq = json.dumps({'jsonrpc':'2.0', 'id':'qwer',
  2155. ... 'method':'aria2.getServers',
  2156. ... 'params':['2089b05ecca3d829']})
  2157. >>> c = urllib2.urlopen('http://localhost:6800/jsonrpc', jsonreq)
  2158. >>> pprint(json.loads(c.read()))
  2159. {u'id': u'qwer',
  2160. u'jsonrpc': u'2.0',
  2161. u'result': [{u'index': u'1',
  2162. u'servers': [{u'currentUri': u'http://example.org/file',
  2163. u'downloadSpeed': u'10467',
  2164. u'uri': u'http://example.org/file'}]}]}
  2165. **XML-RPC Example**
  2166. ::
  2167. >>> import xmlrpclib
  2168. >>> from pprint import pprint
  2169. >>> s = xmlrpclib.ServerProxy('http://localhost:6800/rpc')
  2170. >>> r = s.aria2.getServers('2089b05ecca3d829')
  2171. >>> pprint(r)
  2172. [{'index': '1',
  2173. 'servers': [{'currentUri': 'http://example.org/dl/file',
  2174. 'downloadSpeed': '20285',
  2175. 'uri': 'http://example.org/file'}]}]
  2176. .. function:: aria2.tellActive([secret], [keys])
  2177. This method returns a list of active downloads. The response is an array of
  2178. the same structs as returned by the :func:`aria2.tellStatus` method.
  2179. For the *keys* parameter, please refer to the :func:`aria2.tellStatus` method.
  2180. .. function:: aria2.tellWaiting([secret], offset, num, [keys])
  2181. This method returns a list of waiting downloads, including paused
  2182. ones.
  2183. *offset* is an integer and specifies the offset from
  2184. the download waiting at the front.
  2185. *num* is an integer and specifies the max. number of downloads to be returned.
  2186. For the *keys* parameter, please refer to the :func:`aria2.tellStatus` method.
  2187. If *offset* is a positive integer, this method returns downloads in the
  2188. range of [*offset*, *offset* + *num*).
  2189. *offset* can be a negative integer. *offset* == -1 points last
  2190. download in the waiting queue and *offset* == -2 points the download
  2191. before the last download, and so on. Downloads in the response are
  2192. in reversed order then.
  2193. For example, imagine three downloads "A","B" and "C" are waiting
  2194. in this order. ``aria2.tellWaiting(0, 1)`` returns
  2195. ``["A"]``. ``aria2.tellWaiting(1, 2)`` returns ``["B", "C"]``.
  2196. ``aria2.tellWaiting(-1, 2)`` returns ``["C", "B"]``.
  2197. The response is an array of the same structs as returned by
  2198. :func:`aria2.tellStatus` method.
  2199. .. function:: aria2.tellStopped([secret], offset, num, [keys])
  2200. This method returns a list of stopped downloads.
  2201. *offset* is an integer and specifies the offset from the least recently
  2202. stopped download.
  2203. *num* is an integer and specifies the max. number of downloads to be returned.
  2204. For the *keys* parameter, please refer to the :func:`aria2.tellStatus` method.
  2205. *offset* and *num* have the same semantics as described in the
  2206. :func:`aria2.tellWaiting` method.
  2207. The response is an array of the same structs as returned by the
  2208. :func:`aria2.tellStatus` method.
  2209. .. function:: aria2.changePosition([secret], gid, pos, how)
  2210. This method changes the position of the download denoted by
  2211. *gid* in the queue.
  2212. *pos* is an integer.
  2213. *how* is a string. If *how* is ``POS_SET``, it moves the download to a
  2214. position relative to the beginning of the queue. If *how* is ``POS_CUR``, it
  2215. moves the download to a position relative to the current position. If *how* is
  2216. ``POS_END``, it moves the download to a position relative to the end of the
  2217. queue. If the destination position is less than 0 or beyond the end of
  2218. the queue, it moves the download to the beginning or the end of the
  2219. queue respectively. The response is an integer denoting the resulting
  2220. position.
  2221. For example, if GID#2089b05ecca3d829 is currently in position 3,
  2222. ``aria2.changePosition('2089b05ecca3d829', -1, 'POS_CUR')`` will
  2223. change its position to 2. Additionally
  2224. ``aria2.changePosition('2089b05ecca3d829', 0, 'POS_SET')`` will
  2225. change its position to 0 (the beginning of the queue).
  2226. The following examples move the download GID#2089b05ecca3d829 to the
  2227. front of the queue.
  2228. **JSON-RPC Example**
  2229. ::
  2230. >>> import urllib2, json
  2231. >>> from pprint import pprint
  2232. >>> jsonreq = json.dumps({'jsonrpc':'2.0', 'id':'qwer',
  2233. ... 'method':'aria2.changePosition',
  2234. ... 'params':['2089b05ecca3d829', 0, 'POS_SET']})
  2235. >>> c = urllib2.urlopen('http://localhost:6800/jsonrpc', jsonreq)
  2236. >>> pprint(json.loads(c.read()))
  2237. {u'id': u'qwer', u'jsonrpc': u'2.0', u'result': 0}
  2238. **XML-RPC Example**
  2239. ::
  2240. >>> import xmlrpclib
  2241. >>> s = xmlrpclib.ServerProxy('http://localhost:6800/rpc')
  2242. >>> s.aria2.changePosition('2089b05ecca3d829', 0, 'POS_SET')
  2243. 0
  2244. .. function:: aria2.changeUri([secret], gid, fileIndex, delUris, addUris[, position])
  2245. This method removes the URIs in *delUris* from and appends the URIs in
  2246. *addUris* to download denoted by *gid*. *delUris* and *addUris* are
  2247. lists of strings. A download can contain multiple files and URIs are
  2248. attached to each file. *fileIndex* is used to select which file to
  2249. remove/attach given URIs. *fileIndex* is 1-based. *position* is used
  2250. to specify where URIs are inserted in the existing waiting URI
  2251. list. *position* is 0-based. When *position* is omitted, URIs are
  2252. appended to the back of the list. This method first executes the removal
  2253. and then the addition. *position* is the position after URIs are removed,
  2254. not the position when this method is called. When removing an URI, if
  2255. the same URIs exist in download, only one of them is removed for each URI
  2256. in *delUris*. In other words, if there are three URIs
  2257. ``http://example.org/aria2`` and you want remove them all, you have to
  2258. specify (at least) 3 ``http://example.org/aria2`` in *delUris*. This
  2259. method returns a list which contains two integers. The first integer is
  2260. the number of URIs deleted. The second integer is the number of URIs
  2261. added.
  2262. The following examples add the URI ``http://example.org/file`` to the
  2263. file whose index is ``1`` and belongs to the download
  2264. GID#2089b05ecca3d829.
  2265. **JSON-RPC Example**
  2266. ::
  2267. >>> import urllib2, json
  2268. >>> from pprint import pprint
  2269. >>> jsonreq = json.dumps({'jsonrpc':'2.0', 'id':'qwer',
  2270. ... 'method':'aria2.changeUri',
  2271. ... 'params':['2089b05ecca3d829', 1, [],
  2272. ['http://example.org/file']]})
  2273. >>> c = urllib2.urlopen('http://localhost:6800/jsonrpc', jsonreq)
  2274. >>> pprint(json.loads(c.read()))
  2275. {u'id': u'qwer', u'jsonrpc': u'2.0', u'result': [0, 1]}
  2276. **XML-RPC Example**
  2277. ::
  2278. >>> import xmlrpclib
  2279. >>> s = xmlrpclib.ServerProxy('http://localhost:6800/rpc')
  2280. >>> s.aria2.changeUri('2089b05ecca3d829', 1, [],
  2281. ['http://example.org/file'])
  2282. [0, 1]
  2283. .. function:: aria2.getOption([secret], gid)
  2284. This method returns options of the download denoted by *gid*. The
  2285. response is a struct where keys are the names of options.
  2286. The values are strings.
  2287. Note that this method does not return options which
  2288. have no default value and have not been set on the command-line, in
  2289. configuration files or RPC methods.
  2290. The following examples get options of the download
  2291. GID#2089b05ecca3d829.
  2292. **JSON-RPC Example**
  2293. ::
  2294. >>> import urllib2, json
  2295. >>> from pprint import pprint
  2296. >>> jsonreq = json.dumps({'jsonrpc':'2.0', 'id':'qwer',
  2297. ... 'method':'aria2.getOption',
  2298. ... 'params':['2089b05ecca3d829']})
  2299. >>> c = urllib2.urlopen('http://localhost:6800/jsonrpc', jsonreq)
  2300. >>> pprint(json.loads(c.read()))
  2301. {u'id': u'qwer',
  2302. u'jsonrpc': u'2.0',
  2303. u'result': {u'allow-overwrite': u'false',
  2304. u'allow-piece-length-change': u'false',
  2305. u'always-resume': u'true',
  2306. u'async-dns': u'true',
  2307. ...
  2308. **XML-RPC Example**
  2309. ::
  2310. >>> import xmlrpclib
  2311. >>> from pprint import pprint
  2312. >>> s = xmlrpclib.ServerProxy('http://localhost:6800/rpc')
  2313. >>> r = s.aria2.getOption('2089b05ecca3d829')
  2314. >>> pprint(r)
  2315. {'allow-overwrite': 'false',
  2316. 'allow-piece-length-change': 'false',
  2317. 'always-resume': 'true',
  2318. 'async-dns': 'true',
  2319. ....
  2320. .. function:: aria2.changeOption([secret], gid, options)
  2321. This method changes options of the download denoted by *gid* (string)
  2322. dynamically. *options* is a struct.
  2323. The following options are available for active downloads:
  2324. * :option:`bt-max-peers <--bt-max-peers>`
  2325. * :option:`bt-request-peer-speed-limit <--bt-request-peer-speed-limit>`
  2326. * :option:`bt-remove-unselected-file <--bt-remove-unselected-file>`
  2327. * :option:`force-save <--force-save>`
  2328. * :option:`max-download-limit <--max-download-limit>`
  2329. * :option:`max-upload-limit <-u>`
  2330. For waiting or paused downloads, in addition to the above options,
  2331. options listed in `Input File`_ subsection are available,
  2332. **except** for following options:
  2333. :option:`dry-run <--dry-run>`,
  2334. :option:`metalink-base-uri <--metalink-base-uri>`,
  2335. :option:`parameterized-uri <-P>`,
  2336. :option:`pause <--pause>`,
  2337. :option:`piece-length <--piece-length>` and
  2338. :option:`rpc-save-upload-metadata <--rpc-save-upload-metadata>` option.
  2339. This method returns ``OK`` for success.
  2340. The following examples set the :option:`max-download-limit
  2341. <--max-download-limit>` option to ``20K`` for the download
  2342. GID#2089b05ecca3d829.
  2343. **JSON-RPC Example**
  2344. ::
  2345. >>> import urllib2, json
  2346. >>> from pprint import pprint
  2347. >>> jsonreq = json.dumps({'jsonrpc':'2.0', 'id':'qwer',
  2348. ... 'method':'aria2.changeOption',
  2349. ... 'params':['2089b05ecca3d829',
  2350. ... {'max-download-limit':'10K'}]})
  2351. >>> c = urllib2.urlopen('http://localhost:6800/jsonrpc', jsonreq)
  2352. >>> pprint(json.loads(c.read()))
  2353. {u'id': u'qwer', u'jsonrpc': u'2.0', u'result': u'OK'}
  2354. **XML-RPC Example**
  2355. ::
  2356. >>> import xmlrpclib
  2357. >>> s = xmlrpclib.ServerProxy('http://localhost:6800/rpc')
  2358. >>> s.aria2.changeOption('2089b05ecca3d829', {'max-download-limit':'20K'})
  2359. 'OK'
  2360. .. function:: aria2.getGlobalOption([secret])
  2361. This method returns the global options. The response is a struct. Its keys
  2362. are the names of options. Values are strings.
  2363. Note that this method does not return options which have no default
  2364. value and have not been set on the command-line, in configuration
  2365. files or RPC methods. Because global options are used as a template
  2366. for the options of newly added downloads, the response contains keys
  2367. returned by the :func:`aria2.getOption` method.
  2368. .. function:: aria2.changeGlobalOption([secret], options)
  2369. This method changes global options dynamically. *options* is a struct.
  2370. The following options are available:
  2371. * :option:`bt-max-open-files <--bt-max-open-files>`
  2372. * :option:`download-result <--download-result>`
  2373. * :option:`log <-l>`
  2374. * :option:`log-level <--log-level>`
  2375. * :option:`max-concurrent-downloads <-j>`
  2376. * :option:`max-download-result <--max-download-result>`
  2377. * :option:`max-overall-download-limit <--max-overall-download-limit>`
  2378. * :option:`max-overall-upload-limit <--max-overall-upload-limit>`
  2379. * :option:`save-cookies <--save-cookies>`
  2380. * :option:`save-session <--save-session>`
  2381. * :option:`server-stat-of <--server-stat-of>`
  2382. In addition, options listed in the `Input File`_ subsection
  2383. are available, **except** for following options:
  2384. :option:`checksum <--checksum>`,
  2385. :option:`index-out <-O>`,
  2386. :option:`out <-o>`,
  2387. :option:`pause <--pause>` and
  2388. :option:`select-file <--select-file>`.
  2389. With the :option:`log <-l>` option, you can dynamically start logging or
  2390. change log file. To stop logging, specify an empty string("") as the parameter
  2391. value. Note that log file is always opened in append mode. This method
  2392. returns ``OK`` for success.
  2393. .. function:: aria2.getGlobalStat([secret])
  2394. This method returns global statistics such as the overall download and
  2395. upload speeds. The response is a struct and contains the following
  2396. keys. Values are strings.
  2397. ``downloadSpeed``
  2398. Overall download speed (byte/sec).
  2399. ``uploadSpeed``
  2400. Overall upload speed(byte/sec).
  2401. ``numActive``
  2402. The number of active downloads.
  2403. ``numWaiting``
  2404. The number of waiting downloads.
  2405. ``numStopped``
  2406. The number of stopped downloads in the current session. This value
  2407. is capped by the :option:`--max-download-result` option.
  2408. ``numStoppedTotal``
  2409. The number of stopped downloads in the current session and *not*
  2410. capped by the :option:`--max-download-result` option.
  2411. **JSON-RPC Example**
  2412. ::
  2413. >>> import urllib2, json
  2414. >>> from pprint import pprint
  2415. >>> jsonreq = json.dumps({'jsonrpc':'2.0', 'id':'qwer',
  2416. ... 'method':'aria2.getGlobalStat'})
  2417. >>> c = urllib2.urlopen('http://localhost:6800/jsonrpc', jsonreq)
  2418. >>> pprint(json.loads(c.read()))
  2419. {u'id': u'qwer',
  2420. u'jsonrpc': u'2.0',
  2421. u'result': {u'downloadSpeed': u'21846',
  2422. u'numActive': u'2',
  2423. u'numStopped': u'0',
  2424. u'numWaiting': u'0',
  2425. u'uploadSpeed': u'0'}}
  2426. **XML-RPC Example**
  2427. ::
  2428. >>> import xmlrpclib
  2429. >>> from pprint import pprint
  2430. >>> s = xmlrpclib.ServerProxy('http://localhost:6800/rpc')
  2431. >>> r = s.aria2.getGlobalStat()
  2432. >>> pprint(r)
  2433. {'downloadSpeed': '23136',
  2434. 'numActive': '2',
  2435. 'numStopped': '0',
  2436. 'numWaiting': '0',
  2437. 'uploadSpeed': '0'}
  2438. .. function:: aria2.purgeDownloadResult([secret])
  2439. This method purges completed/error/removed downloads to free memory.
  2440. This method returns ``OK``.
  2441. .. function:: aria2.removeDownloadResult([secret], gid)
  2442. This method removes a completed/error/removed download denoted by *gid*
  2443. from memory. This method returns ``OK`` for success.
  2444. The following examples remove the download result of the download
  2445. GID#2089b05ecca3d829.
  2446. **JSON-RPC Example**
  2447. ::
  2448. >>> import urllib2, json
  2449. >>> from pprint import pprint
  2450. >>> jsonreq = json.dumps({'jsonrpc':'2.0', 'id':'qwer',
  2451. ... 'method':'aria2.removeDownloadResult',
  2452. ... 'params':['2089b05ecca3d829']})
  2453. >>> c = urllib2.urlopen('http://localhost:6800/jsonrpc', jsonreq)
  2454. >>> pprint(json.loads(c.read()))
  2455. {u'id': u'qwer', u'jsonrpc': u'2.0', u'result': u'OK'}
  2456. **XML-RPC Example**
  2457. ::
  2458. >>> import xmlrpclib
  2459. >>> s = xmlrpclib.ServerProxy('http://localhost:6800/rpc')
  2460. >>> s.aria2.removeDownloadResult('2089b05ecca3d829')
  2461. 'OK'
  2462. .. function:: aria2.getVersion([secret])
  2463. This method returns the version of aria2 and the list of enabled
  2464. features. The response is a struct and contains following keys.
  2465. ``version``
  2466. Version number of aria2 as a string.
  2467. ``enabledFeatures``
  2468. List of enabled features. Each feature is given as a string.
  2469. **JSON-RPC Example**
  2470. ::
  2471. >>> import urllib2, json
  2472. >>> from pprint import pprint
  2473. >>> jsonreq = json.dumps({'jsonrpc':'2.0', 'id':'qwer',
  2474. ... 'method':'aria2.getVersion'})
  2475. >>> c = urllib2.urlopen('http://localhost:6800/jsonrpc', jsonreq)
  2476. >>> pprint(json.loads(c.read()))
  2477. {u'id': u'qwer',
  2478. u'jsonrpc': u'2.0',
  2479. u'result': {u'enabledFeatures': [u'Async DNS',
  2480. u'BitTorrent',
  2481. u'Firefox3 Cookie',
  2482. u'GZip',
  2483. u'HTTPS',
  2484. u'Message Digest',
  2485. u'Metalink',
  2486. u'XML-RPC'],
  2487. u'version': u'1.11.0'}}
  2488. **XML-RPC Example**
  2489. ::
  2490. >>> import xmlrpclib
  2491. >>> from pprint import pprint
  2492. >>> s = xmlrpclib.ServerProxy('http://localhost:6800/rpc')
  2493. >>> r = s.aria2.getVersion()
  2494. >>> pprint(r)
  2495. {'enabledFeatures': ['Async DNS',
  2496. 'BitTorrent',
  2497. 'Firefox3 Cookie',
  2498. 'GZip',
  2499. 'HTTPS',
  2500. 'Message Digest',
  2501. 'Metalink',
  2502. 'XML-RPC'],
  2503. 'version': '1.11.0'}
  2504. .. function:: aria2.getSessionInfo([secret])
  2505. This method returns session information.
  2506. The response is a struct and contains following key.
  2507. ``sessionId``
  2508. Session ID, which is generated each time when aria2 is invoked.
  2509. **JSON-RPC Example**
  2510. ::
  2511. >>> import urllib2, json
  2512. >>> from pprint import pprint
  2513. >>> jsonreq = json.dumps({'jsonrpc':'2.0', 'id':'qwer',
  2514. ... 'method':'aria2.getSessionInfo'})
  2515. >>> c = urllib2.urlopen('http://localhost:6800/jsonrpc', jsonreq)
  2516. >>> pprint(json.loads(c.read()))
  2517. {u'id': u'qwer',
  2518. u'jsonrpc': u'2.0',
  2519. u'result': {u'sessionId': u'cd6a3bc6a1de28eb5bfa181e5f6b916d44af31a9'}}
  2520. **XML-RPC Example**
  2521. ::
  2522. >>> import xmlrpclib
  2523. >>> s = xmlrpclib.ServerProxy('http://localhost:6800/rpc')
  2524. >>> s.aria2.getSessionInfo()
  2525. {'sessionId': 'cd6a3bc6a1de28eb5bfa181e5f6b916d44af31a9'}
  2526. .. function:: aria2.shutdown([secret])
  2527. This method shuts down aria2. This method returns ``OK``.
  2528. .. function:: aria2.forceShutdown([secret])
  2529. This method shuts down :func:`aria2`. This method behaves like
  2530. :func:'aria2.shutdown` without performing any actions which take time,
  2531. such as contacting BitTorrent trackers to unregister downloads first.
  2532. This method returns ``OK``.
  2533. .. function:: aria2.saveSession([secret])
  2534. This method saves the current session to a file specified by the
  2535. :option:`--save-session` option. This method returns ``OK`` if it
  2536. succeeds.
  2537. .. function:: system.multicall(methods)
  2538. This methods encapsulates multiple method calls in a single request.
  2539. *methods* is an array of structs. The structs contain two keys:
  2540. ``methodName`` and ``params``. ``methodName`` is the
  2541. method name to call and ``params`` is array containing parameters to the
  2542. method call. This method returns an array of responses. The elements
  2543. will be either a one-item array containing the return value of the
  2544. method call or a struct of fault element if an encapsulated method call
  2545. fails.
  2546. In the following examples, we add 2 downloads. The first one is
  2547. ``http://example.org/file`` and the second one is ``file.torrent``.
  2548. **JSON-RPC Example**
  2549. ::
  2550. >>> import urllib2, json, base64
  2551. >>> from pprint import pprint
  2552. >>> jsonreq = json.dumps({'jsonrpc':'2.0', 'id':'qwer',
  2553. ... 'method':'system.multicall',
  2554. ... 'params':[[{'methodName':'aria2.addUri',
  2555. ... 'params':[['http://example.org']]},
  2556. ... {'methodName':'aria2.addTorrent',
  2557. ... 'params':[base64.b64encode(open('file.torrent').read())]}]]})
  2558. >>> c = urllib2.urlopen('http://localhost:6800/jsonrpc', jsonreq)
  2559. >>> pprint(json.loads(c.read()))
  2560. {u'id': u'qwer', u'jsonrpc': u'2.0', u'result': [[u'2089b05ecca3d829'], [u'd2703803b52216d1']]}
  2561. JSON-RPC additionally supports Batch requests as described in the
  2562. JSON-RPC 2.0 Specification::
  2563. >>> jsonreq = json.dumps([{'jsonrpc':'2.0', 'id':'qwer',
  2564. ... 'method':'aria2.addUri',
  2565. ... 'params':[['http://example.org']]},
  2566. ... {'jsonrpc':'2.0', 'id':'asdf',
  2567. ... 'method':'aria2.addTorrent',
  2568. ... 'params':[base64.b64encode(open('file.torrent').read())]}])
  2569. >>> c = urllib2.urlopen('http://localhost:6800/jsonrpc', jsonreq)
  2570. >>> pprint(json.loads(c.read()))
  2571. [{u'id': u'qwer', u'jsonrpc': u'2.0', u'result': u'2089b05ecca3d829'},
  2572. {u'id': u'asdf', u'jsonrpc': u'2.0', u'result': u'd2703803b52216d1'}]
  2573. **XML-RPC Example**
  2574. ::
  2575. >>> import xmlrpclib
  2576. >>> s = xmlrpclib.ServerProxy('http://localhost:6800/rpc')
  2577. >>> mc = xmlrpclib.MultiCall(s)
  2578. >>> mc.aria2.addUri(['http://example.org/file'])
  2579. >>> mc.aria2.addTorrent(xmlrpclib.Binary(open('file.torrent', mode='rb').read()))
  2580. >>> r = mc()
  2581. >>> tuple(r)
  2582. ('2089b05ecca3d829', 'd2703803b52216d1')
  2583. Error Handling
  2584. ~~~~~~~~~~~~~~
  2585. Over JSON-RPC, aria2 returns a JSON object which contains an error code in
  2586. ``code`` and the error message in ``message``.
  2587. Over XML-RPC, aria2 returns ``faultCode=1`` and the error message in
  2588. ``faultString``.
  2589. .. _rpc_options:
  2590. Options
  2591. ~~~~~~~
  2592. The same options as for :option:`--input-file <-i>` are available. See the
  2593. `Input File`_ subsection for a complete list of options.
  2594. In the option struct, the name element is the option name (without the preceding
  2595. ``--``) and the value element is the argument as a string.
  2596. JSON-RPC Example
  2597. ^^^^^^^^^^^^^^^^
  2598. ::
  2599. {'split':'1', 'http-proxy':'http://proxy/'}
  2600. XML-RPC Example
  2601. ^^^^^^^^^^^^^^^
  2602. .. code-block:: xml
  2603. <struct>
  2604. <member>
  2605. <name>split</name>
  2606. <value><string>1</string></value>
  2607. </member>
  2608. <member>
  2609. <name>http-proxy</name>
  2610. <value><string>http://proxy/</string></value>
  2611. </member>
  2612. </struct>
  2613. The :option:`header <--header>` and :option:`index-out <-O>`
  2614. options are allowed multiple times on the command-line. Since the name should be
  2615. unique in a struct (many XML-RPC library implementations use a hash or dict for
  2616. struct), a single string is not enough. To overcome this limitation, you may use
  2617. an array as the value as well as a string.
  2618. JSON-RPC Example
  2619. ^^^^^^^^^^^^^^^^
  2620. ::
  2621. {'header':['Accept-Language: ja', 'Accept-Charset: utf-8']}
  2622. XML-RPC Example
  2623. ^^^^^^^^^^^^^^^
  2624. .. code-block:: xml
  2625. <struct>
  2626. <member>
  2627. <name>header</name>
  2628. <value>
  2629. <array>
  2630. <data>
  2631. <value><string>Accept-Language: ja</string></value>
  2632. <value><string>Accept-Charset: utf-8</string></value>
  2633. </data>
  2634. </array>
  2635. </value>
  2636. </member>
  2637. </struct>
  2638. The following example adds a download with two options: ``dir`` and ``header``.
  2639. The ``header`` option requires two values, so it uses a list::
  2640. >>> import xmlrpclib
  2641. >>> s = xmlrpclib.ServerProxy('http://localhost:6800/rpc')
  2642. >>> opts = dict(dir='/tmp',
  2643. ... header=['Accept-Language: ja',
  2644. ... 'Accept-Charset: utf-8'])
  2645. >>> s.aria2.addUri(['http://example.org/file'], opts)
  2646. '1'
  2647. JSON-RPC using HTTP GET
  2648. ~~~~~~~~~~~~~~~~~~~~~~~
  2649. The JSON-RPC interface also supports requests via HTTP GET.
  2650. The encoding scheme in GET parameters is based on JSON-RPC over HTTP Specification [2008-1-15(RC1)].
  2651. The encoding of GET parameters are follows::
  2652. /jsonrpc?method=METHOD_NAME&id=ID&params=BASE64_ENCODED_PARAMS
  2653. The ``method`` and ``id`` are always treated as JSON string and their
  2654. encoding must be UTF-8.
  2655. For example, The encoded string of
  2656. ``aria2.tellStatus('2089b05ecca3d829')`` with ``id='foo'`` looks like
  2657. this::
  2658. /jsonrpc?method=aria2.tellStatus&id=foo&params=WyIyMDg5YjA1ZWNjYTNkODI5Il0%3D
  2659. The ``params`` parameter is Base64-encoded JSON array which usually
  2660. appears in ``params`` attribute in JSON-RPC request object. In the
  2661. above example, the params is ``["2089b05ecca3d829"]``, therefore::
  2662. ["2089b05ecca3d829"] --(Base64)--> WyIyMDg5YjA1ZWNjYTNkODI5Il0=
  2663. --(Percent Encode)--> WyIyMDg5YjA1ZWNjYTNkODI5Il0%3D
  2664. The JSON-RPC interface also supports JSONP. You can specify the callback
  2665. function in the ``jsoncallback`` parameter::
  2666. /jsonrpc?method=aria2.tellStatus&id=foo&params=WyIyMDg5YjA1ZWNjYTNkODI5Il0%3D&jsoncallback=cb
  2667. For Batch requests, the ``method`` and ``id`` parameters must not be specified.
  2668. The whole request must be specified in the ``params`` parameter. For example,
  2669. a Batch request::
  2670. [{'jsonrpc':'2.0', 'id':'qwer', 'method':'aria2.getVersion'},
  2671. {'jsonrpc':'2.0', 'id':'asdf', 'method':'aria2.tellActive'}]
  2672. must be encoded like this::
  2673. /jsonrpc?params=W3sianNvbnJwYyI6ICIyLjAiLCAiaWQiOiAicXdlciIsICJtZXRob2QiOiAiYXJpYTIuZ2V0VmVyc2lvbiJ9LCB7Impzb25ycGMiOiAiMi4wIiwgImlkIjogImFzZGYiLCAibWV0aG9kIjogImFyaWEyLnRlbGxBY3RpdmUifV0%3D
  2674. JSON-RPC over WebSocket
  2675. ~~~~~~~~~~~~~~~~~~~~~~~
  2676. JSON-RPC over WebSocket uses same method signatures and response
  2677. format as JSON-RPC over HTTP. The supported WebSocket version is 13
  2678. which is detailed in :rfc:`6455`.
  2679. To send a RPC request to the RPC server, send a serialized JSON string
  2680. in a Text frame. The response from the RPC server is delivered also in
  2681. a Text frame.
  2682. Notifications
  2683. ^^^^^^^^^^^^^
  2684. The RPC server might send notifications to the client. Notifications is
  2685. unidirectional, therefore the client which receives the notification must not
  2686. respond to it. The method signature of a notification is much like a normal
  2687. method request but lacks the id key. The value of the params key is the data
  2688. which this notification carries. The format of the value varies depending on the
  2689. notification method. Following notification methods are defined.
  2690. .. function:: aria2.onDownloadStart(event)
  2691. This notification will be sent when a download is started.
  2692. The *event* is of type struct and it contains following keys.
  2693. The value type is string.
  2694. ``gid``
  2695. GID of the download.
  2696. .. function:: aria2.onDownloadPause(event)
  2697. This notification will be sent when a download is paused. The *event*
  2698. is the same struct as the *event* argument of
  2699. :func:`aria2.onDownloadStart` method.
  2700. .. function:: aria2.onDownloadStop(event)
  2701. This notification will be sent when a download is stopped by the user.
  2702. The *event* is the same struct as the *event* argument of
  2703. :func:`aria2.onDownloadStart` method.
  2704. .. function:: aria2.onDownloadComplete(event)
  2705. This notification will be sent when a download is complete. For
  2706. BitTorrent downloads, this notification is sent when the download is
  2707. complete and seeding is over. The *event* is the same struct of the
  2708. *event* argument of
  2709. :func:`aria2.onDownloadStart` method.
  2710. .. function:: aria2.onDownloadError(event)
  2711. This notification will be sent when a download is stopped due to an error.
  2712. The *event* is the same struct as the *event* argument of
  2713. :func:`aria2.onDownloadStart` method.
  2714. .. function:: aria2.onBtDownloadComplete(event)
  2715. This notification will be sent when a torrent download is complete but seeding
  2716. is still going on. The *event* is the same struct as the *event* argument of
  2717. :func:`aria2.onDownloadStart` method.
  2718. Sample XML-RPC Client Code
  2719. ~~~~~~~~~~~~~~~~~~~~~~~~~~
  2720. The following Ruby script adds ``http://localhost/aria2.tar.bz2`` to
  2721. aria2c (running on localhost) with option :option:`--dir=/downloads <-d>` and
  2722. prints the RPC response:
  2723. .. code-block:: ruby
  2724. #!/usr/bin/env ruby
  2725. require 'xmlrpc/client'
  2726. require 'pp'
  2727. client=XMLRPC::Client.new2("http://localhost:6800/rpc")
  2728. options={ "dir" => "/downloads" }
  2729. result=client.call("aria2.addUri", [ "http://localhost/aria2.tar.bz2" ], options)
  2730. pp result
  2731. If you are a Python lover, you can use xmlrpclib (Python3 uses
  2732. xmlrpc.client instead) to interact with aria2::
  2733. import xmlrpclib
  2734. from pprint import pprint
  2735. s = xmlrpclib.ServerProxy("http://localhost:6800/rpc")
  2736. r = s.aria2.addUri(["http://localhost/aria2.tar.bz2"], {"dir":"/downloads"})
  2737. pprint(r)
  2738. MISC
  2739. ----
  2740. Console Readout
  2741. ~~~~~~~~~~~~~~~
  2742. While downloading files, aria2 prints a readout to the console to show the
  2743. progress of the downloads. The console readout looks like this::
  2744. [#2089b0 400.0KiB/33.2MiB(1%) CN:1 DL:115.7KiB ETA:4m51s]
  2745. This section describes what these numbers and strings mean.
  2746. ``#NNNNNN``
  2747. The first 6 characters of the GID as a hex string. The GID is an unique ID for
  2748. each download, internal to aria2. The GID is particularly useful when
  2749. interacting with aria2 using the RPC interface.
  2750. ``X/Y(Z%)``
  2751. Completed length, the total file length and its progress. If
  2752. :option:`--select-file` is used, this is the sum of selected files.
  2753. ``SEED``
  2754. Share ratio when the aria2 is seeding a finished torrent.
  2755. ``CN``
  2756. The number of connections aria2 has established.
  2757. ``SD``
  2758. The number of seeders aria2 is connected to.
  2759. ``DL``
  2760. Download speed (bytes per second).
  2761. ``UL``
  2762. Upload speed (bytes per second) and the number of uploaded bytes.
  2763. ``ETA``
  2764. Expected time to finish the download.
  2765. When more than one download is in progress, some of the information
  2766. described above will be omitted in order to show information for several
  2767. downloads. And the overall download and upload speeds are shown at
  2768. the beginning of the line.
  2769. When aria2 is allocating file space or validating checksums, it
  2770. additionally prints the progress of these operations:
  2771. FileAlloc
  2772. GID, already allocated length and total length in bytes.
  2773. Checksum
  2774. GID, already validated length and total length in bytes.
  2775. EXAMPLE
  2776. -------
  2777. HTTP/FTP Segmented Downloads
  2778. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2779. Download a file
  2780. ^^^^^^^^^^^^^^^
  2781. .. code-block:: console
  2782. $ aria2c "http://host/file.zip"
  2783. .. note::
  2784. To stop a download, press :kbd:`Ctrl-C`. You can resume the transfer by
  2785. running aria2c with the same argument in the same directory. You can change
  2786. URIs as long as they are pointing to the same file.
  2787. Download a file from two different HTTP servers
  2788. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2789. .. code-block:: console
  2790. $ aria2c "http://host/file.zip" "http://mirror/file.zip"
  2791. Download a file from one host using multiple connections
  2792. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2793. .. code-block:: console
  2794. $ aria2c -x2 -k1M "http://host/file.zip"
  2795. .. note::
  2796. The -x option specified the number of allowed connections, while the -k option
  2797. specified the size of chunks.
  2798. Download a file from HTTP and FTP servers at the same time
  2799. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2800. .. code-block:: console
  2801. $ aria2c "http://host1/file.zip" "ftp://host2/file.zip"
  2802. Download files listed in a text file concurrently
  2803. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2804. .. code-block:: console
  2805. $ aria2c -ifiles.txt -j2
  2806. .. note::
  2807. -j option specifies the number of parallel downloads.
  2808. Using a proxy
  2809. ^^^^^^^^^^^^^
  2810. For HTTP:
  2811. .. code-block:: console
  2812. $ aria2c --http-proxy="http://proxy:8080" "http://host/file"
  2813. .. code-block:: console
  2814. $ aria2c --http-proxy="http://proxy:8080" --no-proxy="localhost,127.0.0.1,192.168.0.0/16" "http://host/file"
  2815. For FTP:
  2816. .. code-block:: console
  2817. $ aria2c --ftp-proxy="http://proxy:8080" "ftp://host/file"
  2818. .. note::
  2819. See :option:`--http-proxy`, :option:`--https-proxy`, :option:`--ftp-proxy`,
  2820. :option:`--all-proxy` and :option:`--no-proxy` for details. You can specify
  2821. proxy in the environment variables. See `ENVIRONMENT`_ section.
  2822. Using a Proxy with authorization
  2823. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2824. .. code-block:: console
  2825. $ aria2c --http-proxy="http://username:password@proxy:8080" "http://host/file"
  2826. .. code-block:: console
  2827. $ aria2c --http-proxy="http://proxy:8080" --http-proxy-user="username" --http-proxy-passwd="password" "http://host/file"
  2828. Metalink Download
  2829. ~~~~~~~~~~~~~~~~~
  2830. Download files with remote Metalink
  2831. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2832. .. code-block:: console
  2833. $ aria2c --follow-metalink=mem "http://host/file.metalink"
  2834. Download using a local metalink file
  2835. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2836. .. code-block:: console
  2837. $ aria2c -p --lowest-speed-limit=4000 file.metalink
  2838. .. note::
  2839. To stop a download, press :kbd:`Ctrl-C`.
  2840. You can resume the transfer by running aria2c with the same argument in the same
  2841. directory.
  2842. Download several local metalink files
  2843. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2844. .. code-block:: console
  2845. $ aria2c -j2 file1.metalink file2.metalink
  2846. Download only selected files
  2847. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2848. .. code-block:: console
  2849. $ aria2c --select-file=1-4,8 file.metalink
  2850. .. note::
  2851. The index is printed to the console using -S option.
  2852. Download a file using a local metalink file with user preference
  2853. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2854. .. code-block:: console
  2855. $ aria2c --metalink-location=jp,us --metalink-version=1.1 --metalink-language=en-US file.metalink
  2856. BitTorrent Download
  2857. ~~~~~~~~~~~~~~~~~~~
  2858. Download files using a remote BitTorrent file
  2859. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2860. .. code-block:: console
  2861. $ aria2c --follow-torrent=mem "http://host/file.torrent"
  2862. Download using a local torrent file
  2863. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2864. .. code-block:: console
  2865. $ aria2c --max-upload-limit=40K file.torrent
  2866. .. note::
  2867. --max-upload-limit specifies the max of upload rate.
  2868. .. note::
  2869. To stop a download, press :kbd:`Ctrl-C`. You can resume the transfer later by
  2870. running aria2c with the same argument in the same directory.
  2871. Download using BitTorrent Magnet URI
  2872. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2873. .. code-block:: console
  2874. $ aria2c "magnet:?xt=urn:btih:248D0A1CD08284299DE78D5C1ED359BB46717D8C&dn=aria2"
  2875. .. note::
  2876. Don't forget to quote BitTorrent Magnet URIs which include ``&``
  2877. characters with single(``'``) or double(``"``) quotes when specifying URIs on
  2878. the command-line.
  2879. Download 2 torrents
  2880. ^^^^^^^^^^^^^^^^^^^
  2881. .. code-block:: console
  2882. $ aria2c -j2 file1.torrent file2.torrent
  2883. Download a file via torrent and HTTP/FTP server in parallel
  2884. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2885. .. code-block:: console
  2886. $ aria2c -Ttest.torrent "http://host1/file" "ftp://host2/file"
  2887. .. note::
  2888. Downloading a multi-file torrent while also using HTTP/FTP is not supported.
  2889. Only download specific files (usually called "selected download")
  2890. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2891. .. code-block:: console
  2892. $ aria2c --select-file=1-4,8 file.torrent
  2893. .. note::
  2894. The index is printed to the console using -S option.
  2895. Download a .torrent file, but do not download the torrent
  2896. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2897. .. code-block:: console
  2898. $ aria2c --follow-torrent=false "http://host/file.torrent"
  2899. Specify the output file name
  2900. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2901. To specify the output file name for BitTorrent downloads, you need to know
  2902. the index of file in the torrent (see :option:`--show-files <-S>`). For
  2903. example, the output looks like this::
  2904. idx|path/length
  2905. ===+======================
  2906. 1|dist/base-2.6.18.iso
  2907. |99.9MiB
  2908. ---+----------------------
  2909. 2|dist/driver-2.6.18.iso
  2910. |169.0MiB
  2911. ---+----------------------
  2912. To save 'dist/base-2.6.18.iso' in '/tmp/mydir/base.iso' and
  2913. 'dist/driver-2.6.18.iso' in '/tmp/dir/driver.iso', use the following
  2914. command:
  2915. .. code-block:: console
  2916. $ aria2c --dir=/tmp --index-out=1=mydir/base.iso --index-out=2=dir/driver.iso file.torrent
  2917. Change the listening ports for incoming peer connections
  2918. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2919. .. code-block:: console
  2920. $ aria2c --listen-port=7000-7001,8000 file.torrent
  2921. .. note::
  2922. Since aria2 doesn't configure firewalls or routers for port forwarding, it's
  2923. up to you to do so manually.
  2924. Specify conditions to stop seeding after torrent downloads finish
  2925. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2926. .. code-block:: console
  2927. $ aria2c --seed-time=120 --seed-ratio=1.0 file.torrent
  2928. .. note::
  2929. In the above example, the program stops seeding after 120 minutes since
  2930. download completed or seed ratio reaches 1.0.
  2931. Throttle upload speed
  2932. ^^^^^^^^^^^^^^^^^^^^^
  2933. .. code-block:: console
  2934. $ aria2c --max-upload-limit=100K file.torrent
  2935. Enable IPv4 DHT
  2936. ^^^^^^^^^^^^^^^
  2937. .. code-block:: console
  2938. $ aria2c --enable-dht --dht-listen-port=6881 file.torrent
  2939. .. note::
  2940. DHT uses UDP. Since aria2 doesn't configure firewalls or routers for port
  2941. forwarding, it's up to you to do it manually.
  2942. Enable IPv6 DHT
  2943. ^^^^^^^^^^^^^^^
  2944. .. code-block:: console
  2945. $ aria2c --enable-dht6 --dht-listen-port=6881 --dht-listen-addr6=YOUR_GLOBAL_UNICAST_IPV6_ADDR
  2946. .. note::
  2947. aria2 uses the same ports as IPv4 for IPv6.
  2948. Add and remove tracker URIs
  2949. ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2950. Ignore all tracker announce URIs defined in file.torrent and use
  2951. ``http://tracker1/announce`` and ``http://tracker2/announce`` instead:
  2952. .. code-block:: console
  2953. $ aria2c --bt-exclude-tracker="*" --bt-tracker="http://tracker1/announce,http://tracker2/announce" file.torrent
  2954. More advanced HTTP features
  2955. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2956. Load cookies
  2957. ^^^^^^^^^^^^
  2958. .. code-block:: console
  2959. $ aria2c --load-cookies=cookies.txt "http://host/file.zip"
  2960. .. note::
  2961. You can use Firefox/Mozilla/Chromium's cookie files without modification.
  2962. Resume download started by web browsers or other programs
  2963. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2964. .. code-block:: console
  2965. $ aria2c -c -s2 "http://host/partiallydownloadedfile.zip"
  2966. .. note::
  2967. This will only work when the initial download was not multi-segmented.
  2968. Client certificate authorization for SSL/TLS
  2969. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2970. Specify a PKCS12 file as follows:
  2971. .. code-block:: console
  2972. $ aria2c --certificate=/path/to/mycert.p12
  2973. .. note::
  2974. The file specified in :option:`--certificate` must be contain one PKCS12 encoded
  2975. certificate and key. The password must be blank.
  2976. Alternatively, if PEM files are supported, use a command like the following:
  2977. .. code-block:: console
  2978. $ aria2c --certificate=/path/to/mycert.pem --private-key=/path/to/mykey.pem https://host/file
  2979. .. note::
  2980. The file specified in :option:`--private-key` must be decrypted. The behavior when
  2981. encrypted one is given is undefined.
  2982. Verify SSL/TLS servers using given CA certificates
  2983. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2984. .. code-block:: console
  2985. $ aria2c --ca-certificate=/path/to/ca-certificates.crt --check-certificate https://host/file
  2986. .. note::
  2987. This option is only available when aria2 was compiled against GnuTLS or
  2988. OpenSSL.
  2989. WinTLS and AppleTLS will always use the system certificate store. Instead of
  2990. ```--ca-certificate`` install the certificate in that store.
  2991. RPC
  2992. ~~~
  2993. Encrypt RPC traffic with SSL/TLS
  2994. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  2995. Specify a server PKC12 file:
  2996. .. code-block:: console
  2997. $ aria2c --enable-rpc --rpc-certificate=/path/to/server.p12 --rpc-secure
  2998. .. note::
  2999. The file specified in :option:`--rpc-certificate` must be contain one PKCS12
  3000. encoded certificate and key. The password must be blank.
  3001. Alternatively, when PEM files are supported (GnuTLS and OpenSSL), specify the
  3002. server certificate file and private key file as follows:
  3003. .. code-block:: console
  3004. $ aria2c --enable-rpc --rpc-certificate=/path/to/server.crt --rpc-private-key=/path/to/server.key --rpc-secure
  3005. And more advanced features
  3006. ~~~~~~~~~~~~~~~~~~~~~~~~~~
  3007. Throttle the download speed
  3008. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3009. Per-download:
  3010. .. code-block:: console
  3011. $ aria2c --max-download-limit=100K file.metalink
  3012. Overall:
  3013. .. code-block:: console
  3014. $ aria2c --max-overall-download-limit=100K file.metalink
  3015. Repair a damaged download
  3016. ^^^^^^^^^^^^^^^^^^^^^^^^^
  3017. .. code-block:: console
  3018. $ aria2c -V file.metalink
  3019. .. note::
  3020. Repairing damaged downloads can be done efficiently when used with
  3021. BitTorrent or Metalink with chunk checksums.
  3022. Drop connections if download speed is lower than a specified limit
  3023. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3024. .. code-block:: console
  3025. $ aria2c --lowest-speed-limit=10K file.metalink
  3026. Parameterized URI support
  3027. ^^^^^^^^^^^^^^^^^^^^^^^^^
  3028. You can specify set of parts:
  3029. .. code-block:: console
  3030. $ aria2c -P "http://{host1,host2,host3}/file.iso"
  3031. You can specify numeric sequence:
  3032. .. code-block:: console
  3033. $ aria2c -Z -P "http://host/image[000-100].png"
  3034. .. note::
  3035. The -Z option is required if the URIs don't point to the same file, such as in
  3036. the above example.
  3037. You can specify step counter:
  3038. .. code-block:: console
  3039. $ aria2c -Z -P "http://host/image[A-Z:2].png"
  3040. Verifying checksums
  3041. ^^^^^^^^^^^^^^^^^^^
  3042. .. code-block:: console
  3043. $ aria2c --checksum=sha-1=0192ba11326fe2298c8cb4de616f4d4140213837 http://example.org/file
  3044. Parallel downloads of an arbitrary number of URIs, metalink, torrent
  3045. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  3046. .. code-block:: console
  3047. $ aria2c -j3 -Z "http://host/file1" file2.torrent file3.metalink
  3048. BitTorrent Encryption
  3049. ^^^^^^^^^^^^^^^^^^^^^
  3050. Encrypt the whole payload using ARC4 (obfuscation):
  3051. .. code-block:: console
  3052. $ aria2c --bt-min-crypto-level=arc4 --bt-require-crypto=true file.torrent
  3053. SEE ALSO
  3054. --------
  3055. Project Web Site: http://aria2.sourceforge.net/
  3056. Metalink Homepage: http://www.metalinker.org/
  3057. The Metalink Download Description Format: :rfc:`5854`
  3058. COPYRIGHT
  3059. ---------
  3060. Copyright (C) 2006, 2015 Tatsuhiro Tsujikawa
  3061. This program is free software; you can redistribute it and/or modify
  3062. it under the terms of the GNU General Public License as published by
  3063. the Free Software Foundation; either version 2 of the License, or
  3064. (at your option) any later version.
  3065. This program is distributed in the hope that it will be useful,
  3066. but WITHOUT ANY WARRANTY; without even the implied warranty of
  3067. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  3068. GNU General Public License for more details.
  3069. You should have received a copy of the GNU General Public License
  3070. along with this program; if not, write to the Free Software
  3071. Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  3072. In addition, as a special exception, the copyright holders give
  3073. permission to link the code of portions of this program with the
  3074. OpenSSL library under certain conditions as described in each
  3075. individual source file, and distribute linked combinations
  3076. including the two.
  3077. You must obey the GNU General Public License in all respects
  3078. for all of the code used other than OpenSSL. If you modify
  3079. file(s) with this exception, you may extend this exception to your
  3080. version of the file(s), but you are not obligated to do so. If you
  3081. do not wish to do so, delete this exception statement from your
  3082. version. If you delete this exception statement from all source
  3083. files in the program, then also delete it here.