Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!


How do you build your own DNS based Hulu/Netflix Tunnel? - Page 3
New on LowEndTalk? Please Register and read our Community Rules.

All new Registrations are manually reviewed and approved, so a short delay after registration may occur before your account becomes active.

How do you build your own DNS based Hulu/Netflix Tunnel?

13»

Comments

  • I've got something similar setup although I use a router for my tunnel.

    Buy - http://www.amazon.com/TP-LINK-TL-WR702N-Wireless-Repeater-150Mpbs/dp/B007PTCFFW/ref=sr_1_3?ie=UTF8&qid=1395857585&sr=8-3&keywords=tp+link+ap

    Set it up to connect to an L2TP VPN then connect your devices to it wirelessly and they'll be going through a tunnel.

  • @Rami said:
    https://github.com/trick77/tunlr-style-dns-unblocking
    Thanks man, Is it possible that you make a full tutorial about installing this proxy

    This.
    Does anyone have a tutorial on how to setup this for a Xbox 360? I have a spare VPS (who hasn't) but there a some parts on that github page I don't understand. DNAT?? I can't even get the so called simple mode to work :-(

  • Hey there everyone! Great tutorial! I'm stuck at one point. All the websites I'm trying to "hid from" are actually not working after I've followed this tutorial: http://blog.belodedenko.me/2014/02/diy-clone-of-netflix-tunlr-vps.html

    It get's stuck in to the server and it doesn't forward me past that. Also sniproxy says it's stopped and won't start.

    Any ideas for me?

    Thanks a bunch!

  • @XTServers said:
    Hey there everyone! Great tutorial! I'm stuck at one point. All the websites I'm trying to "hid from" are actually not working after I've followed this tutorial: http://blog.belodedenko.me/2014/02/diy-clone-of-netflix-tunlr-vps.html

    It get's stuck in to the server and it doesn't forward me past that. Also sniproxy says it's stopped and won't start.

    Any ideas for me?

    Thanks a bunch!

    Your configs, logs and any other information you can provide will be very useful in determining what your issue is :)

  • Thanks for the quick reply!

    /var/named/chroot/etc/named.conf
    `options {
    listen-on port 53 { any; };

        listen-on-v6 port 53 { any; };
    
        directory       "/var/named";
    
        dump-file       "/var/named/data/cache_dump.db";
    
        statistics-file "/var/named/data/named_stats.txt";
    
        memstatistics-file "/var/named/data/named_mem_stats.txt";
    
        allow-query     { trusted; };
    
        recursion yes;
    
        allow-recursion { trusted; };
    
    
        auth-nxdomain no;    # conform to RFC1035
    
        dnssec-enable yes;
    
        dnssec-validation yes;
    
        dnssec-lookaside auto;
    
    
        /* Path to ISC DLV key */
    
        bindkeys-file "/etc/named.iscdlv.key";
    
        managed-keys-directory "/var/named/dynamic";
    
    
        forwarders {
    
                8.8.8.8;
    
                8.8.4.4;
    
        };
    

    };

    acl "trusted" {

        any;
    

    };

    logging {

        channel default_debug {
    
                file "data/named.run";
    
                severity dynamic;
    
        };
    

    };

    zone "." IN {

        type hint;
    
        file "named.ca";
    

    };

    include "/etc/named.rfc1912.zones";

    include "/etc/named.root.key";

    include "/var/named/chroot/etc/zones.override";
    `

  • XTServersXTServers Member
    edited April 2014

    /var/named/chroot/etc/named/db.override

    $TTL  86400
    
    @   IN  SOA ns1 root (
                2014020501  ; serial
                604800      ; refresh 1w
                86400       ; retry 1d
                2419200     ; expiry 4w
                86400       ; minimum TTL 1d
                )
    
        IN  NS  ns1
    ns1 IN  A   198.50.xxx.xxx
    @   IN  A   198.50.xxx.xxx
    *   IN  A   198.50.xxx.xxx
    
  • XTServersXTServers Member
    edited April 2014

    /var/named/chroot/etc/zones.override

    zone "netflix.com." {
        type master;
        file "/var/named/chroot/etc/named/db.override";
    };
    zone "hulu.com." {
        type master;
        file "/var/named/chroot/etc/named/db.override";
    };
    
  • XTServersXTServers Member
    edited April 2014

    Sorry for the multiple posts!

    I've tried to install and run sniproxy again and I got a bit further. It seems I was missing some perl modules.

    I tried running sniproxy manually and this is what I got:

    [root@x sniproxy]# sniproxy -c sniproxy.conf
    2014-04-30 04:32:23 Parsed netflix.com *
    2014-04-30 04:32:23 Parsed hulu.com *
    2014-04-30 04:32:23 Parsed arataip.ro *
    2014-04-30 04:32:23 bind failed: Address already in use
    Failed to initialize listener
    listener 198.50.x.x:80 {
            protocol http
    }
    

    EDIT: Found it! Apache was killing it now. I got it working :) Can't wait to get back to the office or home and test it.

    [root@x sniproxy]# service sniproxy status

    sniproxy (pid 7644) is running...

    Thanked by 1bashed
  • Hey there everyone!

    Sorry for bugging you again. I had some time today to play with the configuration above and I got to the point where, whenever I open hulu or netflix I get "Backend not available" in the browser.

    Anyone has an idea why this is happening? :)

    Thank you for your time once again! Hope I'm not getting on your guys's nerves.

  • ab1ab1 Member

    For a more up-to-date solution, check out: https://github.com/ab77/netflix-proxy

    This is basically a containerised version of the previous manual build with most things automated.

    -- ab1

  • mik997mik997 Member

    @ab1 said:
    For a more up-to-date solution, check out: https://github.com/ab77/netflix-proxy

    This is basically a containerised version of the previous manual build with most things automated.

    -- ab1

    wow! that's great work .. might give it a try out this week-end .. ;)

  • You guys are great

Sign In or Register to comment.