Newbie Mailer Friendly ISPs

Discussion in 'Noob Central' started by FrankD, Sep 10, 2011.

  1. FrankD

    FrankD New Member

    Joined:
    Sep 1, 2011
    Messages:
    71
    Likes Received:
    1
    Trophy Points:
    0
    Location:
    Chicagoland
    Might be an oxymoron. Where does someone starting in the business get servers to send mail on?
     
  2. chappy72

    chappy72 VIP

    Joined:
    Apr 13, 2011
    Messages:
    199
    Likes Received:
    16
    Trophy Points:
    18
    Location:
    DE
    Dell makes good servers
     
  3. DaMadHatter

    DaMadHatter Active Member

    Joined:
    Mar 1, 2011
    Messages:
    722
    Likes Received:
    51
    Trophy Points:
    28
    Location:
    In the Void
    If you are brand new, you should go to someplace like Burst, FDC, Joe's... where you can get cheap servers, and they do not ask a lot of questions in regards to IP space. The bad news is that most of the IP space will be beaten up. The good news is, it's cheap and you can learn the hard way without a lot of expense.

    Once you get better at mailing, you would then seek out providers with better quality IP space in general, or TLD specific depending on your data. You are going to pay a lot more for your servers to get that. But if you know what you are doing, and have your data segmented accordingly, it is much more profitable. You simply can do more with less.

    Good luck.
     
  4. Fun4uoc

    Fun4uoc VIP

    Joined:
    Apr 22, 2011
    Messages:
    607
    Likes Received:
    23
    Trophy Points:
    28
  5. FrankD

    FrankD New Member

    Joined:
    Sep 1, 2011
    Messages:
    71
    Likes Received:
    1
    Trophy Points:
    0
    Location:
    Chicagoland
    Is there a way to get good IPs and attach them to a lower end server?
     
  6. DaMadHatter

    DaMadHatter Active Member

    Joined:
    Mar 1, 2011
    Messages:
    722
    Likes Received:
    51
    Trophy Points:
    28
    Location:
    In the Void
    G.R.E. tunneling.
     
  7. Fun4uoc

    Fun4uoc VIP

    Joined:
    Apr 22, 2011
    Messages:
    607
    Likes Received:
    23
    Trophy Points:
    28
    I'm still kind of a noob but don't you need router access to do GRE tunneling?
     
  8. DaMadHatter

    DaMadHatter Active Member

    Joined:
    Mar 1, 2011
    Messages:
    722
    Likes Received:
    51
    Trophy Points:
    28
    Location:
    In the Void
    I can't explain it all in a public forum. You simply need to do some research on your own.
     
  9. Fun4uoc

    Fun4uoc VIP

    Joined:
    Apr 22, 2011
    Messages:
    607
    Likes Received:
    23
    Trophy Points:
    28
    Doh!!! :17:
     
  10. DaMadHatter

    DaMadHatter Active Member

    Joined:
    Mar 1, 2011
    Messages:
    722
    Likes Received:
    51
    Trophy Points:
    28
    Location:
    In the Void
    In short, tunneling can be accomplished without a router.

    Google is your friend.
    :smokin:
     
  11. Fun4uoc

    Fun4uoc VIP

    Joined:
    Apr 22, 2011
    Messages:
    607
    Likes Received:
    23
    Trophy Points:
    28
    Thanks dude but Google has been my enemy on this. This site was the closest I could find but it appears to require router access.

    http://lartc.org/howto/lartc.tunnel.gre.html

    I'll keep searching.
     
  12. DKPMO

    DKPMO VIP

    Joined:
    Mar 31, 2011
    Messages:
    1,452
    Likes Received:
    68
    Trophy Points:
    48
    Location:
    Elaborate Underground Base
    If you are looking for help with tunneling PM me and I might be able to assist.

    As mentioned in this thread this subject is not appropriate for a public forum discussion. No fishing expeditions please, only contact me with your actual use case.
     
  13. FrankD

    FrankD New Member

    Joined:
    Sep 1, 2011
    Messages:
    71
    Likes Received:
    1
    Trophy Points:
    0
    Location:
    Chicagoland
    Alright, sorry about bringing that up. Its understandable certain topics don't want to be talked about. It makes it more difficult for a newbie to figure everything out.
     
  14. nickphx

    nickphx VIP

    Joined:
    Apr 2, 2011
    Messages:
    1,294
    Likes Received:
    430
    Trophy Points:
    83
    Gender:
    Male
    Location:
    phoenix.
    tunneling is some secret?
    lol.

    wow


    simple howto:

    you need to know the following information:

    2 servers.
    linux.

    ip address of server you will be tunneling ips from.
    ip address of server you will be tunneling ips to.
    ips you will be tunneling.

    on source server as root obviously..

    iptables is lame and smells bad.

    chkconfig iptables off
    service iptables stop

    modprobe ip_gre
    ip tun add mode gre mytunnelname remote IP.OF.TARGET local IP.OF.SOURCE ttl 255
    ip add add 10.0.0.1/30 dev mytunnelname
    ip link set mytunnelname up

    this tells linux to be nice and forward packets and proxy arp requests.. rp_filter is bad so we disable it.

    sysctl -w net.ipv4.conf.ip_forward=1
    sysctl -w net.ipv4.conf.proxy_arp=1
    sysctl -w net.ipv4.conf.default.rp_filter=0

    do this for each ip you want to tunnel:
    route add IP.TO.TUNNEL gw 10.0.0.1

    if you have a decent allocation and want to do it by cidr:

    route add IP/CIDR gw 10.0.0.1



    On the server that will receive and (ab)use the ips:

    modprobe ip_gre
    ip tun add mode gre tunnelname remote IP.OF.SOURCE local IP.OF.TARGET ttl 255
    ip add add 10.0.0.2/30 dev tunnelname
    ip link set tunnelname up

    sysctl -w net.ipv4.conf.default.rp_filter=0

    for each ip you want to use now:

    ip add add IP.TUNNELED/cidr dev eth0

    et voila.

    As long as your provider you're tunneling the IPs to doesn't have egress filtering or block source routing at their border you will be in business.

    Secret info.. jesus man, you guys make me laugh.
     
  15. FrankD

    FrankD New Member

    Joined:
    Sep 1, 2011
    Messages:
    71
    Likes Received:
    1
    Trophy Points:
    0
    Location:
    Chicagoland
    Thank you for the info.
     
  16. nymailer

    nymailer VIP

    Joined:
    Feb 28, 2011
    Messages:
    205
    Likes Received:
    23
    Trophy Points:
    28
    DPKMO is the guy to talk to for tunneling, one of the smartest people I've ever met.
     
  17. Fun4uoc

    Fun4uoc VIP

    Joined:
    Apr 22, 2011
    Messages:
    607
    Likes Received:
    23
    Trophy Points:
    28
    Thanks Nick, rep given.
     
  18. DKPMO

    DKPMO VIP

    Joined:
    Mar 31, 2011
    Messages:
    1,452
    Likes Received:
    68
    Trophy Points:
    48
    Location:
    Elaborate Underground Base
    Fact of the matter, an average non-technical mailer is going to have trouble implementing and customizing your scripts, stress-testing their security and ensuring uptime.

    But as soon as you get into the territory of openly promoting "tunneling services for mailers" you immediately attract the attention of the well-known international gang of email haters that likes to blackmail US companies from the impunity and protection of their shady offshore heavens.

    You should be well aware that they do not recognize any email tunneling as a legitimate practice and have relentlessly attacked a few players in this space.
     
  19. DaMadHatter

    DaMadHatter Active Member

    Joined:
    Mar 1, 2011
    Messages:
    722
    Likes Received:
    51
    Trophy Points:
    28
    Location:
    In the Void
    Summed up nicely.
    :eating:
     
  20. roundabout

    roundabout Well-Known Member

    Joined:
    Feb 17, 2011
    Messages:
    2,713
    Likes Received:
    155
    Trophy Points:
    63
    Theres no need for a noob to go right into tunneling. That's a road you shouldnt even be thinking of.

    What's the problem with buying a dedicated server, getting some IPs, and mailing your optin data the old fashioned way, keeping your domain in place and striving for reputation through warmups, etc over a normal 30 day period? Have you tried this simple approach yet?
     

Share This Page