Ok, I've got it! Here's a minimalistic config of the German Telekom Entertain IPTV. Internet and IPTV is running fine. I've just followed the Polish tutorial with example 4!
First the working /etc/config/network
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.2'
option 'type' 'bridge'
option 'proto' 'static'
option 'ipaddr' '192.168.1.1'
option 'netmask' '255.255.255.0'
config 'interface' 'wan'
option 'ifname' 'eth0.7'
option proto 'pppoe'
option username 'xxxxxxxxxxxxxxxxxxxxxxxx#001@t-online.de'
option password 'mypassword'
config 'interface' 'vlan8'
option 'ifname' 'eth0.8'
option 'proto' 'dhcp'
option 'metric' '10'
config 'switch'
option 'name' 'rtl8366rb'
option 'reset' '1'
option 'enable_vlan' '1'
config 'switch_vlan'
option 'device' 'rtl8366rb'
option 'vlan' '8'
option 'ports' '0t 4 5t'
config 'switch_vlan'
option 'device' 'rtl8366rb'
option 'vlan' '7'
option 'ports' '0t 5t'
config 'switch_vlan'
option 'device' 'rtl8366rb'
option 'vlan' '2'
option 'ports' '1 2 3 5t'
Second the working /etc/config/dhcp
config dnsmasq
option domainneeded 1
option boguspriv 1
option filterwin2k 0 # enable for dial on demand
option localise_queries 1
option rebind_protection 1 # disable if upstream must serve RFC1918 addresses
option rebind_localhost 1 # enable for RBL checking and similar services
#list rebind_domain example.lan # whitelist RFC1918 responses for domains
option local '/lan/'
option domain 'lan'
option expandhosts 1
option nonegcache 0
option authoritative 1
option readethers 1
option leasefile '/tmp/dhcp.leases'
option resolvfile '/tmp/resolv.conf.auto'
#list server '/mycompany.local/1.2.3.4'
#option nonwildcard 1
#list interface br-lan
#list notinterface lo
#list bogusnxdomain '64.94.110.11'
config dhcp lan
option interface lan
option start 100
option limit 150
option leasetime 12h
config dhcp wan
option interface wan
option ignore 1
config dhcp vlan8
option interface vlan8
option ignore 1
That are the only files I modified. Nothing else and it's running fine! :-) No static routes, no firewall configurations. Please report back, if it is working for you (especially Lubomir)!
EDIT: I forgot to write, that I've seperated the IPTV receiver to port 4 on the switch.
(Last edited by DerUltrazauberer on 19 May 2012, 13:16)