Hi
Im using tunlr and would like to set it up with DNSMasq in my router running Asuswrt-Merlin.
I found this post in tunlr forum but I don't have the know how to set it up through terminal on my Mac.
I am able to telnet to my router but I am no familiar with the commands and tools to navigate and create and edit files within terminal.
Would any be kind to help me through it, also is there anything I need to setup on the router?
http://tunlr.net/forums/topic/use-dnsmasq-in-asus-rt-n56u-2/
"Hi,
Quick tutorial to save you all the trouble. To route traffic through tunlr (Pandora, Netflix, etc) on your ASUS router RT-N56U do the following:
1. Telnet into your router
2. Create the file addtunlr at /tmp/mnt/sda1/asusware with touch
3. edit with VI and paste:
#!/bin/sh
DNS1=”192.95.16.109″
DNS2=”69.197.169.9″
echo “server=/netflix.com/$DNS1″ >> /tmp/etc/dnsmasq.conf
echo “server=/netflix.com/$DNS2″ >> /tmp/etc/dnsmasq.conf
echo “server=/pandora.com/$DNS2″ >> /tmp/etc/dnsmasq.conf
echo “server=/pandora.com/$DNS1″ >> /tmp/etc/dnsmasq.conf
echo “server=/hulu.com/$DNS1″ >> /tmp/etc/dnsmasq.conf
echo “server=/hulu.com/$DNS2″ >> /tmp/etc/dnsmasq.conf
echo “server=/last.fm/$DNS2″ >> /tmp/etc/dnsmasq.conf
echo “server=/last.fm/$DNS1″ >> /tmp/etc/dnsmasq.conf
echo “server=/vevo.com/$DNS1″ >> /tmp/etc/dnsmasq.conf
echo “server=/vevo.com/$DNS2″ >> /tmp/etc/dnsmasq.conf
echo “server=/bbc.co.uk/$DNS2″ >> /tmp/etc/dnsmasq.conf
echo “server=/bbc.co.uk/$DNS1″ >> /tmp/etc/dnsmasq.conf
echo “server=/itv.com/$DNS2″ >> /tmp/etc/dnsmasq.conf
echo “server=/itv.com/$DNS1″ >> /tmp/etc/dnsmasq.conf
killall dnsmasq
dnsmasq -c 1500 –log-async -n
4. chmod +x addtunlr
5. edit .asusrouter with VI
6. add at the bottom of the file:
/tmp/mnt/sda1/asusware/addtunlr
If the IPs change, edit the file and change the variables at the top, type reboot and you are good to go."
Im using tunlr and would like to set it up with DNSMasq in my router running Asuswrt-Merlin.
I found this post in tunlr forum but I don't have the know how to set it up through terminal on my Mac.
I am able to telnet to my router but I am no familiar with the commands and tools to navigate and create and edit files within terminal.
Would any be kind to help me through it, also is there anything I need to setup on the router?
http://tunlr.net/forums/topic/use-dnsmasq-in-asus-rt-n56u-2/
"Hi,
Quick tutorial to save you all the trouble. To route traffic through tunlr (Pandora, Netflix, etc) on your ASUS router RT-N56U do the following:
1. Telnet into your router
2. Create the file addtunlr at /tmp/mnt/sda1/asusware with touch
3. edit with VI and paste:
#!/bin/sh
DNS1=”192.95.16.109″
DNS2=”69.197.169.9″
echo “server=/netflix.com/$DNS1″ >> /tmp/etc/dnsmasq.conf
echo “server=/netflix.com/$DNS2″ >> /tmp/etc/dnsmasq.conf
echo “server=/pandora.com/$DNS2″ >> /tmp/etc/dnsmasq.conf
echo “server=/pandora.com/$DNS1″ >> /tmp/etc/dnsmasq.conf
echo “server=/hulu.com/$DNS1″ >> /tmp/etc/dnsmasq.conf
echo “server=/hulu.com/$DNS2″ >> /tmp/etc/dnsmasq.conf
echo “server=/last.fm/$DNS2″ >> /tmp/etc/dnsmasq.conf
echo “server=/last.fm/$DNS1″ >> /tmp/etc/dnsmasq.conf
echo “server=/vevo.com/$DNS1″ >> /tmp/etc/dnsmasq.conf
echo “server=/vevo.com/$DNS2″ >> /tmp/etc/dnsmasq.conf
echo “server=/bbc.co.uk/$DNS2″ >> /tmp/etc/dnsmasq.conf
echo “server=/bbc.co.uk/$DNS1″ >> /tmp/etc/dnsmasq.conf
echo “server=/itv.com/$DNS2″ >> /tmp/etc/dnsmasq.conf
echo “server=/itv.com/$DNS1″ >> /tmp/etc/dnsmasq.conf
killall dnsmasq
dnsmasq -c 1500 –log-async -n
4. chmod +x addtunlr
5. edit .asusrouter with VI
6. add at the bottom of the file:
/tmp/mnt/sda1/asusware/addtunlr
If the IPs change, edit the file and change the variables at the top, type reboot and you are good to go."