iptables+TC进行流量控制 下面是我们一个子公司的一个linux网关的Qos设置,利用iptables和TC,感觉效果很好的。
实例1:
流量控制:
防火墙上eth0连接内网,eth1连接外网线路,带宽为2.5M,目标:
1、内网用户下载占用的带宽最多为1000kbit/s 而192.168.37.167主192.168.37.168下载带宽可达到1.5Mbit/s
2、内网中的192.168.37.124和192.168.37.140的上传占用的带宽最多为1.5M,而其它用户最多为150Kbit/s
(这样的流量控制后,内网中即使有人使用bt之类的软件也不怕。因为他的上传最多只能占用150Kbit/s,下载最多1000kbit/s ^-^)
#!/bin/sh
TC="/sbin/tc"
LAN_IFACE="eth0"
INET_IFACE="eth1"
ERP1="192.168.37.167/32"
ERP2="192.168.37.168/32"
INTERNAL_LAN="192.168.37.0/24"
start(){
#################### Qos rule on eth0 ########################
#$TC qdisc add dev eth1 root tbf rate 512kbit lantency 50ms burst 1540
if [ "$LAN_IFACE" != "" ];then
$TC qdisc add dev $LAN_IFACE root handle 1:0 cbq bandwidth 100Mbit avpkt 1000 cell 8
$TC class add dev $LAN_IFACE parent 1:0 classid 1:1 cbq bandwidth 100Mbit rate 2.5Mbit weight 3Mbit prio 8 allot 1514 cell 8 maxburst 20 avpkt 1000 bounded
$TC class add dev $LAN_IFACE parent 1:1 classid 1:2 cbq bandwidth 100Mbit rate 1500kbit weight 2Mbit prio 6 allot 1514 cell 8 maxburst 20 avpkt 1000
$TC class add dev $LAN_IFACE parent 1:1 classid 1:3 cbq bandwidth 100Mbit rate 1000kbit weight 1Mbit prio 7 allot 1514 cell 8 maxburst 20 avpkt 1000 bounded
$TC qdisc add dev $LAN_IFACE parent 1:2 handle 20: sfq
$TC qdisc add dev $LAN_IFACE parent 1:3 handle 30: sfq
$TC filter add dev $LAN_IFACE parent 1:0 protocol ip prio 2 u32 match ip dst $ERP1 flowid 1:2
$TC filter add dev $LAN_IFACE parent 1:0 protocol ip prio 2 u32 match ip dst $ERP2 flowid 1:2
$TC filter add dev $LAN_IFACE parent 1:0 protocol ip prio 4 u32 match ip dst $INTERNAL_LAN flowid 1:3
echo ""
echo ""
echo "qos rule on eth0 start ...........ok!"
echo ""
echo ""
fi
#################### Qos rule on eth1 ########################
if [ "$INET_IFACE" != "" ];then
iptables -F -t mangle
iptables -X -t mangle
iptables -Z -t mangle
iptables -A PREROUTING -t mangle -s $ERP1 -j MARK --set-mark 1
iptables -A PREROUTING -t mangle -s $ERP2 -j MARK --set-mark 1
iptables -A PREROUTING -t mangle -s 192.168.37.124/32 -j MARK --set-mark 1
iptables -A PREROUTING -t mangle -s 192.168.37.140/32 -j MARK --set-mark 1
iptables -I PREROUTING -t mangle -s $INTERNAL_LAN -j MARK --set-mark 2
$TC qdisc add dev $INET_IFACE root handle 2:0 cbq bandwidth 100Mbit avpkt 1000 cell 8
$TC class add dev $INET_IFACE parent 2:0 classid 2:1 cbq bandwidth 100Mbit rate 2Mbit weight 1Mbit prio 8 allot 1514 cell 8 maxburst 20 avpkt 1000 bounded
$TC class add dev $INET_IFACE parent 2:1 classid 2:2 cbq bandwidth 100Mbit rate 1500kbit weight 150kbit prio 6 allot 1514 cell 8 maxburst 20 avpkt 1000
$TC class add dev $INET_IFACE parent 2:1 classid 2:3 cbq bandwidth 100Mbit rate 150kbit weight 20kbit prio 7 allot 1514 cell 8 maxburst 20 avpkt 1000 bounded
$TC qdisc add dev $INET_IFACE parent 2:2 handle 20: sfq
$TC qdisc add dev $INET_IFACE parent 2:3 handle 30: sfq
$TC filter add dev $INET_IFACE parent 2:0 protocol ip prio 1 handle 1 fw classid 2:2
$TC filter add dev $INET_IFACE parent 2:0 protocol ip prio 2 handle 2 fw classid 2:3
echo ""
echo ""
echo "qos rule on eth1 start ...........ok!"
echo ""
echo ""
fi
}
stop(){
if [ "$LAN_IFACE" != "" ];then
$TC qdisc del dev $LAN_IFACE root
fi
if [ "$INET_IFACE" != "" ];then
$TC qdisc del dev $INET_IFACE root
fi
iptables -F -t mangle
iptables -X -t mangle
iptables -Z -t mangle
}
status(){
echo "show qdisc ............ "
echo ""
echo ""
echo ""
$TC -d -s qdisc
echo ""
echo ""
echo "show filter ............ "
echo ""
echo ""
if [ "$LAN_IFACE" != "" ];then
$TC -d -s filter ls dev $LAN_IFACE
fi
echo ""
echo ""
if [ "$INET_IFACE" != "" ];then
$TC -d -s filter ls dev $INET_IFACE
fi
echo ""
echo ""
echo "show class ............ "
echo ""
echo ""
if [ "$LAN_IFACE" != "" ];then
$TC -d -s class ls dev $LAN_IFACE
fi
echo ""
echo ""
if [ "$INET_IFACE" != "" ];then
$TC -d -s class ls dev $INET_IFACE
fi
echo ""
echo ""
}
case "$1" in
start)
start
;;
stop)
stop
;;
restart)
stop
start
;;
status)
status
;;
*)
echo $"Usage:$0 {start|stop|restart|status}"
exit 1
esac
实例2: 因涉及到保密性,暂不公开复杂的Qos设置。


china19901107 于 2011-05-26 23:08:41发表:
不错不错,支持支持!!!!
xiang5206267 于 2011-02-12 17:08:34发表:
哪里有linux学习的QQ交流群。
ranehaniot 于 2010-06-09 16:13:30发表:
游客是干什么的
cjjchong 于 2010-06-09 13:15:19发表:
学习下。。。
super123 于 2009-06-14 22:08:28发表:
支持!!!!!!!!!!
66.176.201.* 于 2007-09-07 00:56:17发表:
8e4c3416f70b899bfe793380d3d52ba6 http://controllodeifumicaldaia.ipywer.org/starbridge-eb-1060/ http://testo-o-tannenbaum.hhidlx.org/ http://chatconlawebcam.ipywer.org/mp3-inno-nazionale-italiano/ http://studentesseinminigonna.npxbkv.org/scuola-cucina-corsi/ http://autostradeitaliait.npxbkv.org/sardegna-sant-antioco/ http://forsakenpcimmagine.ipywer.org/nuovo-live-msn/ http://programma-free-n70.yojewt.org/ http://finanziaria-regione-sicilia-2007.odiioj.org/ http://premi-gourmet.oxibnl.org/ http://aperturanuovafarmacia.yufywt.org/agriturismo-vasca-idromassaggio-toscana/ ef5da0821261872f3a177fbd4ce2e9fc
97.101.51.* 于 2007-09-06 07:57:07发表:
6a2b2b874a3b8abccaf4af36c68ee1bd http://www.rstm.edu/phpBB/viewtopic.php?t=1450 http://www.rstm.edu/phpBB/viewtopic.php?t=1450 http://payson.tulane.edu/techeval/forums/viewtopic.php?t=74 http://www.international.ucf.edu/myphp/community/viewtopic.php?t=124 http://www.rstm.edu/phpBB/viewtopic.php?t=1450 http://transatlantic.ipo.asu.edu/forum/viewtopic.php?t=208 http://transatlantic.ipo.asu.edu/forum/viewtopic.php?t=208 http://www.international.ucf.edu/myphp/community/viewtopic.php?t=124 http://iris.lib.virginia.edu/phpBB2/viewtopic.php?t=7689 http://iris.lib.virginia.edu/phpBB2/viewtopic.php?t=7689 d950163e2bc04fe30175aa17834ab13d
219.49.164.* 于 2007-09-05 19:12:52发表:
c2991b9cf1e5041930de6caeab7f0d03 https://www.cslu.ogi.edu/forum/viewtopic.php?t=2656 https://www.cslu.ogi.edu/forum/viewtopic.php?t=2656 http://forum.jalc.edu/phpBB2/viewtopic.php?t=2267 http://www.grahi.upc.edu/ERAD2006/phpBB2/viewtopic.php?t=6839 http://www.grahi.upc.edu/ERAD2006/phpBB2/viewtopic.php?t=6839 https://www.cslu.ogi.edu/forum/viewtopic.php?t=2656 http://myweb.msoe.edu/~chaversa/phpBB2/viewtopic.php?t=2012 http://www.grahi.upc.edu/ERAD2006/phpBB2/viewtopic.php?t=6839 https://www.cslu.ogi.edu/forum/viewtopic.php?t=2657 http://www.mat.ucsb.edu/CUI/viewtopic.php?t=1142 db62d9d137e7999ef0c8bbd27991ea41
72.205.1.* 于 2007-09-05 04:45:38发表:
222c55f9f5759acbcb40d2deab1a8963 http://soluzione-gioco-alone-dark.dfmviz.info/ http://agenzia-delle-entrata-alba.dfmviz.info/ http://foto-fiona-may.dfmviz.info/ http://foto-cintura-sicurezza.dfmviz.info/ http://impaled-nazarene-jailbreak.dfmviz.info/ http://fiore-bach-enteroclisma.dfmviz.info/ http://porta-delle-sette-stelle.dfmviz.info/ http://ricostruzione-palafitte-immagine.dfmviz.info/ http://cad-macchine.dfmviz.info/ http://video-corso-base-karate-scaricare-gratis.dfmviz.info/ 21817dd0dbd87cb119a7471ab31fd121
190.38.201.* 于 2007-08-15 23:13:47发表:
f52646b64dd489737507176411d90e4b http://basket-femminile-serie-b-ischia.flroxk.com/ http://centro-per-l-impiego-la-spezia.flroxk.com/ http://planet-summer-nuda.flroxk.com/ http://bagaglio-mano-aereo-windjet.ddxsak.com/ http://grotta-addaura.zpvztz.com/ http://ente-turismo-salisburgo.akrmtn.com/ http://circuito-di-jerez.zpvztz.com/ http://primario-urologia-austoni.zpvztz.com/ http://poesia-gianni-rodari-uguaglianza.akrmtn.com/ http://capitaneria-di-porto-di-pesaro.zpvztz.com/ f79720dbd018955dfd9068d527cd2031
200.45.246.* 于 2007-07-25 23:53:36发表:
f6f82ceb2a1c28476830ddee45a7d18f http://ottica-geometrica.smtpld.biz/ http://fritto-misto-di-mare-ricetta.ftgmns.biz/ http://umbria-agriturismo-casa.smtpld.biz/ http://mirador-podenzana.zqemjp.biz/ http://danno-all-immagine-morali-psichici-it.zqemjp.biz/ http://mano-fabrizio-ime-unifi.sfupeh.biz/ http://masseria-matera.zqemjp.biz/ http://gioco-simulazione-gratis-download.zqemjp.biz/ http://giudizio-cucina-schiffini.txcbmz.biz/ http://systema-mutuo.ftgmns.biz/ f0bd15bc4c04b02533089147dbde4c5b
66.130.138.* 于 2007-07-25 17:49:28发表:
9e488641f1f6cc24b9a9b8b16f43e5f4 http://trasmettitore-audiovideo.ggjrfj.biz/ http://casa-terreno-coccorino-vendita.ggjrfj.biz/ http://diva-tutto-nuda-figa-rotta.hdywtl.biz/ http://galleria-video-porno-3x2.pzgvuv.biz/ http://costruire-macchina-scoppio.mbgzfn.biz/ http://don-dario-de-stefano-avetrana.ggjrfj.biz/ http://salopette-briko.hdywtl.biz/ http://bluetooh-auricolare.ytxxxk.biz/ http://malattia-riduce-globuli-bianchi.gohktw.biz/ http://potenziometro-12v.gohktw.biz/ bfdd7bec9230a10317341e982495b689
121.55.119.* 于 2007-07-24 22:03:48发表:
ac6051bd5d1943500d647529bac56491 http://moto-guzzi-noleggio.kajgdw.biz/ http://tondo-semilavorato.zibtye.biz/ http://abiti-da-sposi.ygvhik.biz/ http://questa-nostra-grande-storia-d-amore.iuatju.biz/ http://consumo-forno-legna.ygvhik.biz/ http://cassa-jbl-serie-m.tzlnou.biz/ http://incidente-ultra-italiano.tzlnou.biz/ http://collegare-tramite-rete-elettrica-modem-ethernet.enadzh.biz/ http://la-sposa-di-firenze.tzlnou.biz/ http://guerra-di-bosnia.ygvhik.biz/ 69fae163d26a9b1682339a4eb6fc4ad9
66.130.118.* 于 2007-07-23 12:29:32发表:
f32b8edbb80bd900e06a1bda5a340420 http://schuco-infisso.vywyuh.org/ http://manuale-italiano-nero.vywyuh.org/ http://scipero-mezzo-milano.pvaeyo.org/ http://aprire-attivita-kazakistan.jnbwct.org/ http://piantina-di-trento.cqhnnx.org/ http://esercitazione-funzione-matematica-excel.jnbwct.org/ http://associazione-italiana-fisioterapista.cqhnnx.org/ http://vita-tutta-nuova.vywyuh.org/ http://psicologia-delle-folle.pvaeyo.org/ http://consultorio-and-milano-and-orto.hdpwsk.org/ eb89aa2351bfb8dd061b0dc25061dcdb
211.179.111.* 于 2007-07-20 20:17:27发表:
c8007685dddbb233801114ad07f43908 http://stufaalimentatemais.cerfmd.org/art-27-l-689-81/ http://esempiorelazionetirocinio.ghoouy.org/elchim-asciugacapelli/ http://praudine.rozdha.org/tudisco-bottega-d-arte/ http://iniziativaazionecattolica.ghoouy.org/centri-per-l-impiego-scandiano/ http://giocogiocareweb.nfnzro.org/giannutri-isola-giglio/ http://andreaniadrianorieti.cerfmd.org/moto-epoca-cz/ corso arabo padova http://stufaalimentatemais.cerfmd.org/piano-cottura-produzione/ http://passerafica.nfnzro.org/scuola-laboratorio-artistico/ windows vista ita versione trial b8fb7d84153cc5c69600cbe1497734b2
84.123.19.* 于 2007-07-19 11:07:51发表:
2e747d058caa0aec9e71e77b585b4e47 http://disoccupazione-femminile-italia.bkqryo.com/ http://lago-garda-lazise.kvpzig.com/ http://traduttore-inglese-on-line-gratis-inglese.vbglda.com/ http://rumori-pc.uylqdg.com/ http://macchinario-bricchettatrici-legno.kmyeyh.com/ http://calcio-5-juniores.kmyeyh.com/ http://notizia-mercato-juventus.vbglda.com/ http://banca-sanpaolo-imi.kvpzig.com/ http://consolato-brasile.fzhoas.in/ http://ninfa-corso-dei-secoli.iznvge.in/ b8a12f78e2ab8d9c8e5e94f78e975725
190.78.99.* 于 2007-07-17 23:03:01发表:
fda440f33e97a15004be15d45d2d7def http://alexandritegioielleria.ppnxyq.org/personaggio-de-ritratto-dorian-gray/ http://progettazioneautocad3d.jpwypc.org/giovanni-boschetto/ http://festabimbomilano.nxaqjj.org/camping-park-cavriglia/ http://calendarionomedeisanto2007.copdkj.org/salento-ionio/ http://juventusallieviregionaleit.vniybd.org/scherzo-di-carnevale/ avv maurizio miceli palermo topo africano immagine http://lupodellasteppa.nxaqjj.org/materazzi-fatto-gol-gioconda/ santa brigida firenze foto medusa caravaggio 8ea4fcdde1a965ef95e68187f350c6f6
88.161.114.* 于 2007-07-17 16:30:38发表:
http://06ab95047c94ecc1dbb102c1eb3e1774-t.xkktxb.org 06ab95047c94ecc1dbb102c1eb3e1774 http://06ab95047c94ecc1dbb102c1eb3e1774-b1.xkktxb.org 06ab95047c94ecc1dbb102c1eb3e1774 http://06ab95047c94ecc1dbb102c1eb3e1774-b3.xkktxb.org 8d1f2bfe3cbc5359328d95464cab8b7c
211.244.27.* 于 2007-07-16 14:08:07发表:
62501eb71986b652e6a603929ad514df http://macchina-profilo-polistirolo.wdexfm.biz/ http://scarpa-uomo-tacco.gwedas.com/ http://poesia-sulla-passione.nioqlj.com/ http://trazioni-rachide-cervicale.xxmndb.biz/ http://roma-concerto-madonna.fuypfr.biz/ http://legge-191-30-07-2004.xmjviq.com/ http://tartufo-langhe.fuypfr.biz/ http://istruzioni-modello-unico.fuypfr.biz/ http://elegia-gray.ynpojb.biz/ http://mele-golden.gvjcaf.com/ 8cff813cd5cdf93d908a9e43c4704dad
190.38.82.* 于 2007-07-15 06:15:32发表:
271ed89fa255f1ae1a701ae53f921554 http://ufficiosviluppo.mqyawz.org/solo-case-belle-a-torino/ http://sirosbraci.mqyawz.org/acciaio-ringhiera/ nino lacagnina pastai modena http://serrandaantistrappoantitaglio.kqjhpm.org/satira-and-papa/ http://soapbeautifulitalia.vozulo.org/gara-golf/ auto usata wolvagen http://scagliadragopokemon.mqyawz.org/fellette-romano-d-ezzelino/ http://usbcomputeraccessorio.vozulo.org/prenotare-cenone-capodanno-campania/ parcheggio metallico a875aa102e91579b074fe29fa7a13e81
83.255.50.* 于 2007-07-13 23:04:42发表:
4f21bb749ee919b5bffda1c1909b2f6f http://eletrico-schema-tecnoalarm.lvqits.org/ http://studiare-spagnolo-roma.wuzzme.org/ http://it-heroscape-miniatura-fantasy.mhjqva.org/ http://pasta-fatta-casa-robot.hihuft.org/ http://appartamento-affitto-romania.wuzzme.org/ http://gita-scolastica-a-praga.tttfhp.org/ http://michela-damasco.wuzzme.org/ http://stivale-uomo-levi-27s.mpxxqr.org/ http://albergo-due-stelle-portogallo.wuzzme.org/ http://luigi-bobba.benlzg.org/ 8c2a5fabd273020cebfaea52010ee4bb
90.19.130.* 于 2007-07-12 16:20:34发表:
7e2a0a0e8a00466bbb51ea6d896f6f6a http://soluzioni-prima-prova.udzjxi.org/ http://funziona-decoder-sky.egcngx.org/ http://amico-museo-milano.gbymyg.org/ http://asn-amico-scala-n.bmfcxx.org/ http://1.tijrje.org/dynamic/common/cgi-bin/d.exe?ID=498&HTM=products%5Capertura_prodotti%5Cproduct_results.htm http://testo-olimpiadi-fisica.bmfcxx.org/ http://lepre-bianca-asiago.gbymyg.org/ http://immagine-sexy-cate-blanchett.orjndo.org/ http://commissione-esame-avvocato-catanzaro.rtistm.org/ dynamic d8d97f68bc274489b372d34e17b3a169
66.130.118.* 于 2007-07-11 09:21:06发表:
74f9dde25c1a90679dcd87c127e0c287 http://7.ska4aj.net/pagina67.html http://18.ska4aj.org/pagina43.html pagina22.html http://9.ska4aj.org/pagina36.html http://4.ska4aj.org/pagina41.html http://9.ska4aj.net/pagina54.html http://6.ska4aj.org/pagina12.html http://2.skachaj.org/pagina20.html http://22.ska4aj.org/pagina41.html http://4.ska4aj.org/pagina86.html 53f688e2d0ae01a48f96ad8f8181d4f6
84.123.20.* 于 2007-07-10 00:28:30发表:
d71fd57398e88e32b2d14578d1eab386 http://dsa-minambiente.wywplu.org/ http://entro-23.gtimmg.org/ http://supervisori-del-tirocinio.dkzfpf.org/ http://spese-ristorante-albergo.wywplu.org/ http://descrizione-minnie.fyicly.org/ http://assunzione-med-maxicinema.wywplu.org/ http://stadio-s-nicola.fyicly.org/ http://eurostat-dati.gtimmg.org/ http://inno-nazionale-inglese.uvrseh.org/ http://mostra-paul-klee-roma.fyicly.org/ 9b45a0bdde2cb75e21785d72ae4741f7
89.245.67.* 于 2007-07-08 14:57:11发表:
3ed449946ffbd739f5474437351c95ab http://ulcera-di-martorell.djrtlt.org/ http://battaglioni-alpini.rjrigb.org/ http://mercedes-smart-via-zoe-fontana-220.jcddfk.org/ http://corrispondenza-taglie-americane.djrtlt.org/ http://cancelli-elettrici-scorrevoli.jcddfk.org/ nuova normativa adozione 2006 http://nuovo-offerta-roberto-abate-spa.rjrigb.org/ http://delta-plastik.jcddfk.org/ http://porcata-si.djrtlt.org/ http://espositori-pavimenti.jcddfk.org/ cda9cd96507def8918671c23330ec82a
24.37.39.* 于 2007-07-07 08:59:10发表:
30fa0e9a0b97534f24e2583e4d333e5c http://giochips2onlineonline.eduein.org/hotel-castelfranco-sopra/ http://barbiere-maria-sole.ylbtbt.org/ http://appartamenti-in-affitto-estivi.bubajm.org/ http://coltivare-pianta-medicinale.vtjfdr.org/ http://quandosirimaneincinta.eduein.org/servizio-terapia-occupazionale-piemonte/ http://lettorepodmini.skzbln.org/pugliese-cars-genova/ http://apulian-destruction.zikywm.org/ http://leeryanponza.eoklgx.org/broker-insurance-consulenza/ http://cutretorino.eduein.org/roma-capoccia-testo/ http://antico-frantoio-panicale.zikywm.org/ 268af5f4294519a6b3a74dbb7c6fdf14
190.31.48.* 于 2007-07-02 10:22:31发表:
10e14f6753d0a905a282f318fbd14389 http://istituto-statale-d-arte-di-palermo.dtifhu.org.in/ http://software-x-creare-menu-hard-disk.qttkja.org.in/ http://3-domenica-avvento-preghiera-dei-fedeli.oaxzml.org.in/ http://mac-gregor-intervista-manager-lavoro.ooqqld.org.in/ http://offerta-viaggio-nozze-luglio-2007.mksqkw.org.in/ http://lettera-alfabeto-a-punto-croce.ooqqld.org.in/ http://ragazzina-tetta-al-vento-nuda.qttkja.org.in/ http://festa-capodanno-locale-milano-marittima.qttkja.org.in/ http://hotel-5-stella-monaco-baviera.mksqkw.org.in/ http://prestito-personale-contratto-tempo-determinato.omulsq.org.in/ 8a848390101f52442387e8806988b168
86.121.176.* 于 2007-07-01 06:10:33发表:
d02aa5100482e772ef746ea473302a6e http://lapraticadipoliziagiudiziaria.zawphd.org/ http://deagostinigalleriadarte.pkjtsb.org/ http://www.lecomponentedellamacchinafotografica.gdedkb.org/ http://granuccinetlabirintoswfurl.tgydoj.org/ http://determinazioniautoritavigilanzalavorolavoropubblico.ocuokj.org/ http://stampanteepsonstylusphoto1290s.opojum.org/ http://cristianesimocausafineimperoromano.tgydoj.org/ http://usl6serviziosanitarioterminiimerese.qrxvou.org/ http://garagolfclubzoate2006risultato.pyvila.org/ http://illeoneelalepre.gdedkb.org/ 246f5573f09449eb624440463d221fca
190.38.177.* 于 2007-06-30 03:05:49发表:
03bf45a415f7e3572bbcf002e12adb78 http://video-professoressa-hard-scuola-nova.xflxat.org/ piantina stazione bologna fino motorshow http://si-usa-cerotto-anticoncezionale-transdermico.oensnx.org/ http://personaggiominoredeipromessosposo.uqjhgg.org/schema-impianto-scarico-acqua-reflue-civile/ http://giochidicarteonline.ojbsss.org/biciclette-elettriche-a-pedalata-assistita/ contenuto file testo variabile dos mazzoni gruppo global service bologna corso illuminotecnica 2007 emilia romagna http://leintimeconfessionidiun.ejiufa.org/processore-pentium-4-775-3-4/ mostra pittore roma novembre 2006 242a24eaaf2d8b6d338dfc62711422de
62.42.22.* 于 2007-06-29 02:30:13发表:
d089941e869211868350843bae85754e http://ilpiaceredannunzioriassunto.fxbzoa.org/trucchi-deus-ex-invisible-war/ http://unicreditbancacontocorrenteonline.fxbzoa.org/calcio-balilla-immagine-azione-gioco/ http://concessionaria-trattore-usato-new-holland.yigqdu.org/ http://vita-di-galileo-di-b-brecht.negvzz.org/ http://poesia-d-autore-dialetto-siciliano.qkidvr.org/ http://ilpiaceredannunzioriassunto.fxbzoa.org/modellino-galeone-san-giovanni-battista/ calibro 5 56 x 45 nato http://venditaingrossotovagliolocartanapoliprovincia.ujgyzy.org/palazzo-conto-val-d-orcia/ http://parrocchia-maria-immacolata-pieve-emanuele.yigqdu.org/ http://the-war-song-cultura-club-midi.meoprr.org/ 24974b376644b5034250f73cecc2d1d6
200.109.136.* 于 2007-06-27 22:53:54发表:
3583c4c9478e43e3846193299ac89311 http://seneca-lettera-lucilio-vita-attimo.oulmpk.org/ http://casa-studente-mit-alvar-aalto.oulmpk.org/ http://comune-di-santa-croce-camerina.tkanof.org/ http://de-amicitia-de-senectute-cicerone.zqlmym.org/ http://ospedale-san-luigi-orbassano-torino.bewzmp.org/ http://vendita-on-line-articolo-animale.vpvnno.org/ http://carlo-romeo-rai-san-marino.jyrxnc.org/ http://cascata-niagara-ont-brock-plaza-hotel.fhbwem.org/ http://sostituzione-vasca-da-bagno-veneto.bewzmp.org/ http://krabby-kid-negozio-vestito-metal-milano.wknmyv.org/ dff758ad4d024eb641677108bbbbea97
200.8.182.* 于 2007-06-26 20:56:07发表:
f684d502db783980c0931231a73d8dde http://centrobenesseremonticellobza.mutsoq.org/legna-ardere-friuli-venezia-giulia/ 8 mm delitto a luci rosse http://la-malora-di-beppe-fenoglio.euhlah.org/ http://jane-austen-ragione-e-sentimento.ozetoz.org/ http://www-viaggio-in-germania-de.ozetoz.org/ spiegazione costruzione arma armatura gioco ruolo http://istituto-suora-via-feltro-milano.pidgzp.org/ http://va-fra-trasporto-nola-it.euhlah.org/ http://agenzia-prestito-finanziamento-provincia-foggia.taryvn.org/ http://processore-amd-athlon-64-3800.ynkpgu.org/ ac74524788537f28ae4c90c357df5e97
89.156.51.* 于 2007-06-25 20:01:51发表:
4f935cebf3b8b486a69bd16ce98deb6e http://ricettatortamorbidaallimone.wyselb.org/luis-miguel-ragazzi-di-oggi/ http://gratis-video-sesso-studentessa-italiana.xfnqjv.org/ mansioni ingegnere capo bene culturale ristorante san benedetto ascoli fermo marche http://profilo-professionale-tecnico-prevenzione-ambiente.fcgpay.org/ http://produzione-copri-interruttore-silicone-gruppo-elettro.wlwpdt.org/ http://gratis-film-ed-effetto-sonori.ddbpnz.org/ http://foto-manifestazione-17-11-2006-campobasso.bvthee.org/ http://processo-sol-gel-silice-colloidale.fcgpay.org/ http://bollo-auto-euro-1-2-3.ddbpnz.org/ 245153f8fc5ca6b7c7f1325ac3918a81
85.136.164.* 于 2007-06-24 18:31:23发表:
c6c26618f685a5dea0d19515f440c119 matrimonio con ragazze dell est http://cartone-animato-cristina-d-avena.nbjnpk.org/ http://normativa-materia-socio-assistenziale-regione-toscana.fdkwms.org/ programmi per scoprire le password http://fantasticacoppiacomodinonocemassellobarocchi.uwqbko.org/peg-perego-prima-pappa-seggiolone/ http://theoccolonnasonora.yiatbe.org/majestic-dvx-993-rs-usb/ pokemon quarta generazione diamante perla http://giochidicartedascaricare.fmyuaf.org/san-michele-arcangelo-storia-leggenda/ http://dublinoshanahansonthegreen.shopio.org/graduatoria-vincitori-concorso-allievi-carabiniere/ http://se-il-malato-e-immaginario.nbjnpk.org/ 452262cf741011e1ab8f1c4bc30a15a9
85.201.51.* 于 2007-06-23 18:11:18发表:
efe52dac1b238c09e0b0d4b1ee24a765 http://numeroleggeriduzione50enasarco.knqtun.org/suoneria-nokia-gratis-da-comporre/ http://esame-di-stato-per-geometri.mjhbun.org/ http://decreto-legge-262-3-ottobre-2006.xprlxl.org/ http://numeroleggeriduzione50enasarco.knqtun.org/tutto-ostello-lobo-inn-tulum/ casa affitto piemonte montagna capodanno http://termine-presentazione-condono-fiscale-2004.kesdip.org/ http://scenario-virtuale-italiano-fs-2002-download.mjhbun.org/ salita inferiore s anna genova http://sicurezza-d-lgs-626-94.vjsvzo.org/ http://sesso-tra-zia-e-nipote.wyhedi.org/ 9552dfe41baaa9f17aeb9f3e17cab334
70.83.58.* 于 2007-06-22 15:17:41发表:
a297160598e80e30b60d82c7e098697b testo mille giorno claudio baglioni http://programma-per-gestire-i-tuoi-soldo.nakusq.org/ http://filtro-aria-per-alfa-147.jvvvdm.org/ http://incidente-parma-reggio-13-febbraio-2003.ojfmto.org/ gestione conto ente cassa risparmio firenze http://concorso-azienda-ulss-n-10.zivzdt.org/ http://temperatura-acqua-piscina-bambino-disabile.ojfmto.org/ borsa monaco principato consulenza investimento http://sistema-catalogazione-dei-libro-biblioteca.ytwviq.org/ http://foto-donna-nera-porca-calore.myniqy.org/ 8d0a7cd2b17a8f039de7dab06d2ae220
190.22.19.* 于 2007-06-21 10:08:09发表:
29c956107b5a00173596b81fb564c221 http://joint-task-force-pc-game-giudizio.lvnrii.org/ http://fotografia-seconda-guerra-mondiale-formia.wdrksm.org/ http://nomina-direttore-lavoro-opera-cemento-armato.rfnfwr.org/ http://divano-letto-legno-massello-roma.axbzdu.org/ http://accordo-piano-high-school-musical.tiabis.org/ http://voli-da-barcellona-per-madrid.tiabis.org/ http://nuovo-single-io-canto-laura-pausini.axbzdu.org/ http://silvia-de-bianchi-rifondazione-comunista-indirizzo.kzsfzp.org/ http://vice-presidente-camera-dei-deputato.kzsfzp.org/ http://negozio-macelleria-cesano-boscone-milano.wdrksm.org/ 3281355dcdf7961a81348339c85b8f61
201.235.131.* 于 2007-06-20 08:13:36发表:
da45af70990f54a26c9827feed1e7047 http://site-www-sfondifree-it-paesaggio-invernale.ykjmka.org/index.htm index.htm http://manuale-ecoscandaglio-garmin-fishfinder-120.oizdoo.org/index.htm index.htm index.htm http://posta-it-online-dovequando-paccocelere3.qafifx.org/index.htm index.htm http://trucchi-the-sims-2-playstation.ehugfo.org/index.htm http://hokuto-no-ken-gioco-ruolo.sjfxge.org/index.htm index.htm a95af8f224b8c9334b8122ef4b45f39a
190.136.199.* 于 2007-06-19 06:58:14发表:
3134918299958588c3078163ed10cdcd http://contratto-lavoro-ente-locale-it.xfjpsj.org/index.htm http://frase-film-jack-frusciante-uscito-gruppo.nudmpy.org/index.htm http://take-that-testo-canzone-patience.aunbvm.org/index.htm index.htm http://bando-gara-refezione-scolastica-2006.fyeclo.org/index.htm http://altec-lansing-altoparlante-inmotion-ipod.xfjpsj.org/index.htm index.htm index.htm http://it-group-yahoo-com-group-isabellatroia.aunbvm.org/index.htm http://commissariato-di-governo-emergenza-rifiuti-campania.fyeclo.org/index.htm b8055c662679464e43a32265312932f9
190.16.17.* 于 2007-06-18 06:19:43发表:
4401d9862877ddd667430f89de407402 index.htm http://parola-canzone-fabrizio-de-andre.ogttfu.org/index.htm index.htm http://risultato-tempo-reale-campionato-australiano.ovnfxu.org/index.htm http://veraclub-playa-1920-villaggio-veratour-varadero.esqhid.org/index.htm index.htm http://hotel-diana-madonna-di-campiglio.esqhid.org/index.htm http://ecm-personale-infermieristico-dicembre-2006-palermo.ovnfxu.org/index.htm http://vendita-online-supporto-dvd-dvd-r.glzaqv.org/index.htm http://vendita-on-line-abbigliamento-sci-bambini.ogttfu.org/index.htm b3e1aeebf15010c0e48986d09609c4eb