所以觉得有必要记录一下,用以方便今后需要做这些东西的同志们。
硬件环境:C4 2.6/ 256M/ 80G IDEHD/ intel 82801集成网卡。
软件环境:Debian sarge 3.1r0 netinst
用到的包:
ppp-2.4.3.tar.gz
ppp-2.4.3-mppe-mppc-1.1.patch.gz
linux-2.4.30.tar.bz2
linux-2.4.30-mppe-mppc-1.3.patch.gz
rp-pppoe-3.5.tar.gz
mysql-4.1.12.tar.gz
freeradius-1.0.4.tar.gz
其中的 ppp-2.4.3.tar.gz 在http://ppp.samba.org/ 可以下载到
linux-2.4.30.tar.bz2 在 http://www.kernel.org/ 可以下载到
ppp-2.4.3-mppe-mppc-1.1.patch.gz 和 linux-2.4.30-mppe-mppc-1.3.patch.gz
可以在 http://www.polbox.com/h/hs001/ 下载到
rp-pppoe-3.5.tar.gz 在 http://www.roaringpenguin.com/penguin/open_source_rp-pppoe.php
可以下载到
mysql-4.1.12.tar.gz 可以在 http://dev.mysql.com/ 下载到
freeradius-1.0.4.tar.gz 可以在 http://www.freeradius.org/ 下载到。
网络情况:
IP: 192.168.1.123
mask : 255.255.254.0
gateway: 192.168.0.1
dns: 192.168.0.2
下面开始:
我的系统一开始就给我装了ppp和pppoe,为了自立更生,我还是把他们删掉了,debian下做这个坏事比较方便:
# apt-get remove ppp pppconfig pppoe pppoeconf
1、重编译内核,加入PPP和PPPOE的支持;
首先解压内核源码,然后把MPPC+MPPE的补丁打上。之后就make menuconfig , 加入以下支持:
code maturity level options---->;
[*]prompt for development and/or incomplete code/drivers
networking options---->;
[*]packet socket
[*]packet socket:mmapped io
network device support---->;
[*]PPP multilink support (EXPERIMENTAL)
character devices---->;
[*]non-standard serial port support
[M]hdlc line discipline support
Cryptographic options--->;
[M]SHA1 digest algorithm
[M]ARC4 cipher algorithm
按照上面的配置重新编译内核,然后安装内核,并用它启动完毕后,备用。
2、创建一个/dev/ppp 设备文件,这是ppp拨号所必需的。
# mknod --mode=664 /dev/ppp c 108 0
3、确保 /etc/modules.conf 里面有如下几行:
alias char-major-108 ppp_generic
alias tty-ldisc-3 ppp_async
alias tty-ldisc-13 n_hdlc
alias tty-ldisc-14 ppp_synctty
alias net-pf-24 pppoe
4、安装 ppp-2.4.3.tar.gz
解压缩之后,打上ppp-2.4.3-mppe-mppc-1.1.patch.gz 补丁,然后编译安装:
# tar zxvf php-2.4.3.tar.gz
# gunzip ppp-2.4.3-mppe-mppc-1.1.patch.gz
# patch -p0 < ppp-2.4.3-mppe-mppc-1.1.patch
# cd ppp-2.4.3
# ./configure
# make
# make install install-etcppp
# chmod u+s /usr/local/sbin/pppd
# cd ..
5、安装rp-pppoe
# tar zxvf rp-pppoe-3.5.tar.gz
# cd rp-pppoe-3.5/src
# ./configure --prefix=/usr/local --enable-plugin=../../ppp-2.4.3
# make
# make install
6、把生成的rp-pppoe.so/radius.so等模块复制到ppp的配置目录里
# cp /usr/local/lib/pppd/2.4.3/* /etc/ppp/plugins
7、配置 /etc/ppp/options
# cat /etc/ppp/options
lock
crtscts
nobsdcomp
nodeflate
nopcomp
8、配置 /etc/ppp/pppoe-server-options
# cat /etc/ppp/pppoe-server-options
auth
require-chap
default-mru
default-asyncmap
lcp-echo-interval 60
lcp-echo-failure 5
ms-dns 192.168.0.2
ms-dns 61.132.90.92
noipdefault
noipx
nodefaultroute
noproxyarp
noktune
10.0.0.1:10.0.0.200
netmask 255.255.255.255
logfile /var/log/pppd.log
* 这里 192.168.0.2 和 61.132.90.92是我使用的dns
* 10.0.0.1:10.0.0.200 是客户端分配的IP区间
9、设置密码文件 (先实现文本文件密码认证)
# cat /etc/ppp/chap-secrets
hefish * 123456 *
10、启动pppoe拨入服务:
/usr/local/sbin/pppoe-server -k -I eth0 -L 192.168.1.123 -R 10.0.0.1 -N 128
* -k 使用PPP的kernel mode
* -I eth0 启动pppoe拨号接入的网卡设备
* -L 本地地址IP
* -R 客户端起始IP
* -N 最大并发连接数
11、启动IP转发,使客户端可以通过pppoe服务器访问外网。
# echo 1 >; /proc/sys/net/ipv4/ip_forward
# iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE -s 0/0
启动之后就可以使用PPPOE拨号接入了。
客户端可以采用win2000+raspppoe或者WinXP自带的pppoe,我用的win2003+raspppoe就不行,改用win2003自带的PPPOE就好了,想必也是软件压缩的问题,按理说我打了MPPC补丁,应该是支持软件压缩了,这个问题以后再说吧。
如果拨号之后无法访问拨号服务器,那就把客户端的PPP设置里面的启用软件压缩去掉,即可。
先休息一下。稍候继续。
---------------------------------------------------------
上回书说到,我们用ppp+rp-pppoe架设了 pppoe的拨号服务器,采用了文本文件的认证方式,这回我们要说ppp如何使用radius来认证,radius认证的好处我就不多说了,一方面支持数据库,另一方面支持计费。
1、先装mysql,这就不多说了;
2、把freeradius安装一下;
freeradius是个很周到的东西,考虑到了n多种后台,什么oracle,mssql, ldap都支持,mysql更是不在话下。没说的,就安装:
# tar zxvf freeradius-1.0.4.tar.gz
# cd freeradius-1.0.4
# ./configure --prefix=/usr/local/freeradius
# make
# make install
有一点要说明,freeradius需要openssl 库,所以如果系统里没安装的话,还是要事先安装一下的。
3、配置freeradius;
1) 修改 clients.conf
# vi /usr/local/freeradius/etc/raddb/clients.conf
client 127.0.0.1 {
secret = 123456
shortname = localhost
nastype = other
}
这里secret = 123456 表示从127.0.0.1这个客户端连接radius服务所需要用的密码。
2) 修改 naslist ,加入:
# vi /usr/local/freeradius/etc/raddb/naslist
localhost local portslave
3) 编辑 users ,加入用户: (这个用户是保存在文本文件里的,做测试用)
# vi /usr/local/freeradius/etc/raddb/users
hefish Auth-Type:=local,
User-Password==123456,
Service-Type = Framed-User,
Framed-Protocol = PPP,
Framed-IP-Address = 10.0.0.2,
Framed-IP-Netmask = 255.255.255.0
4) 启动radiusd,测试radiusd服务:
# /usr/local/freeradius/sbin/radiusd -X
# /usr/local/freeradius/bin/radtest hefish 123456 localhost 0 123456
如果有类似 Access-Accept的字样出现,则表示radius开始工作了。下一步就是要培植radiusd用mysql来认证。
5) 先在mysql里面创建数据库;
# /usr/local/mysql/bin/mysqladmin -u root -p create radius
# cd freeradius-1.0.4/src/modules/rlm_sql/drivers/rlm_sql_mysql
# /usr/local/mysql/bin/mysql -u root -p radius < db_mysql.sql
6) 编辑 radius.conf 使其支持mysql认证;
# vi /usr/local/freeradius/etc/raddb/radius.conf
authorize {
preprocess
chap
mschap
suffix
sql
...
}
accounting {
...
sql
...
}
7) 编辑 sql.conf ,使radius可以访问mysql
# vi /usr/local/freeradius/etc/raddb/sql.conf
sql {
driver = "rlm_sql_mysql"
server = "localhost"
login = "root"
password = "mysql的密码"
radius_db = "radius"
// 剩下的配置就默认吧 (如果您要做用户帐号/网卡MAC/电话号码绑定之类的东西,那就例外,可以改下面的配置)
}
8) 向数据库里增加一些数据;
# /usr/local/mysql/bin/mysql -u root -p radius
先加入一些组信息:
insert into radgroupreply (groupname,attribute,op,value) values ('user','Auth-Type',':=','Local');
insert into radgroupreply (groupname,attribute,op,value) values ('user','Service-Type','=','Framed-User');
insert into radgroupreply (groupname,attribute,op,value) values ('user','Framed-IP-Netmask','=','255.255.255.255');
insert into radgroupcheck (groupname, attribute, op, value) values ("user", "Auth-Type", ":=", "Local");
然后加入用户信息:
insert into radcheck (username,attribute,op,value) values ('heyu','User-Password','==','123456');
然后把用户加到组里:
insert into usergroup(username,groupname) values('heyu','user');
9) 为了让radius能正确地调用mysql,还要指定一下库的位置:
# echo /usr/local/freeradius/lib >;>; /etc/ld.so.conf
# ldconfig
10) 启动radiusd , 做一下测试:
# /usr/local/freeradius/sbin/radiusd -X
# /usr/local/freeradius/bin/radtest heyu 123456 localhost 0 123456
看到 Access-Accept 之类的字样就表示OK了。 这时可以正式启动radiusd
# /usr/local/freeradius/sbin/radiusd
4、配置pppd,使其和radius一起工作;
1) 建立一个 /etc/ppp/radius 目录,用来存放radius的配置,然后把ppp-2.4.3里面的radius相关配置复制过来:
# mkdir /etc/ppp/radiuds
# cd ppp-2.4.3/pppd/plugins/radius/etc
# cp * /etc/ppp/radius
2) 编辑 /etc/ppp/options , 加上radius 支持
# vi /etc/ppp/options 加上下面两句
plugin /etc/ppp/plugins/radius.so // 注意pppd安装时候radius.so的位置
radius-config-file /etc/ppp/radius/radiusclient.conf
3) 编辑 radiusclient.conf 文件,如下:(主要是修改一些默认的文件路径,其他没什么要改的)
# cat /etc/ppp/radius/radiusclient.conf
auth_order radius
login_tries 4
login_timeout 60
nologin /etc/nologin
issue /etc/ppp/radius/issue
authserver localhost:1812
acctserver localhost:1813
servers /etc/ppp/radius/servers
dictionary /etc/ppp/radius/dictionary
login_radius /usr/local/sbin/login.radius
seqfile /var/run/radius.seq
mapfile /etc/ppp/radius/port-id-map
default_realm
radius_timeout 10
radius_retries 3
login_local /bin/login
4) 编辑 servers ,设定radius 服务器的位置
# cat /etc/ppp/radius/servers
localhost 123456 // 这里的123456是我前面设置的访问radius服务器的密码
5) 编辑 dictionary ,修改一些路径设置,主要是最后一个dictionary.microsoft 的路径设置
# vi /etc/ppp/radius/dictionary
..
...
INCLUDE /etc/ppp/radius/dictionary.microsoft
6) 可以拨号看看了,用数据库里面的帐号登录看看,应该是能登录了。所有的登录记录,都会保存在mysql的radacct表里面,统计十分方便。
81.182.221.* 于 2007-09-07 02:34:57发表:
c8a18247f310a4fa927a99801000ae45 http://associazione-distilleria.yavpvy.org/ http://foto-casalinga-nuda-amamtoriali.hhidlx.org/ http://accessorio-c510.oxibnl.org/ http://forsakenpcimmagine.ipywer.org/origine-camorra/ http://libro-soci.ufftiy.org/ http://fotogratissessobari.ukcvbo.org/trattamento-olio/ http://estrazione-lotto-15-04-06.odiioj.org/ http://vygis-errori.hhidlx.org/ http://leccapiede2005gratis.dlqpew.org/ansa-meteo-previsioni/ http://sappada-azienda-di-soggiorno.yavpvy.org/ ef5da0821261872f3a177fbd4ce2e9fc
69.118.150.* 于 2007-09-06 09:19:46发表:
ba9f3cfb4b932df4dedb4a082c0aa3a9 http://www.international.ucf.edu/myphp/community/viewtopic.php?t=124 http://iris.lib.virginia.edu/phpBB2/viewtopic.php?t=7689 http://transatlantic.ipo.asu.edu/forum/viewtopic.php?t=208 http://payson.tulane.edu/techeval/forums/viewtopic.php?t=74 http://payson.tulane.edu/techeval/forums/viewtopic.php?t=74 http://www.rstm.edu/phpBB/viewtopic.php?t=1450 http://www.international.ucf.edu/myphp/community/viewtopic.php?t=124 http://www.cide.au.edu/audasaforum/viewtopic.php?t=458 http://www.cide.au.edu/audasaforum/viewtopic.php?t=458 http://www.rstm.edu/phpBB/viewtopic.php?t=1450 d950163e2bc04fe30175aa17834ab13d
201.83.91.* 于 2007-09-05 20:26:23发表:
71ce6efa737d49556767f6264abf8ff7 http://www.mat.ucsb.edu/CUI/viewtopic.php?t=1142 http://www.mat.ucsb.edu/CUI/viewtopic.php?t=1142 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=2656 http://www.mat.ucsb.edu/CUI/viewtopic.php?t=1142 http://forum.jalc.edu/phpBB2/viewtopic.php?t=2267 https://www.cslu.ogi.edu/forum/viewtopic.php?t=2657 http://www.mat.ucsb.edu/CUI/viewtopic.php?t=1142 https://www.cslu.ogi.edu/forum/viewtopic.php?t=2656 db62d9d137e7999ef0c8bbd27991ea41
70.162.4.* 于 2007-09-05 06:11:08发表:
5190f869d023f425f94b904910706d68 http://fiorista-comune-rho.dfmviz.info/ http://roma-domus-hotel-ponzano.dfmviz.info/ http://grande-cazzo-com.dfmviz.info/ http://concorso-farmacie.dfmviz.info/ http://rapporto-capricorno.dfmviz.info/ http://celebrita-oops.dfmviz.info/ http://domenico-fortunato.dfmviz.info/ http://zona-carenti-pediatria-friuli-2006.dfmviz.info/ http://noleggio-macchina-intolleranze.dfmviz.info/ http://verbi-irregolari-di-inglese.dfmviz.info/ 21817dd0dbd87cb119a7471ab31fd121
193.77.229.* 于 2007-08-16 02:44:09发表:
ddbeadc4c1b9e2ebb3244db4c8e76990 http://telefono-mobile-securizzato.zpvztz.com/ http://voli-su-cagliari.ddxsak.com/ http://olio-colza-multijet-alfa.ddxsak.com/ http://park-hotel-spotorno.ddxsak.com/ http://matrice-nashuatec.zpvztz.com/ http://simba-il-leone.flroxk.com/ http://cassate-siciliane.flroxk.com/ http://cavo-usb-com.flroxk.com/ http://comune-esenti-ici.zpvztz.com/ http://natale-stencil.akrmtn.com/ f79720dbd018955dfd9068d527cd2031
123.215.53.* 于 2007-07-26 01:20:07发表:
51f3e5cea36b42e94090199eedfcf55b http://scheda-paola-perego.ftgmns.biz/ http://come-funziona-un-lettore.smtpld.biz/ http://acquisto-nike-shox-nz.sfupeh.biz/ http://personale-catg-ente-locale.ftgmns.biz/ http://affiche-galleria.fmyrxs.biz/ http://ballerina-classica.fmyrxs.biz/ http://letteratura-italiana-novecento.ftgmns.biz/ http://naturally-speaking-dizionario-spagnolo-download.ftgmns.biz/ http://montepaschi-virtus-siena.cuxojo.biz/ http://testo-nelly-furtado-all-good-things.smtpld.biz/ f0bd15bc4c04b02533089147dbde4c5b
66.130.138.* 于 2007-07-25 19:13:16发表:
48088740a3c8b7003345bd5619f1de74 http://scarabeo-giochi.joyubb.biz/ http://imparo-leggere-scrivere.hdywtl.biz/ http://gonna-eleganti-donna.joyubb.biz/ http://elenco-aziende-agricole.joyubb.biz/ http://ventiduesima-settimana-di-gravidanza.mbgzfn.biz/ http://yasmin-hohenstaufen.ytxxxk.biz/ http://prestito-rivoli.ytxxxk.biz/ http://dlgs-59-2004.ytxxxk.biz/ http://neonato-ospedale.hdywtl.biz/ http://galleria-foto-fiori.pzgvuv.biz/ bfdd7bec9230a10317341e982495b689
82.255.247.* 于 2007-07-24 17:52:01发表:
d66ff7329ea89bd6ca7cef0a88d8f3df http://vip-voice-albacom.kajgdw.biz/ http://previsione-meteo-dicembre-2006-roma.tzlnou.biz/ http://malga-ciapela-neve.iuatju.biz/ http://fante-da-picche.zibtye.biz/ http://strategia-globale-com.enadzh.biz/ http://lavoro-stradale-piano-sicurezza-filetype-pdf.zibtye.biz/ http://mutuo-x-comprare-casa-all-estero.ppdpwx.biz/ http://prestito-santo-stefano-lodigiano.iuatju.biz/ http://foto-porno-attrice-italiana.enadzh.biz/ http://salvatore-filangieri.zibtye.biz/ 69fae163d26a9b1682339a4eb6fc4ad9
201.78.145.* 于 2007-07-23 08:22:27发表:
637f81784b6b5748a9a4c4ac13ab0833 http://animale-fiaba.pvaeyo.org/ http://meteo-montecchio.vywyuh.org/ http://rivenditore-refrigiwear-roma.cqhnnx.org/ http://oggetto-d-antiquariato.gbdrme.org/ http://aggiornamento-gps-nokia-ld-3w.mnkcbe.org/ http://buon-pesce-venezia.hdpwsk.org/ http://foce-fiume-belice.gbdrme.org/ http://i-nomi-piu-belli.gbdrme.org/ http://conservatoria-dei-registro-immobiliare-latina.jnbwct.org/ http://www-meteosvizzera.hdpwsk.org/ eb89aa2351bfb8dd061b0dc25061dcdb
190.78.22.* 于 2007-07-20 16:20:31发表:
d115906570acf924b9e85e90722b28fc la produzione cinematografica http://truccothesimspetplaystation2.chohqh.org/sedia-e-sedia-it/ http://borsedadonna.ghoouy.org/filmin-rete-gratis/ http://fabbiimola.cerfmd.org/gif-macchine/ http://staticapitaledellafrica.rozdha.org/software-navigatori-satellitari/ http://pitturaadoliotecnicafiorentina.pykkxx.org/lettera-alfabeto-per-tatoo/ http://soluzionepcgothicii.qemqrg.org/configurazione-dns/ http://polietileneincastro.chohqh.org/accettazione-dei-proprio-limite/ http://clinicasalessandroroma.pehabe.org/codec-indeo-corrente/ http://iniziativaazionecattolica.ghoouy.org/crescina-ricrescita/ b8fb7d84153cc5c69600cbe1497734b2
190.75.80.* 于 2007-07-19 06:51:56发表:
4a77cbe55a1dee4a9e02a66d3b09fe22 http://alessandra-napoli-mario-pagano.aoknmm.in/ http://il-grillo-verde.miwcjz.com/ http://grammatica-greca.qeshtw.in/ http://gratis-enciclopedia-italiano.iznvge.in/ http://730-f24-partita-iva.iznvge.in/ http://asm-taormina.licoxi.in/ http://lineage2-utopia.qeshtw.in/ http://russe-ragazze.kmyeyh.com/ http://marchesini-anna.licoxi.in/ http://foto-gratis-ragazza-fanno-pipi.iznvge.in/ b8a12f78e2ab8d9c8e5e94f78e975725
218.169.75.* 于 2007-07-17 18:55:47发表:
62f7027bef74ced514e9fd5c7f591c4e richiesta casellario http://udineseprimavera.lgyeas.org/centro-assistenza-elettrodomestico-ariete/ http://progettazionedicircuiti.eebsig.org/yashal-di-elisa-midi/ valore giuridico yoga firenze radio fm stereo portatile tessitura marinoni mozzate http://creditoimpostafinanziara2007.nxaqjj.org/appunti-di-legislazione-universitaria/ aereo napoli londra gioco online stupido 8ea4fcdde1a965ef95e68187f350c6f6
84.122.87.* 于 2007-07-17 11:01:21发表:
http://b725e2e5e199a60c02fd8f15675c99ba-t.xkktxb.org b725e2e5e199a60c02fd8f15675c99ba http://b725e2e5e199a60c02fd8f15675c99ba-b1.xkktxb.org b725e2e5e199a60c02fd8f15675c99ba http://b725e2e5e199a60c02fd8f15675c99ba-b3.xkktxb.org 8d1f2bfe3cbc5359328d95464cab8b7c
86.120.193.* 于 2007-07-16 10:03:57发表:
25f5e55d6660190cfe2ab7c516bcd075 http://stazioni-radio-da-ascoltare.xmjviq.com/ http://39100-bolzano-tim.knhtou.com/ http://orazio-traduzione.ywowql.com/ http://albo-ingegnere-livorno.xsixxz.biz/ http://tutti-giochi-on-line-gratis.wdexfm.biz/ http://negozio-alimentare-milano.ynpojb.biz/ http://uisp-2003-cascina.xsixxz.biz/ http://aggiornamento-msn-live-messenger.ywowql.com/ http://il-divieto-di-fumo.knhtou.com/ http://catamarano-thomas-edison.xsixxz.biz/ 8cff813cd5cdf93d908a9e43c4704dad
80.35.199.* 于 2007-07-15 02:15:38发表:
02c853059dde442318c1cdc72c6f4094 fermi scooter http://lapprodocastellabate.kqjhpm.org/il-pensiero-di-manzoni/ agriturismo ronco briantino http://scrivosola.mongnb.org/post-olimpica/ liceo sportivo verona web tiscali it albergo stella scaricare avast 7 5 l ippocampo gioiello testo canzone michele zarrillo 5 giorno http://t29batteria.seklde.org/gli-anni-di-piombo/ a875aa102e91579b074fe29fa7a13e81
89.16.28.* 于 2007-07-13 19:02:34发表:
5c0456870173ca0f177debf8935e94d8 http://quotazione-zama.wuzzme.org/ http://codice-atecofin-tabaccheria.njylwy.org/ http://forum-gioco-multiplayer.benlzg.org/ http://scorta-armata.njylwy.org/ http://federazione-internazionale-sport.wuzzme.org/ http://video-mausoleo-berlusconi.mpxxqr.org/ http://vendita-foto-camera-digitale-canon.wuzzme.org/ http://sito-bella-donna-gratis.wuzzme.org/ http://foto-pinarolo-po.iwfpha.org/ http://tfr-soggetto-contributo-previdenziali.iwfpha.org/ 8c2a5fabd273020cebfaea52010ee4bb
84.101.168.* 于 2007-07-12 12:19:17发表:
15ba6027330b90dfc5ad47c899ae1e16 http://brano-musicale-peruviani-mp3.rtistm.org/ http://cavo-nokia-6230.udzjxi.org/ http://2.tijrje.org/prodotti.asp?IDCat=13&IDSubCat=33 http://annuncio-privati-campania.bmfcxx.org/ http://gioco-ruolo-scaricabile.qeeuwf.org/ http://carciofo-con-pentola-a-pressione.mtfkmx.org/ http://disegnare-rettangolo.gbymyg.org/ http://fotocamera-digitale-agfa.jdcyvo.org/ http://offerta-2-gennaio.gbymyg.org/ http://formazione-per-estetiste.orjndo.org/ d8d97f68bc274489b372d34e17b3a169
220.70.45.* 于 2007-07-11 05:05:56发表:
b0658602b052df33f71a0ce9f77d4e94 pagina27.html pagina65.html pagina84.html pagina76.html http://17.ska4aj.com/pagina62.html pagina16.html http://12.ska4aj.org/pagina47.html http://22.ska4aj.com/pagina73.html index.html http://8.ska4aj.org/pagina24.html 53f688e2d0ae01a48f96ad8f8181d4f6
190.2.9.* 于 2007-07-09 20:17:26发表:
94eb5c914000b8aec654b2ffc643acfd http://informale.uvrseh.org/ http://listino-prezzi-roland.bsvetd.org/ http://compagnie-aeree-alghero.uvrseh.org/ http://ospedale-policlinico-catania.wywplu.org/ http://ruota-libera-vela-team-teramo.gtimmg.org/ http://ordine-dei-francescani.dkzfpf.org/ http://societa-acqua-roma.bsvetd.org/ http://camomilla-zaino.fyicly.org/ http://riti-civili.dkzfpf.org/ http://lettore-portatile-sony-mp3.fyicly.org/ 9b45a0bdde2cb75e21785d72ae4741f7
201.252.181.* 于 2007-07-08 10:40:30发表:
d53c72b62af77bff395f36a89f58d934 http://biografi-daniela-silvestri.jcddfk.org/ http://concorso-medico-ambulanza-118-palermo.jcddfk.org/ http://immigrazione-italiano.rjrigb.org/ http://mercedez-benz-anno-1994-tutti.jcddfk.org/ http://impiantoeletricofaseneutro.sphfph.org/sfondo-xp-free/ http://www-vacanze-sardegna.jcddfk.org/ hotel sala convegno detroit http://quante-sai-olimpiadi.rjrigb.org/ http://videosexydeboracaprioglio.awcnfe.org/finale-coppa-dei-campioni/ http://forestale-abruzzo.zgqwur.org/ cda9cd96507def8918671c23330ec82a
190.44.102.* 于 2007-07-07 04:35:36发表:
4f43da44b2cc233b9bed809092d244df grassa ragazza porca http://canzone-se-telefonando.mcgzbb.org/ http://cascina-santa-brera.zikywm.org/ http://configurare-nokia-goldbox-per-sky.ylbtbt.org/ http://assicurazionerischiprofessionali.skzbln.org/delfino-4-pinna/ http://noleggio-ravenna.vtjfdr.org/ http://budapest-informazione.vtjfdr.org/ http://modalita-tiranti-ancoraggio-barra.vtjfdr.org/ ecstasy liquida acquisto http://misure-medie.vtjfdr.org/ 268af5f4294519a6b3a74dbb7c6fdf14
200.114.248.* 于 2007-07-02 06:20:30发表:
2ee4c76b0cb0c1f088a766bc583ae39e http://progettazione-sito-web-applicazione-web.qttkja.org.in/ http://mandare-sms-gratis-dal-pc.hhknox.org.in/ http://orientamento-giurisprudenza-materia-lavoro-termine.dtifhu.org.in/ http://scuola-elementare-s-giuseppe-roma.hhknox.org.in/ http://lettore-dvd-e-divx-audiola.hhknox.org.in/ http://velina-di-striscia-la-notizia.qttkja.org.in/ http://comune-milano-it-servizio-sociale.omulsq.org.in/ http://artigianato-mobile-val-d-aosta.innltr.org.in/ http://fac-simile-contratto-locazione-bene-mobile.innltr.org.in/ http://agenti-di-commercio-mancato-preavviso.oaxzml.org.in/ 8a848390101f52442387e8806988b168
85.59.55.* 于 2007-07-01 01:35:27发表:
2fa8b5cf728c834c26f18ac0f677d54d http://cavoelettrico26costometro.pkjtsb.org/ http://www.compensiaccessorioassenzacontrattointegrativo.pkjtsb.org/ http://scadenzadomandaporcampania.gdedkb.org/ http://sistemainformativoterritorialedownloadroma.qrxvou.org/ http://www.itsfondogratisxdeskop.ocuokj.org/ http://www.petraliasottanaservizioigienepubblica.zawphd.org/ http://guidausotoolsymantecfixlinkopt.tgydoj.org/ http://plusvalenzacessioneaziendaentenoncommerciale.gdedkb.org/ http://alpesiusialbergo3stella.tgydoj.org/ http://www.scadenzadomandaporcampania.gdedkb.org/ 246f5573f09449eb624440463d221fca
62.42.22.* 于 2007-06-29 22:57:15发表:
0e561891ba8dcaf609d14afed12feec0 http://disegni-di-villa-a-schiera.chohld.org/ http://risultato-concorso-pubblico-ministero-difesa.arooqy.org/ http://ordine-provinciale-medici-chirurgo-roma.ukizsc.org/ http://l-embrione-e-un-essere-umano.oensnx.org/ http://lista-nuovo-gioco-usciti-computer.chohld.org/ appartamento vacanza san bartolomeo al mare http://giocareonlinegiococartepokemon.uqjhgg.org/via-corso-trieste-55-caserta/ http://windows-net-magazine-duke-abbonamento-2007.xflxat.org/ http://elenco-scuola-superiori-privata-bologna.oensnx.org/ http://centrospecializzatichirurgiacolonnavertebrale.uytput.org/finanziamento-fondo-perduto-regione-lazio/ 242a24eaaf2d8b6d338dfc62711422de
201.211.93.* 于 2007-06-28 22:11:57发表:
b7723d22f68293275da9748ff62b26d0 http://albergo3stellacomoitalia.ujgyzy.org/we-are-free-enya-spartito/ http://classificaterzacategoriagironeb.ujgyzy.org/barca-pesca-pilotina-4-m/ http://cuore-carta-ad-ariano-irpino.gpzeve.org/ http://contratto-di-manutenzione-impianto-termici.negvzz.org/ http://lacanzonedigwenstefani.aklifa.org/societa-cultura-sito-sesso-gratis/ http://prospettivaaumentodellstipendiocoopsociale.ujgyzy.org/ave-maria-schubert-testo-latino/ http://sostanza-cambiano-colore-all-aria.yigqdu.org/ http://catania-cinema-aeronautico-scuola-blog.jmcomw.org/ http://lettore-dvd-divx-nad-t531.negvzz.org/ si na cosa grande kar 24974b376644b5034250f73cecc2d1d6
89.156.242.* 于 2007-06-27 18:39:36发表:
246be260778b91fcfc38ea0e0b1fd54f http://omar-pedrini-album-pane-burro-medicina.aifeuw.org/ http://toyota-auto-nuova-confronta-prezzo.wknmyv.org/ http://immagine-informazione-scatola-cranica-uomo.gmgjeu.org/ http://san-martino-traduzione-prosa-carducci.wknmyv.org/ http://grey-s-anatomy-stagione-2.aifeuw.org/ http://corsi-di-internet-a-roma.plzgum.org/ http://stima-valore-immobile-commerciale-locato.jojues.org/ http://le-parole-dell-arte-piemonte.plzgum.org/ http://testi-canzoni-ti-sento-ligabue.fhbwem.org/ http://pupetta-spaces-live-laura-18-anno.jhjtvf.org/ dff758ad4d024eb641677108bbbbea97
190.48.38.* 于 2007-06-26 16:41:34发表:
0b895c8e3275a6965de83c18c5c22d67 associazione nazionale difensori civico italiano http://tempo-presentare-denuncia-contro-datore-lavoro.ozetoz.org/ http://testo-canzone-bomba-boomerang-litfiba.euhlah.org/ http://differenzaedanalogiacristianesimoedebraismo.mutsoq.org/foto-gratis-di-donna-in-calza/ http://comune-di-costa-di-rovigo.rjablq.org/ http://autosalone-importazione-diretta-multimarche-reggio-emilia.filgvg.org/ http://farmaco-contro-rabbia-fame-nervosa.euhlah.org/ http://art186comma7cds.mjdrvf.org/o-valentino-vestito-di-nuovo/ http://sblocco-scheda-telefono-lg-u8110.filgvg.org/ http://riformasomministrazionedialimentiebevande.swmvze.org/codici-enter-the-matrix-ps2/ ac74524788537f28ae4c90c357df5e97
220.71.75.* 于 2007-06-25 15:51:07发表:
073d0ee55d79a1b64196e00dcf5bd245 http://pistapermotoinitalia.wyselb.org/banca-credito-cooperativo-busto-garolfo-castano/ http://liguabue-piccola-stella-senza-cielo.bvthee.org/ http://samsung-lettore-mp3-yh-820-5gb.wlwpdt.org/ http://prescrizione-reato-570-mezzo-sussistenza.wlwpdt.org/ http://negozidimobiliintoscana.ggrflx.org/le-auto-della-settimana-in-torino/ http://stazionesciisticavalledaosta.yoogjn.org/indirizzo-sportello-unico-per-l-immigrazione/ http://pietrosaccardostoriatorresmarco.wyselb.org/abbinamento-vino-tortello-zucca-mantovano/ http://video-porno-ragazzo-gay-si-inculano.abpato.org/ legge regione campania n 14 http://suoneria-inno-champion-league-gratis.fcgpay.org/ 245153f8fc5ca6b7c7f1325ac3918a81
88.9.161.* 于 2007-06-24 14:28:53发表:
30b53fb0abcbc2e60d0b7ca661363fb2 frasi di dawson s creek http://theoccolonnasonora.yiatbe.org/il-ritratto-di-dorian-grey/ http://mano-stai-bene-stai-testo.vogryu.org/ http://guida-al-salone-detroit-2006.iolfyk.org/ http://castellodeiprincipirospigliosimaccarese.yiatbe.org/accessorio-ipod-oh-my-bond/ http://pornofotogratisportalefamosi.uwqbko.org/kingdom-hearts-trucchi-e-soluzione/ http://aziendaagrituristicacameraprovinciacaserta.fmyuaf.org/mew-mew-paradiso-video-trasformazioni/ http://it-group-yahoo-com-group-webcamcoppiaserale.ztbpeb.org/ http://scuola-secondarie-istituto-d-arte-milano.blzjgn.org/ lazio roma guido de angelis 452262cf741011e1ab8f1c4bc30a15a9
190.74.150.* 于 2007-06-23 13:15:14发表:
bc01fdcf0c08d01a6ee7a718ec99fcbf http://nuovafiatpandadieselautonuove.tmrnup.org/traduzione-da-italiano-in-inglese/ http://cerca-uomo-colore-nudo-it.xrndwe.org/ http://finale-di-amici-di-maria.vjsvzo.org/ http://cassazionedivisioneperditaacquacondominio.knqtun.org/t-shirt-valentino-rosso-46/ http://dizionarioingleseitalianoonlinegratis.ihbepf.org/hotel-a-monaco-di-baviera/ http://giudice-competente-causa-canone-depurazione-acqua.mjhbun.org/ http://v-edizione-fotografia-migliore-5.vjsvzo.org/ http://richiesta-passaporto-bimbo-5-anno.xrndwe.org/ comune cupra marittima ap it http://istituto-d-arte-de-luca-avellino.mjhbun.org/ 9552dfe41baaa9f17aeb9f3e17cab334
206.248.102.* 于 2007-06-22 11:00:02发表:
1711e9db15a4b297821fbcdd9a96b458 http://settore-giovanile-scolastico-f-g-c.myniqy.org/ http://puo-durare-protesi-al-ginocchio.yevzni.org/ http://11marzo1953n87.fvgoov.org/ruolo-di-donna-in-politica/ http://eletti-lega-nord-1994-bergamo.nakusq.org/ http://vendita-collezione-fumetto-supereroe-marvel.nakusq.org/ http://radiomemoriaespandibilemp3lettore.fvgoov.org/immagine-colorare-dragon-ball-x/ costa montare sistema fap auto diesel http://scuola-lavoro-portatori-handicap-alternanza.myniqy.org/ http://filmato-real-player-scaricare-nokia-6680.zivzdt.org/ programma calcolo break even point 8d0a7cd2b17a8f039de7dab06d2ae220
201.246.23.* 于 2007-06-21 05:17:18发表:
87de5411e7508282ab5b562691060916 http://uci-a-san-giovanni-lupatoto.lvnrii.org/ http://una-mamma-per-amica-episodio.tiabis.org/ http://norma-sicurezza-impianto-autonomo-riscaldamento-gas.axbzdu.org/ http://deroghe-all-esclusiva-contratto-agenzia-it.wdrksm.org/ http://cavo-dato-nokia-3220-compatibile.lvnrii.org/ http://foot-tortura-site-group-msn-com.rfnfwr.org/ http://curare-le-piante-in-casa.axbzdu.org/ http://conc-milano-esatri-s-p.tiabis.org/ http://foto-annuncio-incontri-donna-sole-gratis.lvnrii.org/ http://arredamento-camera-da-letto-campania.kzsfzp.org/ 3281355dcdf7961a81348339c85b8f61
201.242.219.* 于 2007-06-20 03:36:44发表:
9a2426add382e9a587cdb49960a7618d http://volo-orio-al-serio-bucarest.ykjmka.org/index.htm http://tasti-scelta-rapida-windows-xp.ihzaaf.org/index.htm http://mcafee-sicurity-internet-suite-2006-it.ehugfo.org/index.htm http://torta-di-mele-e-ricotta.qafifx.org/index.htm index.htm http://valore-legale-firma-busta-paga.oizdoo.org/index.htm http://comune-di-san-paolo-di-civitate.ihzaaf.org/index.htm http://x-agosto-giovanni-pascoli-analisi-parafrasi.ihzaaf.org/index.htm http://soggiorno-lusso-hotel-terme-toscana.mqpgvv.org/index.htm index.htm a95af8f224b8c9334b8122ef4b45f39a
190.38.17.* 于 2007-06-19 02:18:25发表:
cf23ac8d0c8cfcaf8aa7cb6f43017b32 index.htm index.htm http://sito-marca-auto-d-epoca.mboptw.org/index.htm http://distretto-militare-milano-ufficio-leva.csjstn.org/index.htm index.htm http://software-registro-dei-bene-ammortizzabili-gratis.aunbvm.org/index.htm http://concorso-vigili-urbani-di-roma.vooxwa.org/index.htm http://buon-pomeriggio-costanzo-lunedi-25-settembre.aunbvm.org/index.htm http://marilyn-manson-traduzione-testo-italiano.ugbiie.org/index.htm http://morto-castello-paolo-rocchi-tossico.ugbiie.org/index.htm b8055c662679464e43a32265312932f9
200.109.208.* 于 2007-06-18 01:26:31发表:
4f7934e03ebe1533720f5c33c3a29db0 http://scarica-canzoni-fabri-fibra-gratis.ovnfxu.org/index.htm index.htm index.htm http://acconto-irpef-defunto-non-dovuto.ogttfu.org/index.htm http://come-si-calcola-l-ici.ovnfxu.org/index.htm http://parrocchia-santa-caterina-da-siena.glzaqv.org/index.htm http://software-gratis-stampa-bollettino-ici.lwfhrb.org/index.htm index.htm index.htm http://legge-regione-sicilia-n-4-2003.zpympv.org/index.htm b3e1aeebf15010c0e48986d09609c4eb
190.37.68.* 于 2007-06-17 00:08:20发表:
b17a041e7d50d13f907bc3b37d66a59d index.htm index.htm http://microspia-cimice-vendita-on-line.ibngkc.org/index.htm http://impianto-compostaggio-elenco-regione-campania.rvumsf.org/index.htm http://medal-of-honor-pacific-assault-soluzione.sdgwbd.org/index.htm http://wwe-divas-nuda-and-naked.rvumsf.org/index.htm http://consacrare-propria-vita-dio-com.yssvot.org/index.htm index.htm http://d-amore-di-morte-e.odqknd.org/index.htm index.htm 6a4e71b09dc8ba3b61a05d0dd09e915b
84.121.45.* 于 2007-06-15 23:02:47发表:
91c2aef22cbf5db3a39643b73d2fa95c http://catalogo-amico-gio-natale-2006.qtoruw.org/ http://podere-fiore-cipresso-half-moon-bay.asytgp.org/ http://docente-scuola-superiora-primo-grado-sardegna.kluoca.org/ http://le-migliori-canzoni-d-amore.dgrbxq.org/ http://bisogno-persona-fidate-aiutarti-risolvere-problema.kluoca.org/ http://trucchi-the-sims-per-ps2.dkoomz.org/ http://lavoro-in-agenzie-di-viaggio.kluoca.org/ http://paraluce-ew-60-18-55.uvosok.org/ http://aggiornamento-d-lgs-626-94.dgrbxq.org/ http://numero-speciale-892-telecom-italia.dkoomz.org/ 017184126313b130655c75e326e14932
201.208.69.* 于 2007-06-14 20:53:27发表:
5b7090a23827793a36963fa3d338058b http://nkltre.org http://bwmuus.org http://hilxhr.org http://www.pmbefa.org http://www.nkltre.org http://www.hilxhr.org http://nkltre.org http://hoyscj.org http://www.uzgvit.org http://www.obkfqj.org a4d20a8afbc395002366bd667860c4d3
200.90.69.* 于 2007-06-13 20:15:24发表:
121bc25c42e225829b9927eeda527941 http://www.zrxllm.org http://ndvgwp.org http://exxhfd.org http://www.gwxvqe.org http://www.xgjrbe.org http://www.nbtxan.org http://www.eyfgwa.org http://wrgzjb.org http://ndvgwp.org http://www.zrxllm.org 0f5fa03e3dca64d5b4cd330c6f860531
190.38.44.* 于 2007-06-12 21:21:17发表:
3f5c3ab6d2701df581ba2be1f383f6d8 http://promesso-sposo-4-capitolo-riassunto.rivotb.org/ http://acer-advanced-mp3-player-lettore.kiyytw.org/ http://affitto-in-comodato-d-uso.rivotb.org/ http://asta-internazionale-tartufo-toscana-2006.yvzcyb.org/ http://gioca-on-lina-fifa-2003.hivfbp.org/ http://modulistica-iscrizione-lista-mobilita-campania.xxcgwu.org/ http://nuova-lancia-ypsilon-impressioni-test-guida.hivfbp.org/ http://the-oc-episodi-terza-stagione.xxcgwu.org/ http://rinnovo-porto-d-arma-difesa-personale.hivfbp.org/ http://commento-primo-canto-purgatorio-dante.hivfbp.org/ 416778d26f8af0e18aadb8d947bc0aec