aria2c.rst 154 KB

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