GUYS! I got great news. I've finally managed to make OpenWRT on TL-WR1043ND work on IPTV.
Only problem is, I got no clue why the hell it works.
NOTE: I used self-compiled trunk build for this. If anyone want to risk their necks for me by trying this out on 10.03.1, it'd be helpful. It is pretty much risk free though, as the only thing bad that could happen is that IPTV doesn't work on port 4.
Here's what you do.
Get
WinSCP.
Install, click New, put your router's username (openwrt uses root), password, ip, set protocol to SCP.
Login, edit /etc/config/network and replace everything in there with this. Don't forget to change the username and password. Save it, press OK to any warnings.
CODE
config 'interface' 'loopback'
option 'ifname' 'lo'
option 'proto' 'static'
option 'ipaddr' '127.0.0.1'
option 'netmask' '255.0.0.0'
config 'interface' 'lan'
option 'ifname' 'eth0.1'
option 'type' 'bridge'
option 'proto' 'static'
option 'ipaddr' '192.168.1.1'
option 'netmask' '255.255.255.0'
config 'interface' 'wan'
option 'ifname' 'eth0.500'
option 'proto' 'pppoe'
option 'peerdns' '0'
option 'keepalive' '5'
option 'dns' '8.8.8.8 8.8.4.4'
option 'username' 'username@unifi'
option 'password' 'password'
config 'interface' 'iptv'
option 'ifname' 'eth0.600'
option 'type' 'bridge'
option 'proto' 'none'
option 'auto' '1'
config 'switch'
option 'name' 'rtl8366rb'
option 'reset' '1'
option 'enable_vlan' '1'
option 'enable_vlan4k' '1'
config 'switch_vlan'
option 'device' 'rtl8366rb'
option 'vlan' '1'
option 'ports' '1 2 3 5t'
config 'switch_vlan'
option 'device' 'rtl8366rb'
option 'vlan' '500'
option 'ports' '0t 5t'
config 'switch_vlan'
option 'device' 'rtl8366rb'
option 'vlan' '600'
option 'ports' '0t 4 5t'
After rebooting the router, port 4 should now be able to watch IPTV.
http://imgur.com/MuRMY
Added on January 19, 2012, 10:29 pmNow I just need to find my remote... lol.
This post has been edited by blindbox: Jan 19 2012, 10:43 PM