http://www.gd-linux.org/bbs/showthread.php?p=11191#post11191
[align=center]GDLC--在ATCA上实现高可用中间件[/align]
广东省Linux公共服务技术支持中心 邹晟
在电信级服务器领域要使中间件得到广泛应用,需要将ATCA、CGL以及SA论坛的HPI、AIS这几个规范标准结合起来并遵守,这看起来很容易,实际上却要复杂的多。尽管这些标准毫无疑问的使服务器系统各层之间更容易组合和相匹配,但每个平台都需要做一些工作来产生一个高整合度的系统。这篇文章将介绍整合的具体实施步骤,以Newstart高可用中间件和Adlink的ATCA硬件作为例子,但方法对所有SA Forum兼容的中间件和ATCA硬件都是有效的。
ATCA(Advanced Telecom Computing Architecture)标准即先进的电信计算平台,它脱胎于在电信、航天、工业控制、医疗器械、智能交通、军事装备等领域应用广泛的新一代主流工业计算技术----CompactPCI标准。是为下一代融合通信及数据网络应用提供的一个高性价比的,基于模块化结构的、兼容的、并可扩展的硬件构架。随着ATCA目前逐渐被业界接受,距大规模普及已经为时不远,电信级高可用中间件也随之有了相应的发展。
SA Forum(服务高可用性论坛)发布了两个重要的标准:硬件平台接口(HPI)和应用接口标准(AIS)。如下图所示,HPI为应用程序和中间件使用管理不同的硬件平台提供了接口,目的是为了提升应用程序、中间件和操作系统的跨平台移植性,最近的一版HPI是B.02.01(在2006年底发布)。作为对接口本身的补充,还有一个从HPI到ATCA的映射规范,重点指出了HPI如何映射到普通ATCA的传感器和控制器,和一个HPI简单网络管理协议(SNMP)及其管理信息库(MIB)。

HPI的实现大体上由硬件制造商在以下三方面提供:一个头文件、一个可链接的用户库和一个针对特定硬件平台的后台程序。另外还有一个开源的HPI实现名称为openHPI,在www.sourceforge.net上可以下载,openHPI可以在多种硬件平台上提供HPI更完整的实现。
AIS在应用程序和高可用中间件之间提供一致的接口,将其中一个从另一个中抽象出来,使得当底层中间件更换后应用程序可以很简单的得到复用。AIS由可用性管理框架(AMF)和一系列服务组成,AMF协调利用冗余资源来避免服务中断,一系列服务包括集群成员服务、检查点服务、事件服务、消息服务、锁服务、信息模型管理和记录服务,这些服务为应用程序和AMF提供必要的功能。
实现步骤概述
要实现一个电信级、应用就绪型(application-ready)的平台有以下这些必须的步骤:
找到一个使用正常的HPI实现
在HPI实现上测试你的高可用中间是否使用正常
创建相关硬件配置
与特定硬件的控制器和传感器结合
为现场可置换单元(FRUs)实现热拔插(hot swap)
实现合适的报警管理和策略
激活外部管理接口
下面将对这些步骤做具体的说明。
如何开始
首先一个问题就是你所使用硬件的厂商是否为你的目标平台提供了HPI实现,现在一部分硬件制造商(Motorola、Radisys等)提供自己的HPI库,而另一部分厂商不提供,那么就需要使用openHPI或者中间件厂商提供的合适硬件接口。很显然使用openHPI是比较好的办法,因为它独立于厂商,同时它功能更为完整且更容易实现。
一旦你有了一个工作正常的HPI库,无论是由硬件厂商提供还是使用HPI,下一步就是在HPI库上测试你的高可用中间件,首先就是对中间件的平台资源管理服务(PRMS)的“冒烟测试”,PRMS提供对硬件资源的管理,通过调用HPI和处理HPI事件及报警来实现功能。
接下来会自动运行一个程序来执行资源发现,操作传感器、控制器与存盘信息,设定阈值等。当这些测试可以确定基本的功能都运行正常,就可以进入到下一个步骤了。
创建相关硬件配置
当建立一个高度整合、应用就绪的平台,为每个预期的配置创建一个配置文件就非常必要。大部分的用户都有多种配置,比如说设备生产厂商会有几种不同的模式,每一个都使用相同的基本平台和框架,但在每个配置中都有不同数量和种类的板。
配置信息有时候也被称为系统模式,存放在内存数据库中,支持对象管理、对象分类分层与依赖、服务分组以及一整套可用性管理框架(AMF)提供的功能。系统模式的提供有两种方法,分别是静态提供和动态管理对象。
静态提供是预先建立好配置,存储在本机存储器中并向集群中的所有可管理节点发送。如果发生集群范围的错误,这将使得任何节点都可以将系统恢复到预先建立好的配置。一开始,PRMS调用HPI来列举节点里所有的对象,这些对象将同预先建立好的配置进行比较,如果有不同,可能就是故障或者丢失模块造成的,这时将会触发一个报警信息。
动态管理对象不是预先提供的,它在运行过程中动态建立并与特定的资源绑定(比如说一块新插入的板子)。动态管理对象是更灵活的配置提供办法但不能帮助检测系统判别与预期配置相背的异常。
与特定硬件的控制器和传感器结合
在文章的开始提到SA Forum提供了一个HPI到ATCA的映射规范,重点描述了如何从HPI映射到ATCA传感器与控制器。理想状况下,中间件厂商提供了对HPI到ATCA映射的支持。这将覆盖任何厂商的ATCA设备的80-90%的传感器和控制器,能节省大量的工作。
对每个特定的平台,通常会有OEM特殊的控制器和传感器,NewstartHA通过为每个平台提供一个平台特别库(PSL)并为新平台准备一个通用的PSL来解决这个问题。PSL提供三个方面的功能:热拔插管理、报警管理和对OEM特殊控制器和传感器的访问。
热拔插管理
对正在运行的系统进行硬件的拔插需要高可用中间件的管理,这包括是否允许拔插、将进程切换到备用资源的初始化以及平稳的停止现有资源。以拔出操作为例(见下图),当硬件资源处于拔出等待状态时,一连串的事件和决定在中间件和HPI里发生。高可用中间件应使得开发者能方便的对这一连串的事件和决定的每一步定制策略和行为。

当热拔插与特定平台相结合时,必须支持一系列的操作。比如说一次拔出被拒绝,必须在硬件状态显示上表现一条合适的信息。如果拔出被允许,热拔插管理服务(HSMS)将对象执行一次关闭操作使得所有依赖这个硬件资源的程序都能平稳的转移到备用资源上,当所有程序成功转移后,关闭硬件的供电,并使该硬件的热拔插指示灯持续闪烁。
中间件通过HPI对热拔插的实现在不同的平台中有细微的不同,比如说对一种产品在拔出过程中只需要设置热拔插指示器,对另一种产品除了设置热拔插指示器还需要关闭电源。这些操作在PSL中已经针对所有支持的平台预编译好,如果是新的平台就要在通用PSL上手动修改。
报警管理
每个系统都必须对可能危害系统正常运行的情况进行管理,报警管理服务(ALMS)应该提供一系列的功能使报警更容易管理:
为系统维护一个激活的报警链表
允许用户创建或删除应用特定的报警
当硬件资源状态切换、失败或无资源时,能检查、生成并发送报警
提供可配置的严格等级来调整系统如何对报警信号作出反应
提供根据严格等级、资源ID来对报警进行过滤的功能
不同的平台在产生传送和处理报警时也有细微的不同,特别的,OEM值必须转化为能准确描述当前资源状态的通用值。比如OEM寄存器返回的值是“0x0008”,就应该将其转化为更准确的描述“Processor disabled”。
外部管理接口
高可用中间件通常都自动的从错误中恢复和响应报警信号,但是也许你希望让操作者知道系统发生了一个错误,有些时候让操作者介入是非常必要的。外部系统管理是一条双向道,一方面将设备的信息传递给操作者,另一方面将操作者的指令传达到设备。现在大部分的系统管理接口都是命令行接口(CLI)和SNMP。
为了支持SNMP浏览器,必须创建针对不同配置的管理信息库(MIB)。一般要有三个MIB模块,一个提供对系统模式的访问,第二个提供对HPI信息的访问(包括初始化和管理热拔插),第三个提供对所有驻留内存的数据库的访问。
61.216.196.* 于 2007-09-07 00:57:01发表:
2169e40b05db1ac625c47c13d0e0c92d http://centro-fiera-del-garda.oxibnl.org/ http://brancaleone-alle-crociata-film-dvd.yavpvy.org/ http://ispettoratodellavorodimantova.npxbkv.org/osteria-vedova-venezia/ http://pavimento-interno-ceramica-castorama.odiioj.org/ http://italianibarcellona.dlqpew.org/riserva-di-caccia-alle-anatra/ http://gioco-mente-download.yojewt.org/ http://studentesseinminigonna.npxbkv.org/canzoni-povia/ http://legge-118.yojewt.org/ http://rifugio-per-gatti.ufftiy.org/ http://riconoscimento-credito-dipendente-pubblica-amministrazioni.vozlau.org/ ef5da0821261872f3a177fbd4ce2e9fc
24.44.176.* 于 2007-09-06 07:57:23发表:
af1a9ac4191dbe07064aa2fecc78567a http://payson.tulane.edu/techeval/forums/viewtopic.php?t=74 http://payson.tulane.edu/techeval/forums/viewtopic.php?t=74 http://www.cide.au.edu/audasaforum/viewtopic.php?t=458 http://iris.lib.virginia.edu/phpBB2/viewtopic.php?t=7689 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 http://iris.lib.virginia.edu/phpBB2/viewtopic.php?t=7689 http://payson.tulane.edu/techeval/forums/viewtopic.php?t=74 http://www.rstm.edu/phpBB/viewtopic.php?t=1450 d950163e2bc04fe30175aa17834ab13d
72.73.108.* 于 2007-09-05 19:13:11发表:
a29f60cd28fb8b39ddcf06838897c0af https://www.cslu.ogi.edu/forum/viewtopic.php?t=2656 https://www.cslu.ogi.edu/forum/viewtopic.php?t=2656 https://www.cslu.ogi.edu/forum/viewtopic.php?t=2657 http://forum.jalc.edu/phpBB2/viewtopic.php?t=2267 http://myweb.msoe.edu/~chaversa/phpBB2/viewtopic.php?t=2012 https://www.cslu.ogi.edu/forum/viewtopic.php?t=2656 https://www.cslu.ogi.edu/forum/viewtopic.php?t=2656 https://www.cslu.ogi.edu/forum/viewtopic.php?t=2657 https://www.cslu.ogi.edu/forum/viewtopic.php?t=2656 http://forum.jalc.edu/phpBB2/viewtopic.php?t=2267 db62d9d137e7999ef0c8bbd27991ea41
24.217.194.* 于 2007-09-05 04:46:06发表:
1903441049f4c4cb378ac8ff651b3335 http://figuraccia.dfmviz.info/ http://dpss-proroga.dfmviz.info/ http://virgilio-siti.dfmviz.info/ http://panda-100hp-tutti-video.dfmviz.info/ http://accordo-vasco-rossi.dfmviz.info/ http://annamaria-franzoni-settimanale-gente.dfmviz.info/ http://alieno-filmato.dfmviz.info/ http://cucina-giapponese-a-roma.dfmviz.info/ http://io-amo-animale.dfmviz.info/ http://gradi-giorno-riscaldamento.dfmviz.info/ 21817dd0dbd87cb119a7471ab31fd121
41.201.208.* 于 2007-08-15 23:14:10发表:
7004af3b86ed6e5ab301f987d92f11d1 http://frase-citazione-natale.ddxsak.com/ http://compara-tariffa-internet.zpvztz.com/ http://giochi-on-line-gratis-ma-belli.ddxsak.com/ http://musica-classica-suoneria.flroxk.com/ http://sito-ufficiale-caparezza.ddxsak.com/ http://simbolo-palude.ddxsak.com/ http://medicina-apparato-circolatorio.ddxsak.com/ http://ticket-costo-analisi-clinica-asl.akrmtn.com/ http://levigatrice-orbitale-aspiratore.zpvztz.com/ http://traduci-francese-italiano.flroxk.com/ f79720dbd018955dfd9068d527cd2031
201.243.79.* 于 2007-07-25 23:54:06发表:
b18a84619da5b5b1ea9c9da01712a1ca http://giocatori-piu-forti.zqemjp.biz/ http://concorso-educatori.fmyrxs.biz/ http://tesine-esame-gratis.txcbmz.biz/ http://napoli-juventus-6-novembre.sfupeh.biz/ http://parodontite-rimedi.txcbmz.biz/ http://apn-omnitel.txcbmz.biz/ http://storia-di-giuda.sfupeh.biz/ http://immobiliare-s-pietro.cuxojo.biz/ http://acquedotto-lucano-trivigno.txcbmz.biz/ http://mito-caratteristica.zqemjp.biz/ f0bd15bc4c04b02533089147dbde4c5b
83.252.235.* 于 2007-07-25 17:50:24发表:
6d8b086a51cca685ddfcaf2d3214c7dc http://saldatura-tecnologia.pzgvuv.biz/ http://852-fattore-idi-noagen-intensive.gohktw.biz/ http://noleggio-piattaforma-reggio-emilia.ggjrfj.biz/ http://studio-demetra-milano.ytxxxk.biz/ http://pannello-divisore-mobile.gohktw.biz/ http://contenitore-acciaio-olio-torino.ggjrfj.biz/ http://vendi-gibson-es-175.mbgzfn.biz/ http://bella-sorella-lecciso.joyubb.biz/ http://danubio-sfocia-mare.hdywtl.biz/ http://appartamenti-economici-parigi.gohktw.biz/ bfdd7bec9230a10317341e982495b689
86.121.170.* 于 2007-07-25 05:54:10发表:
8ab5158e95a5e33a68018ef2f5287064 http://per-inviare-email.tzlnou.biz/ http://film-tratto-romanzo.kajgdw.biz/ http://babbo-natale-stampare.enadzh.biz/ http://www-il-giulivo-com.zibtye.biz/ http://oggetto-java-home-informatica.zibtye.biz/ http://beppe-grillo-reggio-emilia-10-aprile.ygvhik.biz/ http://grazie-tutti-componente.ygvhik.biz/ http://asciugatrice-rex-rdc-77570w.zibtye.biz/ http://impianto-pubblicitario-multimmagine.ppdpwx.biz/ http://mita-fotocopiatrice-assistenza.enadzh.biz/ 69fae163d26a9b1682339a4eb6fc4ad9
190.38.247.* 于 2007-07-23 20:23:13发表:
a97168af24b40ea2b2af0afd303e3c76 http://caseificio-lombardia.mnkcbe.org/ http://le-tariffa-per-collegarsi-a-internet.hdpwsk.org/ http://milano-computer-usato.mnkcbe.org/ http://risto-disco-roma.pvaeyo.org/ http://foto-inculata-gay.hdpwsk.org/ http://vendita-materiale-odontoiatrico.pvaeyo.org/ http://impresa-costruzione-franco-rosso.jnbwct.org/ http://gagliardi-peppino.hdpwsk.org/ http://storia-impero-romano.gbdrme.org/ http://subi-famoso-supplizio.gbdrme.org/ eb89aa2351bfb8dd061b0dc25061dcdb
190.51.92.* 于 2007-07-21 04:08:10发表:
c829fb90962cda3e829ed7009ceaa450 http://hoteldisharm.pehabe.org/la-gente-vuole-ridere-ancora/ http://pitturaadoliotecnicafiorentina.pykkxx.org/circolare-regionale-modello-contributo-affitto/ http://gigifiniziomidi.kprskz.org/giovanili-napoli/ http://ultimapuntatacarabinieri.pehabe.org/costruzione-nuova-villetta-due-piani/ http://coloritogiallo.qemqrg.org/roma-torre-de-conto/ http://colonialecremona.qemqrg.org/manutenzione-mini-disel/ http://dannofuoco.qemqrg.org/barca-motore-quotazione/ http://sifasessoorale.pehabe.org/uova-di-pasqua-grandi/ http://prezzariregionali.nfnzro.org/stradario-caltanissetta/ http://ostacolicuoremp3download.kcqdnd.org/potenziamento-muscolare-corpo-libero/ b8fb7d84153cc5c69600cbe1497734b2
62.43.41.* 于 2007-07-19 18:58:18发表:
03cc36f0fbd492a2c420d9852b53a99d http://canarino-agata-rosso-arancio-mosaico.kvpzig.com/ http://battisti-canzone.uylqdg.com/ http://frase-famosa-perdono.kvpzig.com/ http://concetto-malattia-pianta.licoxi.in/ http://ipsae-voluptates-hominum.licoxi.in/ http://treno-vanno-madras.jvzulp.in/ http://posta-italia.kvpzig.com/ http://grammatica-base-lingua-inglese.miwcjz.com/ http://viaggio-shangai-hongqiao.qeshtw.in/ http://attrice-por.aezqpa.com/ b8a12f78e2ab8d9c8e5e94f78e975725
85.48.104.* 于 2007-07-18 07:21:18发表:
eb6caa5dd2d1dc5b35ea445e5050c70f http://nobenlambert.wfdklb.org/animale-domicilio-cane-gatto/ http://statutoconfraternitasicilia.eebsig.org/apparati-cb/ http://costaazzurrait.lgyeas.org/incidenti-a-roma/ http://parkinsonnuovacura.ppnxyq.org/ristorante-origgio/ http://vacanzabenessererioloterme.lgyeas.org/chitarra-de-andre/ http://progettazionedicircuiti.eebsig.org/affitto-villa-costiera-amalfitana/ http://cibeleomosessuale.copdkj.org/cazzo-bocca-figa-culo/ http://palladoloreragazzina.qbmkwd.org/banc-perta/ http://malagutiphantomricambio.lgyeas.org/porta-cellulare-calzino-dressy/ http://sportivopneumaticoassetti.copdkj.org/planimetria-dei-templi-egizio/ 8ea4fcdde1a965ef95e68187f350c6f6
190.49.224.* 于 2007-07-18 03:33:53发表:
http://f79279a716563729e691b33c7276fcc2-t.xkktxb.org f79279a716563729e691b33c7276fcc2 http://f79279a716563729e691b33c7276fcc2-b1.xkktxb.org f79279a716563729e691b33c7276fcc2 http://f79279a716563729e691b33c7276fcc2-b3.xkktxb.org 8d1f2bfe3cbc5359328d95464cab8b7c
82.103.123.* 于 2007-07-16 22:12:23发表:
d0f5c9ea7292aad3bf975ef4f1beaff4 http://donna-nuda-orgia.jmncsw.biz/ http://leandra-pelle.ywowql.com/ http://beccaria-dei-delitto-e-delle-pene.drncar.biz/ http://soggiorni-termali.fuypfr.biz/ http://peso-saturo-sabbia.ywowql.com/ http://attrezzatura-scuola-materna.mxkrxs.com/ http://depilazione-inguine-look.drncar.biz/ http://aeronautica-militare-meteo.ywowql.com/ http://elenco-utente-cellulare.xxmndb.biz/ http://arto-mestiere-medievali.knhtou.com/ 8cff813cd5cdf93d908a9e43c4704dad
218.103.229.* 于 2007-07-15 14:13:02发表:
518c89974eb93cd1f7abcfc7ebad909d http://idro2000espositocarlo.gapphu.org/masterizzare-un-iso/ http://ilcastelloeditore.mqyawz.org/risultati-champions-leage/ http://medusamultisalasurbo.seklde.org/rottamazione-computer-milano/ http://pensionatocercalavoro.mqyawz.org/saima-srl-sito/ http://ingegneremateriali.mqyawz.org/francesco-vincenti/ http://azionitelecom.seklde.org/indirizzo-email-giornalista/ http://collegareduecomputerretesicilia.mongnb.org/vendo-giochi-psx/ http://eleonoraruffo.eqacfr.org/valore-vendita-casa-collecchio/ http://jeremysumpterdicembre2006.vozulo.org/cova-uova/ http://sirosbraci.mqyawz.org/www-gazzetta-ufficiale-repubblica-italiana/ a875aa102e91579b074fe29fa7a13e81
190.54.97.* 于 2007-07-14 06:52:25发表:
7447f03c981b7f7d08dbdb57b7ab1e85 http://pittura-romanticismo.lldpzx.org/ http://grata-sicurezza-automatica.wuzzme.org/ http://chiesa-sant-anna-dei-palafrenieri.mhjqva.org/ http://liquidazione-pensione-ausiliaria.tttfhp.org/ http://rivista-arredamento-on-line.wuzzme.org/ http://juniores-friuli.ubetii.org/ http://porta-dell-inferno-rodin.iwfpha.org/ http://educazione-linguistica.gazdtl.org/ http://tempo-attesa-coda-autority.hihuft.org/ http://scuola-elementare-procida.wuzzme.org/ 8c2a5fabd273020cebfaea52010ee4bb
125.230.121.* 于 2007-07-13 00:14:47发表:
5aabe2e4018f34f76407fe2ed1a5366e http://castoldi-elettrodomestico-monza.bmfcxx.org/ http://lubamba-talpa.bmfcxx.org/ http://vino-derivato-it.mtfkmx.org/ http://universita-marconi.bmfcxx.org/ http://potenziale-evocati-terapia-intensiva-linea-guida.xxfvsr.org/ http://cucciago-co-it.rtistm.org/ http://legge-1293-1957.uwlbfm.org/ http://sera-nera-mp3.rtistm.org/ http://storm-x-men-immagine.udzjxi.org/ http://basta-piangere.rtistm.org/ d8d97f68bc274489b372d34e17b3a169
83.213.88.* 于 2007-07-11 17:27:23发表:
1df2584e4aa81da1da45ef19643e8414 http://7.ska4aj.net/pagina59.html http://20.ska4aj.com/pagina38.html http://22.ska4aj.com/pagina52.html http://4.ska4aj.net/pagina25.html http://11.ska4aj.net/pagina84.html http://16.skachaj.org/pagina40.html http://16.ska4aj.net/pagina38.html http://23.skachaj.org/pagina60.html http://11.skachaj.org/pagina29.html http://19.skachaj.org/pagina56.html 53f688e2d0ae01a48f96ad8f8181d4f6
200.116.28.* 于 2007-07-10 08:46:29发表:
d949d7bd9072c174fd0b94645f31ca40 http://informatore-polizia-fascista.wywplu.org/ http://sistema-riscaldamento-monotubo.wywplu.org/ http://foto-casa-albero.uvrseh.org/ http://occhi-di-gatta.bsvetd.org/ http://circolare-11-2006.uvrseh.org/ http://tutto-aquario-marino.gtimmg.org/ http://donna-menopausa-dire.uvrseh.org/ http://motorola-1000-cellulare.gtimmg.org/ http://antiquariato-jukebox.wywplu.org/ http://convenzione-tipo-urbanistica-veneto.fyicly.org/ 9b45a0bdde2cb75e21785d72ae4741f7
62.241.116.* 于 2007-07-08 23:33:57发表:
929c64c457a896e2184e9d8ca275644e http://ristrutturazione-rustico.mjifwc.org/ http://olidatatehom9000.ybhujc.org/traduzione-testo-alice-chain/ http://costo-vita-mosca.rjrigb.org/ http://questura-di-roma-com.rjrigb.org/ http://fiera-fiumicino.jcddfk.org/ http://appalto-pubblico-giudice-ordinario.wdhffe.org/ http://fotopiazzaitaliana.ybhujc.org/luci-milano/ http://alberghi-albissola.djrtlt.org/ http://concessionaria-lancia-it.zgagyw.org/ http://asusgeforceschedavideo.awcnfe.org/pil-a-confronto/ cda9cd96507def8918671c23330ec82a
88.9.210.* 于 2007-07-07 17:05:52发表:
273fd75e836437569134d8f7c05bc186 http://finanziamentoaziendafinanziamento.eoklgx.org/mont-blanc-vendita-articolo-milano/ http://bassaautostima.eoklgx.org/fiore-di-pisello/ http://mogliematuragratisit.eduein.org/cooperativa-di-costruzioni-modena/ http://lirica-veglia.mcgzbb.org/ http://albo-ingegneri-di-roma.mcgzbb.org/ http://ristorante-villa-olmo-creazzo.xxbtpu.org/ http://istruzioni-per-il-montaggio-del-cartongesso.vtjfdr.org/ http://televisori-lc.jwwdqu.org/ http://i-clan-camorristici-di-napoli.mcgzbb.org/ http://annunciovenditaquademilia.eoklgx.org/foto-sotto-la-doccia/ 268af5f4294519a6b3a74dbb7c6fdf14
211.203.155.* 于 2007-07-02 18:32:52发表:
a439ed3a8b0a1a6f011bcf806dd53069 http://scarica-gratis-gta-san-andreas.ooqqld.org.in/ http://ignazio-gardella-casa-impiegati-alessandria.ooqqld.org.in/ http://tema-svolto-italiano-scuola-media-inferiore.innltr.org.in/ http://affitti-a-cagliari-per-studenti.ooqqld.org.in/ http://pubblicazione-albo-pretorio-atto-pubblico.hhknox.org.in/ http://si-istalla-hard-disk-sata.ooqqld.org.in/ http://emolumenti-cariche-alenia-aeronautica-spa.dtifhu.org.in/ http://soluzione-hidden-and-dangerous-2.hhknox.org.in/ http://corsi-formazione-orafo-provincia-salerno.pifljm.org.in/ http://indulto-benefici-legge-protesto-bancario.ooqqld.org.in/ 8a848390101f52442387e8806988b168
84.125.116.* 于 2007-07-01 14:31:09发表:
46c60c216f8344566c4a0481a1a002f9 http://centroautorizzatiricambioferrolipuglia.hrjksn.org/ http://www.negoziovialargaamilano.pkjtsb.org/ http://www.quandoseiquiconmequesta.pkjtsb.org/ http://pompacalcestruzzosottofondoit.opojum.org/ http://itmaterassotorinozonacrocetta.opojum.org/ http://lavolpeeluvapecetto.opojum.org/ http://www.dlgs19marzo1996n.hrjksn.org/ http://argomentotesiscienzaserviziosociale.pyvila.org/ http://www.centroserviziofinanziariogroupsrl.pyvila.org/ http://610programmaincassobosch.zawphd.org/ 246f5573f09449eb624440463d221fca
76.21.74.* 于 2007-06-30 11:57:38发表:
acb7b50b1a512e8dcb0f1f9a632c8c12 http://concorsointernazionaledanzamicheleabateit.ojbsss.org/convertitore-midi-mp3-software-gratis/ http://san-daniele-del-friuli-mappa.arooqy.org/ http://fabri-fibra-video-idea-stupide.utpiii.org/ http://bigliettoauguriobuoncompleannodidol.zcsdiw.org/wagon-r-emissioni-euro-2/ http://machebellagiornatadisole.ejiufa.org/foto-maddalena-corvaglia-max-2007/ http://legge-326-del-24-11-2003.arooqy.org/ http://comune-di-forni-di-sopra.xflxat.org/ http://caseinaffittomontorosuperiora.uqjhgg.org/vive-te-testo-re-leone-2/ http://cessioneaziendatuteledellacquirente.uqjhgg.org/amstrad-lettore-dvd-divx-3010/ http://traduzione-frase-complete-inglese-italiano.oensnx.org/ 242a24eaaf2d8b6d338dfc62711422de
84.101.168.* 于 2007-06-29 11:06:42发表:
f35eb740fff25f065f827ede62c1ced2 http://scopatetraanimaliedonna.bcpmpo.org/trattenute-mod-730-quinto-stipendio/ http://offertalavoroprovinciadicomo.ujgyzy.org/affitto-casa-privato-venezia-provincia/ http://segnala-sito-ai-motore-ricerca.qkidvr.org/ http://cortedappellodobrescia.hwdwav.org/domanda-lavoro-cimiteriali-provincia-torino/ http://incentivostatalegplcampaniacomuneaderiscono.hwdwav.org/opera-d-arte-castello-bracciano/ http://tutti-i-film-del-2005.csirgp.org/ http://scadenza-saldo-ici-anno-2006.csirgp.org/ http://divina-commedia-parafrasi-inferno-primo-canto.csirgp.org/ http://schedatvpinnacle310ipro.hwdwav.org/programma-registrare-voce-base-midi/ http://vita-di-galileo-di-b-brecht.negvzz.org/ 24974b376644b5034250f73cecc2d1d6
201.253.12.* 于 2007-06-28 07:40:10发表:
5c629f4a8d22af07560bff3c6a8709ed http://fat-slave-bdsm-schiava-fat.ajqecx.org/ http://gs-carrefour-novara-giulio-cesare.zqlmym.org/ http://prezzo-delle-case-a-milano.hutfyw.org/ http://risultato-serie-23-12-2006.hutfyw.org/ http://migliore-centro-aneurisma-aorta-toracica.nzwrmb.org/ http://effetto-induttivo-dei-gruppo-alchilici.udzkxj.org/ http://foto-porno-di-donna-mature-gratis.wknmyv.org/ http://villaggio-gargano-villaggio-turistico-vacanza.gmgjeu.org/ http://calendario-calcio-serie-a-2005-2006.nzwrmb.org/ http://ristorante-contrada-viale-primavera-roma.oacpyn.org/ dff758ad4d024eb641677108bbbbea97
84.122.17.* 于 2007-06-27 05:02:32发表:
5aadce1df29336e258c4a8203a8c3be2 http://centroserviziovolontariatosannicolabari.swmvze.org/ufficio-italiano-dei-cambio-roma/ http://sitewwwbirramorettiitbirramoretti.swmvze.org/pranoterapia-centro-test-valutazione-energia/ http://canzone-video-final-fantasy-x-2.ozetoz.org/ http://softwaresbloccocodicenece228.mutsoq.org/motore-marino-kad-volvo-penta/ http://borsa-fasciatoio-chicco-24-ore.euhlah.org/ http://film-la-guardia-del-corpo.filgvg.org/ http://programmitvdiquestasera.swmvze.org/augurio-per-il-lieto-evento/ http://programma-biglietto-da-visita-gratis.ynkpgu.org/ http://finanziaria2006agevolazioneprimacasa.wvyart.org/ingegneri-della-provincia-di-cagliari/ http://tavola-tasso-variazione-annuo-popolazione.rjablq.org/ ac74524788537f28ae4c90c357df5e97
190.38.25.* 于 2007-06-26 04:40:44发表:
cb98d280a522605cb04b55750ae2dc49 http://proposte-bed-and-breakfast-chianti.fcgpay.org/ http://leggeregionalen172006.wnoohz.org/toro-targa-assicurazione-sede-legale/ http://sitointernetscaricarefilmdivx.ggrflx.org/variazione-dei-lavoro-corso-ordinazione/ http://compenso-presidente-di-seggio-2006.wlwpdt.org/ http://embolizzazionedellarteriauterinafirenze.wnoohz.org/come-scrivere-una-domanda-di-assunzione/ http://elementominaccia612cp.gydeyj.org/de-l-infinito-universo-et-mondi/ http://christina-pedersoli-figlia-bud-spencer.fcgpay.org/ http://numero-matricola-studente-universita-parma.abpato.org/ http://progetto-intercultura-istituto-ii-grado.lzuess.org/ http://case-in-affitto-borgo-valsugana.fcgpay.org/ 245153f8fc5ca6b7c7f1325ac3918a81
190.22.96.* 于 2007-06-25 02:53:58发表:
9fa7f96da494f46c3b8c1581b7c14f2d http://innesti-pianta-manuale-ebook-gratis.iolfyk.org/ http://sostituzione-cinghia-trasmissione-alfa-166.cjgbgx.org/ http://decretolegislativo30aprile1992.uwqbko.org/donna-grassa-nuda-video-gratis/ http://decretolegislativo30aprile1992.uwqbko.org/leggenda-dragon-ball-url-font/ http://lagattaneramercanteinfiera.shopio.org/preghiera-madre-teresa-calcutta-natale/ http://macchinario-lavaggio-auto-self-service.vogryu.org/ http://link-o0rn6bg93gij-www-repubblica-it.vogryu.org/ http://suburbia-roma-via-cristoforo-colombo.nbjnpk.org/ http://linkhttpwwwwilmadeangelisorg.savnjk.org/ambulatorio-medicina-preventiva-lavoro-mobbing/ http://motorola-v3x-configurazione-tim-mms.vogryu.org/ 452262cf741011e1ab8f1c4bc30a15a9
85.27.4.* 于 2007-06-24 03:31:26发表:
2b6289d103f991baebca7b27b836a503 http://legge-266-23-12-05.bxertr.org/ http://bandocasapopolarefriuliveneziagiulia.inpusz.org/albergo-con-centro-congresso-lecco/ http://manutenzionepeugeot406stationwagon.tmrnup.org/fiera-dei-fiori-di-genova/ http://venditoresoftwarearredamentodinterno.inpusz.org/trucchi-per-playboy-the-mansion/ http://sipuoriceverewifivicini.tmrnup.org/volo-hotel-egitto-naama-bay-verona/ http://dirittiedoverideidipendenticomunali.bkejls.org/fabrizio-franco-sant-angelo-lomellina/ http://prolungamentometropolitanalinea1tangenzialeovest.ihbepf.org/decreto-ministero-lavoro-pubblico-1978/ http://trasferiremusicainipod.inpusz.org/centro-assistenza-polar-italia-marche-abruzzo/ http://lion-gratis-download-roms-emulatore.bxertr.org/ http://ambasciataditaliainaustralia.bkejls.org/bassotto-pelo-corto-nero-nano/ 9552dfe41baaa9f17aeb9f3e17cab334
201.255.165.* 于 2007-06-23 00:47:55发表:
525defa5a868a2a366714b2e9ec966d4 http://acer-foto-camera-digitale-cs-5531.yevzni.org/ http://indicatoregiudizioorientativiclasse3.qurqnr.org/inserto-a-pellet-per-caminetto/ http://giochi-per-il-mio-coputer.nakusq.org/ http://telefonocordlesssiemensgigasetsl100.ibiwol.org/modifiche-al-valore-fringe-benefit/ http://contrappesitrattorezonaanconalavorocampagna.ibiwol.org/cenoni-ultimo-dell-anno-toscana/ http://spero-va-meglio-rispetto-ieri.yevzni.org/ http://parconazionaleyosemiteupperpinescampground.qurqnr.org/decorazioni-con-la-pasta-di-sale/ http://5liravittorioemanuele3.owknpa.org/carica-dei-101-film-dvd/ http://universita-economia-e-commercio-di-napoli.yevzni.org/ http://informagiovani-san-benedetto-del-tronto.jvvvdm.org/ 8d0a7cd2b17a8f039de7dab06d2ae220
213.254.86.* 于 2007-06-21 19:27:21发表:
22266f069e030081e209561b2c6f824e http://aggiornare-mappa-italia-tom-tom-go.lvnrii.org/ http://collegio-dei-geometra-spese-scala.wdrksm.org/ http://mail-donna-trasgressiva-carriera-foggia.wdrksm.org/ http://fac-simile-cessione-contratto-leasing.tiabis.org/ http://quarto-rapporto-ospedale-salute-2006.tiabis.org/ http://cartografia-nautica-pocket-navigator-programma.cmuvxp.org/ http://come-si-fa-la-pizza.rfnfwr.org/ http://alimentazione-dopo-intervento-resezione-retto.axbzdu.org/ http://villa-schiera-affitto-sesto-calende.axbzdu.org/ http://ospedale-sandro-pertini-responsabile-day-surgery.tiabis.org/ 3281355dcdf7961a81348339c85b8f61
217.217.15.* 于 2007-06-20 17:29:27发表:
d2df7e0893e32f4fb85391a3d2eb270f http://dual-tv-pen-empire-usb-hybrid.ykjmka.org/index.htm http://sei-terra-non-puoi-piu-nasconderti.hzsssu.org/index.htm http://classifica-italiana-quarta-categoria-tennis-tavolo.mqpgvv.org/index.htm http://lavatrice-lavasciuga-candy-cth-107.hzsssu.org/index.htm http://cenone-ultimo-dell-anno-abetone-dintorni.oizdoo.org/index.htm http://percentuale-opera-murarie-impianto-civile.qgzsds.org/index.htm http://raduno-camper-dicembre-lazio-campania.nlzixy.org/index.htm http://collezione-abito-sposa-anna-guerrini.mqpgvv.org/index.htm http://hostess-milano-o-lavoro-part-time.mqpgvv.org/index.htm http://guida-dei-last-minute-italia.ehugfo.org/index.htm a95af8f224b8c9334b8122ef4b45f39a
85.155.44.* 于 2007-06-19 16:18:52发表:
4615502706520a5e64798e112841b946 http://ora-nn-posso-neanke-scrivere.nudmpy.org/index.htm http://porta-a-porta-13-marzo.fyeclo.org/index.htm http://prenotazione-biglietto-cinema-multisala-impero-varese.bpdwtu.org/index.htm http://gerusalemme-steven-spielberg-jewish-film-archive.bqltxq.org/index.htm http://elenco-scuola-privata-cattolica-provincia-milano.bpdwtu.org/index.htm http://quando-posso-andare-in-pensione.csjstn.org/index.htm http://ricorso-al-mercato-dei-capitale.tadctp.org/index.htm http://frigorifero-rex-fi-22-10-incasso.bqltxq.org/index.htm http://parete-finestrate-meno-10-metro.ugbiie.org/index.htm http://conferenza-stato-regione-canile-allegato.aunbvm.org/index.htm b8055c662679464e43a32265312932f9
70.82.209.* 于 2007-06-18 16:00:23发表:
d36a0f6fd8da49c5dd9589127a037efb http://hotel-a-sharm-el-sheick.lwfhrb.org/index.htm http://costo-trattamento-lampada-presso-centro-estetico.zpympv.org/index.htm http://campi-di-calcio-in-erba-sintetica.glzaqv.org/index.htm http://parafrasi-poesia-davanti-san-guido.lwfhrb.org/index.htm http://www-eurolearning-com-emilia-romagna.ovnfxu.org/index.htm http://gioco-hentai-dead-or-alive.esqhid.org/index.htm http://tutti-i-testi-di-laura-pausini.ovnfxu.org/index.htm http://interfaccia-comando-al-volante-autoradio-alpino.mmaiuw.org/index.htm http://la-condizione-umana-di-malraux.glzaqv.org/index.htm http://cover-cd-audio-mina-bau.ogttfu.org/index.htm b3e1aeebf15010c0e48986d09609c4eb
70.80.234.* 于 2007-06-14 13:15:26发表:
http://ba839e90492fefd368cd0f307d0125f0-t.apghqr.info ba839e90492fefd368cd0f307d0125f0 http://ba839e90492fefd368cd0f307d0125f0-b1.apghqr.info ba839e90492fefd368cd0f307d0125f0 http://ba839e90492fefd368cd0f307d0125f0-b3.apghqr.info fc607a6861e8fdc38743aff14e763ac9