- Is it possible to disable P2P BitTorrent in aria2c?
- If it's not possible in aria2, how could I block P2P with iptables?
Asked
Active
Viewed 1,152 times
0

user3200534
- 103
- 1
- 5
1 Answers
1
According to the docs, you can start aria2c with the --enable-peer-exchange
set to false
and that's that.
--enable-peer-exchange [true|false]
Enable Peer Exchange extension. If a private flag is set in a torrent, this feature is disabled for that download even if true is given. Default:
true
However, if you want an aria2 version that does not support BitTorrent or Metalink, you can built it yourself and just provide --disable-bittorrent
and --disable-metalink
to the configure script.

dreamski21
- 17
- 4