I've been using a RB951G-2HnD for about a year now, as my primary router.
My ISP sends 2 VLANs for the services:
-VLAN 6 as transport for the PPPoE session
-VLAN 4 for multicast IPTV traffic
My RB951G has 2 bridges (bridge-local & bridge-iptv). This means I have to connect 2 wires from the router to my apartment: 1 is connected to bridge-local and the other to bridge-iptv, obviously.
This configuration works, however it would be great if I could share both services on 1 UTP cable. I've ordered a CRS125 to accomplish this, yet I'm not sure how to set it all up.
I don't use a VLAN for my local network & VLAN 4 is delivered to my STB's, untagged.
Is it possible to configure the RB951G the way I would like, or should I use the CRS125 for it?
This is the relevant config of my RB951G:
Code: Select all
/interface ethernet
#
# Port 1 (ether1) = NTU
#
set 0 arp=proxy-arp auto-negotiation=yes \
disabled=no full-duplex=yes l2mtu=1598 \
mtu=1500 name=ether1-gateway speed=1Gbps
#
# Port 2 (ether2) = LAN
#
set 1 arp=enabled auto-negotiation=yes \
disabled=no full-duplex=yes l2mtu=1598 \
mtu=1500 name=ether2 speed=1Gbps
#
# VLAN 4 = iptv
# VLAN 6 = internet
#
/interface vlan
add arp=enabled disabled=no interface=ether1-gateway l2mtu=1594 mtu=1500 \
name=vlan1.6 use-service-tag=no vlan-id=6
add interface=ether1-gateway l2mtu=1594 name=vlan1.4 vlan-id=4
#
# PPPoE profile
#
/ppp profile
set 0 change-tcp-mss=yes name=default only-one=default use-compression=\
default use-encryption=default use-mpls=default use-vj-compression=\
default
#
# PPPoE Client
#
/interface pppoe-client
add add-default-route=yes allow=pap,mschap2 \
dial-on-demand=no disabled=no interface=vlan1.6 keepalive-timeout=20 max-mru=1480 max-mtu=1480 \
mrru=disabled name=pppoe password=xxx profile=default \
use-peer-dns=no user=xx-xx-xx-xx-xx-xx
#
# Bridges
#
/interface bridge
add name=bridge-local arp=proxy-arp
add name=bridge-iptv
/interface bridge port
add bridge=bridge-local interface=ether2
add bridge=bridge-local interface=ether3
add bridge=bridge-local interface=ether4
add bridge=bridge-local interface=wlan1
add bridge=bridge-iptv interface=vlan1.4
add bridge=bridge-iptv interface=ether5
![Image](http://i.imgur.com/MRDxeMk.png)