Das ist schwierig ohne Firmaretausch (Freetzimage). Am besten wären feste interne IP-Adressen und mit iptables eine tägliche Quota (... z. B. 100 MB/Tag) für jede interne IP-Adresse (... d. h. je user/client).Nun suche ich eine Lösung, am besten für die Fritzbox ohne großen Firmwaretausch ...
iptables -N quotachain 2> /dev/null
iptables -A quotachain -m quota --quota 100000000 -j ACCEPT # 100000000 bytes frei
iptables -A quotachain -j REJECT
iptables -I FORWARD 1 -d 192.168.178.22 -j quotachain # IP-Adresse PC user 1
iptables -I FORWARD 2 -d 192.168.178.23 -j quotachain # IP-Adresse PC user 2
iptables -I FORWARD 3 -d 192.168.178.24 -j quotachain # IP-Adresse PC user 3
...
...
...
Siehe Link: http://freetz.org/wiki/help/howtos/common/newbieIst das mit Freetz ne große Aktion?
Grundkenntnisse in Linux sind erforderlich.Bin zwar mit Windows sehr fit, aber Linux bin ich die totale NULL
Danke geht prima auf einer FB7390 ohne freetz.Code:iptables -A FORWARD -s 192.168.xxx.yyy/32 -d 0/0 iptables -A FORWARD -s 0/0 -d 192.168.xxx.yyy/32
Von wo hast Du das iptables-binary für die 7390? Ist das statisch gelinkt?Ich habe nur eine Binary "iptables" raufgeschoben ...
Für die 7270 bzw. 7170, gibt es statisch gelinkte binaries/module von MaxMuster. Siehe Link zum Thread: http://www.ip-phone-forum.de/showthread.php?t=255168Leide habe ich keine solche Binary für die FB7270 und FB7170.
Kann da bitte jemand helfen, oder geht das da nicht?
Keine Ahnung, irgendwo aus den Tiefen des Forums. Irgendwann runter geladen, drauf geschoben, aufgerufen (iptables -L) und mich gefreut, daß ich 3 Chains sah.Von wo hast Du das iptables-binary für die 7390? Ist das statisch gelinkt?
Muß ich jetzt noch eine Tabelle 'filter' anlegen?7270:# xtables-multi_mipsel_static iptables -L
modprobe: module ip_tables not found in modules.dep
iptables v1.4.11.1: can't initialize iptables table `filter': Table does not exist (do you need to insmod?)
Perhaps iptables or your kernel needs to be upgraded.
Woher bekomme ich die und wie binde ich die ein?die kernel-module dazu habe ich schon kompiliert und eingebunden?
Ich habe auf der 7170, mit:Braucht man irgendein Modul für FORWARD-Rule?
root@fritz:/var/mod/root# cat /proc/version
Linux version 2.6.13.1-ohio () (gcc version 3.4.6) #2 Sat Jan 29 11:41:02 CET 2011
root@fritz:/var/mod/root# lsmod | grep ip
ipt_MASQUERADE 2496 1
ipt_state 1312 17
ipt_limit 1856 5
ipt_REJECT 4800 17
ipt_LOG 7328 22
ipt_multiport 2176 27
iptable_mangle 2048 1
iptable_nat 22096 2 ipt_MASQUERADE
ip_conntrack 42224 3 ipt_MASQUERADE,ipt_state,iptable_nat
iptable_filter 2112 1
ip_tables 21408 9 ipt_MASQUERADE,ipt_state,ipt_limit,ipt_REJECT,ipt_LOG,ipt_multiport,iptable_mangle,iptable_nat,iptable_filter