Quote from: nowster on Jul 20, 2026, 22:35:28The OSA is a right pain for legitimate forums and is toothless against the really harmful content.
Quote from: zappaDPJ on Jul 20, 2026, 20:36:34It would seem so. I'd be interested to know where the server for that site is situated geographically. If it's inside the UK I would have expected there would be laws that could be employed to be taken it down.
Quote from: Simon on Jul 20, 2026, 20:24:08So, basically this proves what we've thought all along, in that apart from the ability to issue fines, Ofcom is toothless to actually take any concrete action.
#!/bin/bash
set -x
DOWN="50.0Mbit"
UP="10.0MBit"
ext=ppp0
ifb=ifb4${ext}
# egress
tc qdisc delete root dev $ext
tc qdisc add root dev $ext cake bandwidth $UP pppoe-vcmux nat
# ingress
ip link add name $ifb type ifb
tc qdisc del dev $ext ingress
tc qdisc add dev $ext handle ffff: ingress
tc qdisc del dev $ifb root
tc qdisc add dev $ifb root cake bandwidth $DOWN besteffort
ifconfig $ifb up
# if you don't bring the device up your connection
# will lock up on the next step.
tc filter add dev $ext parent ffff: protocol all \
prio 10 u32 match u32 0 0 flowid 1:1 action mirred egress \
redirect dev $ifb
~# more /etc/ppp/peers/dsl-provider
# Minimalistic default options file for DSL/PPPoE connections
noipdefault
defaultroute
replacedefaultroute
hide-password
noauth
persist
maxfail 0
plugin rp-pppoe.so eth1
+ipv6 ipv6cp-use-ipaddr
# debug
user "accountname@idnet.gw6"
# more /etc/radvd.conf
interface br0 {
IgnoreIfMissing on;
AdvSendAdvert on;
AdvLinkMTU 1280;
prefix 2A02:390:XXXX:XXXX::/64
{
AdvOnLink on;
AdvAutonomous on;
AdvRouterAddr off;
};
};
Page created in 0.103 seconds with 14 queries.