Aus Zeitgründen muß die Darstellung der Verschuldung der Gemeinde Bienenbüttel leider etwas knapper ausfallen:
Zum 31.12.2015 betrug sie laut Tabelle K9600051 beim LSN insgesamt 9.061.000 €, das sind pro Einwohner 1.373 € bei einer Einwohnerzahl von 6.600. Vergleicht man diese pro-Kopf-Verschuldung mit der anderer Einheits- und Samtgemeinden in Niedersachsen, so kommt man zu folgendem Ergebnis:
Die n=156 Einheitsgemeinden weisen eine durchschnittliche pro-Kopf-Verschuldung von 939 € auf, der Median beträgt 758 €. Bienenbüttel liegt mit seiner pro-Kopf-Verschuldung von 1.373€ am unteren Ende des oberen Viertels aller Einheitsgemeinden, d.h. 75% aller Einheitsgemeinden Niedersachsens haben eine geringere und 25% eine höhere pro-Kopf-Verschuldung als Bienenbüttel.
Die n=122 Samtgemeinden weisen eine durchschnittliche pro-Kopf-Verschuldung von 894 € auf bei einem Media von 683 €. Wäre Bienenbüttel eine Samtgemeinde, so läge sie mit ihrer pro-Kopf-Verschuldung knapp am unteren Ende des oberen Fünftels aller Samtgemeinden.
Diese eher schlechte Stellung der Gemeinde Bienenbüttel wird relativiert durch die recht hohe Finanzkraft. Adjustiert man die pro-Kopf-Verschuldung der Einheits- und Samtgemeinden mit ihrer Finanzkraft (d.h. dem Quotienten aus Bedarfs- und Steuermeßzahl), so liegt Bienenbüttel ziemlich genau auf dem Median der Einheits- und Samtgemeinden, d.h. etwa die Hälfte ist höher verschuldet, die andere Hälfte geringer verschuldet als Bienenbüttel.
Auch aus dieser Metrik läßt sich also kein Fusionsdruck herleiten.
Mit diesem Beitrag endet die Serie mit den Faktenchecks zum angeblichen Fusionsdruck.
Tuesday, April 4. 2017
Filter multicast (e.g. IP-TV) traffic from WLAN on dd-wrt routers
I am using a very old Linksys router as a WLAN-AP and a switch for older 100 MBit devices. When I changed my network layout (due to swtiching rooms for my home office), this router was no longer connected directly to my Fritz!Box (Internet router) but via another switch (which is not IGMP V3 ready).
When I now watched TV on my PC (T-Entertain, using vlc) the multicast IP-TV-traffic went all over my switch, all ports, the Linksys router and was finally flooding the WLAN. I can perfectly live with the 10 Mbit or so IP-TV traffic flowing over my cable ethernet - for the WLAN, however I needed to find a solution.
[1] outlines two solutions, one via "unbridging" the WLAN and the other using ebtables to filter the multicast traffic. I did not like the former, because that meant that the Linksys router would need to take over DHCP tasks for the unbridged WLAN segment (DHCP needs broadcasts).
The latter variant turned out not to work, because the ebt_pkttype kernel module is not included in any stable release of dd-wrt for this old router. I have no idea why, and [2] has a lengthy discussion about possible workarounds, but this was a show-stopper for this variant as well.
But why do they use the pkttype plugin? One can specify source and destination MAC addresses using just the ebtables and ebtable_filter modules (which are available on my router) and there are even broadcast and multicast aliases for this command, see the man page at [3].
Admittedly, the way these aliases are defined, the multicast alias does also match broadcast packets, which is not what we desire (see above). Nothing prevents us, however, from using a hand-crafted multicast filter which just filters out the IPTV packets. This turns out to be 01:00:5e:00:00:00/01:00:5e:00:00:00. For further information refer to [4].
The only necessary configuration change is thus to insert the following commands into the startup commands at Administration->Commands:
Note that this does only filter on the eth1 interface (WLAN, see [5]) and the multicast packets are not filtered on the cable-based ports 1-4, but this is perfectly fine for me.
When I now watched TV on my PC (T-Entertain, using vlc) the multicast IP-TV-traffic went all over my switch, all ports, the Linksys router and was finally flooding the WLAN. I can perfectly live with the 10 Mbit or so IP-TV traffic flowing over my cable ethernet - for the WLAN, however I needed to find a solution.
[1] outlines two solutions, one via "unbridging" the WLAN and the other using ebtables to filter the multicast traffic. I did not like the former, because that meant that the Linksys router would need to take over DHCP tasks for the unbridged WLAN segment (DHCP needs broadcasts).
The latter variant turned out not to work, because the ebt_pkttype kernel module is not included in any stable release of dd-wrt for this old router. I have no idea why, and [2] has a lengthy discussion about possible workarounds, but this was a show-stopper for this variant as well.
But why do they use the pkttype plugin? One can specify source and destination MAC addresses using just the ebtables and ebtable_filter modules (which are available on my router) and there are even broadcast and multicast aliases for this command, see the man page at [3].
Admittedly, the way these aliases are defined, the multicast alias does also match broadcast packets, which is not what we desire (see above). Nothing prevents us, however, from using a hand-crafted multicast filter which just filters out the IPTV packets. This turns out to be 01:00:5e:00:00:00/01:00:5e:00:00:00. For further information refer to [4].
The only necessary configuration change is thus to insert the following commands into the startup commands at Administration->Commands:
insmod ebtables
insmod ebtable_filter
ebtables -A FORWARD -o eth1 -p IPv4 -d 01:00:5e:00:00:00/01:00:5e:00:00:00 -j DROP
Note that this does only filter on the eth1 interface (WLAN, see [5]) and the multicast packets are not filtered on the cable-based ports 1-4, but this is perfectly fine for me.
(Page 1 of 1, totaling 2 entries)