Differences

This shows you the differences between two versions of the page.

doc:recipes:dumbap [2012/11/14 22:09]
written_direcon
doc:recipes:dumbap [2013/04/20 06:49] (current)
gatak
Line 94: Line 94:
<code>/etc/init.d/network reload</code> <code>/etc/init.d/network reload</code>
 +===== IPv6 =====
 +If you would like your AP to receive IPv6 as a host only and not for routing you have to tell dhcp6c not to request prefix deligation.  If you do not do this the AP will reject basic IPv6 addresses.
 +
 +<code>config interface 'wan6'
 + option proto 'dhcpv6'
 + option ifname '@wan'
 + option reqprefix no</code>
 +
 +===== Multicast Forwarding =====
 +Multicast forwarding is necessary for DLNA and UPnP clients to work properly. For example PS3, xbox, TVs and stereos use DLNA to detect, communicate with and stream audio/video over the network. Since multicasting is turned off (multicast snooping is turned on) by default in newer OpenWrt releases, it must be activated. This would forward any multicast packets to all ports allowing your TV to find your DLNA capable NAS with movies. In large networks, this could cause some overhead which may not be desirable.
 +
 +Add this into /etc/rc.local
 +<code>echo "0" > /sys/devices/virtual/net/br-lan/bridge/multicast_snooping</code>
 +Replace **br-lan** with your actual bridge interface, sometimes also called **br0**.
 +
 +This will forward all multicast packets to all ports on your bridge, making igmpproxy or udpxy proxies unnecessary.

Back to top

doc/recipes/dumbap.1352927378.txt.bz2 · Last modified: 2012/11/14 22:09 by written_direcon