How do I use rTorrent + Blacklist on centos?
Register

We are the best invite forum on the internet! Here you will find free invites, free seedboxes, free bonuses, and much more. Our members know the true meaning of sharing and have created a truly global bittorent community! Our site has the most up to date information on all private trackers and our members will guide you and introduce you to this truly secretive and enlightened club. Ready to get started? Register now!


Results 1 to 7 of 7
Like Tree1Likes
  • 1 Post By Copper

Thread: How do I use rTorrent + Blacklist on centos?

  1. #1

    Join Date
    Jun 2011
    Posts
    46

    Default How do I use rTorrent + Blacklist on centos?

    I've done some searching around, and just can't seem to find either a good writeup, or even some good suggestions on tools to use. However knowing how good the community is here, I figured I'd ask the question, and see what kind of response I get.



    I currently have a headless box setup with rTorrent+rutorrent setup using this forum post, running on CentOS 5.6. I'd like to install some type of block/black list software similar to peerguardian2 that I was running when I used Windows / utorrent.

    Can someone point me in the right direction?

    Thanks.


  2. To remove ads become VIP. Inquire about advertising here.
  3. #2

    Join Date
    Jun 2011
    Posts
    5,584
    Blog Entries
    1

    Default Re: How do I use rTorrent + Blacklist on centos?

    There are many ways to do this. You might want to look into DansGuardian or Squidguard. Personally, I'd just use an IPTables blacklist. If you do a Google search with these keywords, you should find what you need.

    Or perhaps another reader will jump in with more info or a tutorial at hand.
    Fortune and love favour the brave .-. Ovid ....

  4. #3

    Join Date
    Jun 2011
    Posts
    46

    Default Re: How do I use rTorrent + Blacklist on centos?

    Since I'm using IPTables already, that would seem to make the most sense.

    Let me see what I can find.

  5. #4

    Join Date
    Jun 2011
    Posts
    5,584
    Blog Entries
    1

    Default Re: How do I use rTorrent + Blacklist on centos?

    Iptables is very powerful. Here are two bookmarks on basic usage:
    iptables basics ... A basic script to parse a block list

    The principle is pretty simple.. e.g.

    Lets create some chains; BLACKLIST and LOGDROP. The latter because I like to have a log of what is blocked. Then specify something to be blocked. That's it, done, pay the piper. The first link above will give you are more detailed description if you are new to iptables.

    Of course you probably want to block a long list of addresses, so a script to parse those is useful. Google should pull up all kinds of pre-formatted block lists and scripts to parse them with to give you the equivalent of what you were using before.

    iptables -N BLACKLIST
    iptables -N LOGDROP
    iptables -A BLACKLIST -s insert_source_IP_to_be_blocked_here -j LOGDROP



    .
    Water666 likes this.
    Fortune and love favour the brave .-. Ovid ....

  6. #5

    Join Date
    Jun 2011
    Posts
    46

    Default Re: How do I use rTorrent + Blacklist on centos?

    Thanks for the information. I'm working on testing that out, and I'll let you know how it goes.

  7. #6

    Join Date
    Aug 2010
    Posts
    314

    Default Re: How do I use rTorrent + Blacklist on centos?

    Code:
    iptables -I INPUT -s 192.168.1.0/24 -j DROP
    This will block all the IPs from 192.168.1.0 to 192.168.1.255

    If you have ipt_ipranges module enabled (maybe the VPS provider can enable it for you), you can block specific ranges:

    Code:
    iptables -I INPUT -m iprange --src-range 192.168.1.10-192.168.1.13 -j DROP
    Last edited by Freeman_; July 15th, 2011 at 01:18 PM.

  8. #7

    Join Date
    Apr 2011
    Location
    Could be anywhere.
    Posts
    1,499

    Default Re: How do I use rTorrent + Blacklist on centos?

    Closed due to lack of activity. Assuming issue is now resolved.
    Original Poster can PM me if not and I will re-open the thread.

Similar Threads

  1. How do you use Wolfram Alpha?
    By leonardo in forum General Discussion
    Replies: 10
    Last Post: February 7th, 2010, 10:59 AM
  2. Replies: 12
    Last Post: May 7th, 2009, 08:23 PM
  3. how do u give someone rep on these forums?????
    By cupramen in forum General Discussion
    Replies: 1
    Last Post: April 16th, 2009, 04:45 PM
  4. how do i use srt files?
    By CCR82 in forum BitTorrent Discussion
    Replies: 2
    Last Post: November 6th, 2008, 08:28 AM

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •