qq493288977 发表于 2013-03-22 17:31

记录4

创建用户:
create user test
identified by test
default tablespace SCUDATATBS
temporary tablespace TEMP;

-- Grant/Revoke role privileges
grant dba to test with admin option;
grant connect to test with admin option;
grant resource to test with admin option;

-- Grant/Revoke system privileges
grant select any table to test with admin option;
grant create any view to test with admin option;
grant select any dictionary to test with admin option;
grant create any table to test with admin option;

删除用户:
drop user user_name cascade;

Apache是web服务器,Tomcat是应用(java)服务器,它只是一个servlet容器,是Apache的扩展。
Apache和Tomcat都可以做为独立的web服务器来运行,但是Apache不能解释java程序(jsp,serverlet)。  
两者都是一种容器,只不过发布的东西不同:Apache是html容器,功能像IIS一样;Tomcat是jsp/servlet容器,用于发布jsp及java的,


while [ ${net_sequence} -lt ${#l_settlement_host_ip[@]} ]
the practice of programming


如果安装任务不是root用户执行,那么使用sysomc来执行时要注意,在sysomc用户sudo到root用户时,有的时候提示输入sysomc用户密码,在这种情况下,
iDeploy在sudo时会失败。解决:root用户下修改/etc/sudoers文件,加入sysomc ALL=(ALL) NOPASSWD: ALL


1:Oracle的用户名,默认创建到数据库中会自动全部转换为大写保存
2:Oracle的账号密码不区分大小写

单引号扩起来的,是字符串常量;双引号扩起来的,是明确限定列名或表名区分大小写。

双机是集群的一种形态

AIX(Advanced Interactive eXecutive)是IBM开发的一套UNIX操作系统。
POSIX是Portable Operating System Interface of Unix的缩写。由IEEE(Institute of Electrical and Electronic Engineering)开发,由ANSI和ISO标准化。
Single UNIX Specification ( 单一UNIX规范 ) 是一组用来定义可以称为"UNIX"的计算机操作系统的标准的集合。
The Single UNIX Specification is a superset of the POSIX.1 standard

***
南向接口:管理其他厂家网管或设备的接口,即向下提供的接口。 BCMAgent--->BCM,agent上报告警,BCM提供的端口
北向接口:提供给其他厂家或运营商进行接入和管理的接口,即向上提供的接口。BCM--->BCMAgent,BCM发出的管理信息,agent提供的端口

两者是不同的链路,比如BCMAgent(ip:随机2000)--->BCM(ip:固定2001)
                      BCM(ip:随机3000)--->BCMAgent(ip:固定3001)
***
.pm 应该保存 Perl Module,也就是 Perl 模块。例如 Socket.pm
.pl 应该保存 Perl Library,也就是 Perl 库文件。例如 perldb.pl
.plx 应该保存 Perl 脚本。

可是实际上大家都习惯用 .pl 来保存 Perl 脚本。

另外,use 语句会自动搜索后缀为 .pm 的文件,因此如果你想要写一个模块,那么最好还是以 .pm 做后缀好了。

.pm文件通常用use module;来加载
.pl文件通常用require some.pl;来加载
请见置顶帖子里关于use与require的区别。


JAVA的接口或抽象类是真正体现java思想的核心所在。

这其实在向一个极限挑战:软件的需求变幻无常,计划没有变化快,但是我们还是要寻找出不变的东西,并将它们和变化的东西分离开来。

接口是方法的抽象。interface中定义的方法都是抽象的,因此在实现接口的时候,必须重写接口中的所有方法。除非你实现接口的class是abstract的。
在你使用接口的类中,你必须重写接口中的所有方法,否则你的类会变成抽象类,无法得到实例,也就无法NEW了。

设计模式:adapter
你认为 应该是在一个已经存在的类(Target)不能完成某项功能时,系统中存在一个可以完成这个功能的类(Adaptee),于是就创建一个Adapter来重载Target的接口,
通过调用Adaptee的提供的接口来完成这个功能。
我也同意你上述的观点。但产生这个问题的原因是什么呢? 我有一个可以完成任务的Adaptee 为什么我不直接调用呢?
其原因就是接口不匹配。所谓接口在c++中为public部分,狭义上理解就是访问权限为public的函数。我希望有一个可以完成功能的类 然后我调用 getResult()方法得到结果。
现在系统中有一个很好的类 但提供get_result()这个函数返回结果。 郁闷, 我要的是 getResult() 他给我 get_result() 。想要的接口和已有的接口不匹配 。咋整?
这只是举个例子 实际情况要复杂的多。在design patter中接口往往指一个限制,其有一个基类,在基类中定义接口(限制 或者称为契约 个人理解),
具体类要从基类中派生并满足这个契约。这就诞生了适配器模式。这种方式使用的适配器模式其实是一种事后的补救措施,是一种不得已而为之的行为。
若我可以得到源代码 并且在修改这些代码时候不会影响到其他的代码的情况下。我会设法修改这个已有的类 将get_result() 改为 getResult(),
(或者更改源代码使其从某个基类派生)。从而无需使用适配器。

Unicode在1.0版本中是16位编码, 从U+0000到U+FFFF. 每个2byte码对应一个字符;
在2.0开始抛弃了16位限制, 原来的16位作为“基本位平面”, 另外增加了16个“位平面”, 相当于20位编码, 编码范围从0到0x10FFFF.

UTF: Unicode/UCS Transformation Format

java虚拟机管理数据(内存里)时,或者在进行对象序列化时,字符(串)都是以unicode编码方式的。


括号中不能有空行
CREATE TABLE CPS_REASON_TYPE
(
REASON_TYPE_INDEX NUMBER(10) NOT NULL,
REASON_TYPE_NAME       VARCHAR2(30) NOT NULL,
PRI_TYPE_CATEGORY VARCHAR2(1) NOT NULL, -- 1 PRINCIPLE_TRANSACTION, 2 ACTION
PRI_TYPE_CODE        VARCHAR2(10) NOT NULL, -- SEE: TRANSACTIONGLOBAL:PRINCIPLETYPE
DESCRIPTIONVARCHAR2(512),
STATUS       VARCHAR2(1) NOT NULL -- 1 ACTIVE ,2 DEACTIVE
###不能有空行
);


sed -i "s/${prefix}=.*/${prefix}=${decode}/" "${_LOCAL_CONFIG_FILE}.bak" || (sederr=1;break)


下面2种if-else的区别
1.
if (a=b) else
    if (c=d) else
      do-someting
else
   do-something-else
fi

2.
if (a=b) && (c=d)
    do-something
else
    do-something-else
fi

   

这种 用基类的指针或引用操纵多个类型 的能力被称为多态
c++类的二进制结构以及类型转换机制
Inside   the   C++   object   model

xinetd负责接受internet客户端的要求,并且将客户端的要求发送到正确的服务程序内。而事实上xinetd并没有执行特定的服务,以这种模式来处理客户端请求好处,每次启动时就不用加载大量的程序。
maluyao
Apache/sendmail 等服务相当于一个专卖店,就提供一种服务。

xinetd服务相当于一个会所,可以提供多种服务,如健身/桑拿/乒乓等。

如果你把这个会所关了,则健身/桑拿/乒乓都玩不成了。
但即使会所开门营业,也可能今天不开桑拿。


passwd, shadow, group文件中禁止包含"+"

降级升级:
alter database set standby database to maximize PERFORMANCE|PROTECTION
查询:
select PROTECTION_MODE,PROTECTION_level from v$database;

failover on
1、直接在容灾上做failover on操作。
failover off
1、先在容灾机上做基线      (容灾到生产的反向基线)
2、做drcli -c DB 100001 -so -k (此命令是将数据库的角色转换一下,无所谓在哪边执行)
3、在容灾上做failover off

最后做checkrep 检查。

select database_role,protection_mode,protection_level from v$database;

  SQL > alter database set standby database to maximize protection;    --最大保护
  SQL > alter database set standby database to maximize availability;--最高可用性
  SQL > alter database set standby database to maximize performance;   --最高性能

recover database until time '2012-09-14 12:12:12'
/DB/oracle/oradata/CPSORACLE/redo02.log

startup mount

alter database open read write;

alter database read write;

alert TJTEST.log

lsnrctl

85:oral   104:oraldg

tnsping SID

failover on的时候。降级。

failover off的时候,升级回去。

select * from all_users;

当做方向基线的时候会产生:ORA-03113: end-of-file on communication channel。
解决方法:在生产机上依次执行下列命令
startup mount
alter database set standby database to maximize performance;
shutdown abort
startup

配置生产端的归档模式
select name,log_mode, force_logging from v$database;

演示环境SupportAcitveDataGuard=1。

startup nomount pfile='/opt/oracle/product/11gR2/db/dbs/initora86.ora';

startup pfile='/opt/oracle/product/11gR2/db_1/dbs/initora85.ora';

rman target sys/oracle@oradg01 auxiliary sys/oracle@droradg01 cmdfile=/opt/oracle/product/11gR2/db_1/gen_stb.rcv

配置复制IP资源、配置复制监听资源:有什么用,使用场景是什么?

双机冻结是什么原理?

alter database set standby database to maximize protection; 这句中的standby怎么理解?

/usr/openv/netbackup/bin/bp.start_all
/usr/openv/netbackup/bin/bp.kill_all
/usr/openv/netbackup/bin/bpps

lsb_release -d

Windows for IA64 (Itanium 安腾处理器)

RMAN> CONFIGURE EXCLUDE FOR TABLESPACE USERS;

Tablespace USERS will be excluded from future whole database backups
new RMAN configuration parameters are successfully stored

CONFIGURE EXCLUDE FOR TABLESPACE CLEAR

franktys 发表于 2014-05-02 22:14

http://eliteguides1.blog.163.com/blog/static/235340051201442535665/

http://eliteguides1.blog.163.com/blog/static/2353400512014424434234/

http://eliteguides1.blog.163.com/blog/static/235340051201442441450/

http://eliteguides1.blog.163.com/blog/static/23534005120144244026630/

http://eliteguides1.blog.163.com/blog/static/23534005120144244026630/

http://eliteguides1.blog.163.com/blog/static/23534005120144244026630/

http://eliteguides1.blog.163.com/blog/static/23534005120144243927907/

http://eliteguides1.blog.163.com/blog/static/23534005120144243748805/

franktys 发表于 2014-06-23 15:39

http://eliteguides.blog.com

http://eliteguides3.blogspot.com

http://eliteguides2.blogspot.com

http://eliteguides1.blogspot.com

http://eliteguides.mysinablog.com/

http://dumps.mysinablog.com/

http://eliteguides1.pixnet.net

http://pass1000dumps.blogspot.com

http://dumps111.blogspot.com

http://dumps222.blogspot.com

http://dumps333.blogspot.com

http://dumps444.blogspot.com

http://dumps555.blogspot.com

http://dumps666.blogspot.com

http://dumps777.blogspot.com

http://newdump.0fees.net

http://pass1000exams.myblog.it/

http://pass10000.blogspot.com

http://eliteguides2.0fees.net

http://eliteguides1.0fees.net

563623262 发表于 2014-06-29 00:18

本帖最后由 563623262 于 2014-06-29 00:20 编辑

http://eliteguides1.blogspot.com/2014/06/wwweliteguidescn-new-dumps-100-pass-e20_8241.html

http://eliteguides1.blogspot.com/2014/06/wwweliteguidescn-new-dumps-100-pass-e20_6157.html

http://eliteguides1.blogspot.com/2014/06/wwweliteguidescn-new-dumps-100-pass-e20_5695.html

http://eliteguides1.blogspot.com/2014/06/wwweliteguidescn-new-dumps-100-pass-e20_9677.html

http://eliteguides1.blogspot.com/2014/06/wwweliteguidescn-new-dumps-100-pass-e20_1939.html

http://eliteguides1.blogspot.com/2014/06/wwweliteguidescn-new-dumps-100-pass-e20_8325.html

http://eliteguides1.blogspot.com/2014/06/wwweliteguidescn-new-dumps-100-pass-e20_6767.html

http://eliteguides1.blogspot.com/2014/06/wwweliteguidescn-new-dumps-100-pass-e20_6147.html

http://eliteguides1.blogspot.com/2014/06/wwweliteguidescn-new-dumps-100-pass-e20_8012.html

http://eliteguides1.blogspot.com/2014/06/wwweliteguidescn-new-dumps-100-pass-e20_8999.html

http://eliteguides1.blogspot.com/2014/06/wwweliteguidescn-new-dumps-100-pass-e10_28.html

http://eliteguides1.blogspot.com/2014/06/wwweliteguidescn-new-dumps-100-pass-e10.html

http://eliteguides1.blogspot.com/2014/06/wwweliteguidescn-new-dumps-100-pass-e20_6501.html

http://eliteguides1.blogspot.com/2014/06/wwweliteguidescn-new-dumps-100-pass-e20_5668.html

http://eliteguides1.blogspot.com/2014/06/wwweliteguidescn-new-dumps-100-pass-e20_3901.html

http://eliteguides1.blogspot.com/2014/06/wwweliteguidescn-new-dumps-100-pass-e20_5211.html

http://eliteguides1.blogspot.com/2014/06/wwweliteguidescn-new-dumps-100-pass-e20_5162.html

http://eliteguides1.blogspot.com/2014/06/wwweliteguidescn-new-dumps-100-pass-e20_8649.html

http://eliteguides1.blogspot.com/2014/06/wwweliteguidescn-new-dumps-100-pass-e20_4570.html

http://eliteguides1.blogspot.com/2014/06/wwweliteguidescn-new-dumps-100-pass-e20_9830.html

http://eliteguides1.blogspot.com/2014/06/wwweliteguidescn-new-dumps-100-pass-e20_7471.html

http://eliteguides1.blogspot.com/2014/06/wwweliteguidescn-new-dumps-100-pass-e20_28.html

http://eliteguides1.blogspot.com/2014/06/wwweliteguidescn-new-dumps-100-pass-e20.html

http://eliteguides1.blogspot.com/2014/06/emc-new-dumps-e10-001-e10-110-e20-002.html

http://eliteguides1.blogspot.com/2014/06/new-dumps-e20-329-e20-335-e20-340-e20.html

http://eliteguides1.blogspot.com/2014/06/new-emc-dumpse20-495-e20-500-e20-503.html

http://eliteguides1.blogspot.com/2014/06/emc-braindump-e20-655-e20-661-e20-670.html

http://eliteguides1.blogspot.com/2014/06/c2010-005c2010-023c2010-024c2010.html

http://eliteguides1.blogspot.com/2014/06/e20-385e20-390e20-405e20-455e20-465e20.html

http://eliteguides1.blogspot.com/2014/06/hp0-m59hp0-m60hp0-m61hp0-m62hp0-m63hp0.html

http://eliteguides1.blogspot.com/2014/06/cte2e10718ctep10701ctep10702cterp1065ct.html

http://eliteguides1.blogspot.com/2014/06/640-792640-864640-875640-878640-893640.html

http://eliteguides1.blogspot.com/2014/06/1z0-4591z0-4601z0-4611z0-4621z0-4631z0.html

http://eliteguides1.blogspot.com/2014/06/070-659070-662070-663070-667070-668070.html

http://eliteguides1.blogspot.com/2014/06/220-701220-702220-801220-802225-030adr.html

http://eliteguides1.blogspot.com/2014/06/e20-385e20-390e20-405e20-455e20-465e20.html

http://eliteguides1.blogspot.com/2014/06/c4090-958-dumps.html

http://eliteguides1.blogspot.com/2014/06/c4090-958-dumps.html

http://eliteguides1.blogspot.com/2014/06/c2010-005c2010-023c2010-024c2010.html

http://eliteguides1.blogspot.com/2014/06/new-ibm-dumps-m2040-724m2040-725m2050.html

http://eliteguides1.blogspot.com/2014/06/ibm-best-braindumps-p2070-071p2070.html

http://eliteguides1.blogspot.com/2014/06/100-pass-new-ibm-dumps-c2180-175c2180.html

http://eliteguides1.blogspot.com/2014/06/c2070-984c2070-985c2070-986c2080_4138.html

http://eliteguides1.blogspot.com/2014/06/c2070-984c2070-985c2070-986c2080_4351.html

http://eliteguides1.blogspot.com/2014/06/c2070-984c2070-985c2070-986c2080_16.html

http://eliteguides1.blogspot.com/2014/06/c2070-984c2070-985c2070-986c2080.html

http://eliteguides1.blogspot.com/2014/06/c2070-583c2070-585c2070-586c2070.html


563623262 发表于 2014-06-29 00:21

http://newdump.0fees.net/?p=1438

http://newdump.0fees.net/?p=1436

http://newdump.0fees.net/?p=1434

http://newdump.0fees.net/?p=1432

http://newdump.0fees.net/?p=1430

http://newdump.0fees.net/?p=1428

http://newdump.0fees.net/?p=1426

http://newdump.0fees.net/?p=1424

http://newdump.0fees.net/?p=1422

http://newdump.0fees.net/?p=1420

http://newdump.0fees.net/?p=1418

http://newdump.0fees.net/?p=1416

http://newdump.0fees.net/?p=1414

http://newdump.0fees.net/?p=1412

http://newdump.0fees.net/?p=1410

http://newdump.0fees.net/?p=1408

http://newdump.0fees.net/?p=1409

http://newdump.0fees.net/?p=1406

http://newdump.0fees.net/?p=1310

http://newdump.0fees.net/?p=1308

http://newdump.0fees.net/?p=1306

http://newdump.0fees.net/?p=1304

http://newdump.0fees.net/?p=1302

http://newdump.0fees.net/?p=1300


563623262 发表于 2014-06-29 00:22

http://new-dumps.blogspot.com/2014/06/new-emc-dumps-e20-822e20-850e20-855e20.html

http://new-dumps.blogspot.com/2014/06/emc-new-dump-e20-593e20-594e20-597e20.html

http://new-dumps.blogspot.com/2014/06/emc-dumps-e20-495e20-500e20-515e20.html

http://new-dumps.blogspot.com/2014/06/emc-dumps-e20-385e20-390e20-405e20.html

http://new-dumps.blogspot.com/2014/06/emc-dumps-e20-340e20-351e20-357e20.html

http://new-dumps.blogspot.com/2014/06/emc-dumps-e20-027e20-322e20-324e20.html

http://new-dumps.blogspot.com/2014/06/emc-dumps-e10-001e10-110e20-002e20.html

http://new-dumps.blogspot.com/2014/06/emc-dumps-e20-559e20-591.html

http://new-dumps.blogspot.com/2014/06/emc-dumps-e20-260e20-545e20-547e20-375.html

http://new-dumps.blogspot.com/2014/06/emc-dumps-e20-260e20-545e20-547e20-375.html

http://new-dumps.blogspot.com/2014/06/642-732-642-742-642-737-100-pass.html

http://new-dumps.blogspot.com/2014/06/642-747642-874-new-dumps.html

http://new-dumps.blogspot.com/2014/06/300-206-300-207-new-dumps-100-pass.html

http://new-dumps.blogspot.com/2014/06/642-832-642-902-642-813-new-dumps.html

http://new-dumps.blogspot.com/2014/06/642-832-642-902-642-813-100-pass.html

http://new-dumps.blogspot.com/2014/06/300-208-300-209-642-996-642-998-100-pass.html

http://new-dumps.blogspot.com/2014/06/1z0-0171z0-0181z0-0271z0-0281z0-0301z0.html

http://new-dumps.blogspot.com/2014/06/c2050-724c2060-218c2060-220c2060.html

http://new-dumps.blogspot.com/2014/06/pfinacc65pfinacc66pfinmgt64pfinmgt65cbi.html

http://new-dumps.blogspot.com/2014/05/hp0-a25hp2-w100hp2-z12hp2-z18hp2-z20hp2.html

http://new-dumps.blogspot.com/2014/05/certify-e20-260-e20-026-e20-559-100-pass.html


563623262 发表于 2014-06-29 00:23


http://eliteguides2.blogspot.com/2014/06/new-dumps-e20-390-vnx-solutions.html

http://eliteguides2.blogspot.com/2014/06/new-dumps-e20-385-data-domain.html

http://eliteguides2.blogspot.com/2014/06/new-dumps-e20-377-recoverpointse.html

http://eliteguides2.blogspot.com/2014/06/new-dumps-e20-375-recoverpoint.html

http://eliteguides2.blogspot.com/2014/06/new-dumps-e20-370-content-addressed.html

http://eliteguides2.blogspot.com/2014/06/new-dumps-e20-357-isilon-solutions.html

http://eliteguides2.blogspot.com/2014/06/new-dumps-e20-351-storage-area-network.html

http://eliteguides2.blogspot.com/2014/06/new-dumps-e20-340-clariion-solutions.html

http://eliteguides2.blogspot.com/2014/06/new-dumps-e20-335-symmetrix-solutions.html

http://eliteguides2.blogspot.com/2014/06/new-dumps-e20-326-symmetrix-solutions.html

http://eliteguides2.blogspot.com/2014/06/new-dumps-e20-324-vnx-solutions-design.html

http://eliteguides2.blogspot.com/2014/06/new-dumps-e20-260-vplex-specialist-exam.html

http://eliteguides2.blogspot.com/2014/06/new-dumps-e20-027-enterprise-backup.html

http://eliteguides2.blogspot.com/2014/06/new-dumps-e20-026-enterprise-storage.html

http://eliteguides2.blogspot.com/2014/06/new-dumps-e20-007-data-science.html

http://eliteguides2.blogspot.com/2014/06/new-dumps-e20-005-backup-recovery.html

http://eliteguides2.blogspot.com/2014/06/new-dumps-e10-110-emc-enterprise.html

http://eliteguides2.blogspot.com/2014/06/new-dumps-e10-001-information-storage.html

http://eliteguides2.blogspot.com/2014/06/new-dumps-e20-002-cloud-infrastructure.html

http://eliteguides2.blogspot.com/2014/06/new-dumps-e22-190-xpression-development.html

http://eliteguides2.blogspot.com/2014/06/new-dumps-e20-322-technology-architect.html

http://eliteguides2.blogspot.com/2014/06/new-dumps-e20-405-content-management.html

http://eliteguides2.blogspot.com/2014/06/new-dumps-e22-190-xpression-development.html

http://eliteguides2.blogspot.com/2014/06/new-dumps-e20-855-storage-area-network.html

http://eliteguides2.blogspot.com/2014/06/new-dumps-e20-655-isilon-specialist.html

http://eliteguides2.blogspot.com/2014/06/new-dumps-e20-593-backup-recovery.html

http://eliteguides2.blogspot.com/2014/06/new-dumps-e20-532-storage-area-network.html

http://eliteguides2.blogspot.com/2014/06/new-dumps-e20-495-content-management.html

http://eliteguides2.blogspot.com/2014/06/new-dumps-e20-475-content-management.html

http://eliteguides2.blogspot.com/2014/06/new-dumps-e20-361-network-attached.html

http://eliteguides2.blogspot.com/2014/06/new-dumps-e20-329-backup-recovery.html

http://eliteguides2.blogspot.com/2014/06/new-dumps-e20-018-virtualized.html


http://eliteguides2.blogspot.com/2014/03/070-246-private-cloud-monitoring.html

http://eliteguides2.blogspot.com/2014/03/1z0-475-oracle-it-architecture-soa-2013.html

http://eliteguides2.blogspot.com/2014/03/700-301-advanced-borderless-network_15.html

http://eliteguides2.blogspot.com/2014/03/e20-007-data-science-associate-exam.html

http://eliteguides2.blogspot.com/2014/03/070-243-administer-deploy-system-center.html

http://eliteguides2.blogspot.com/2014/03/ppro65-sap-certified-application.html

http://eliteguides2.blogspot.com/2014/03/hp0-y36-deploying-hp-enterprise-networks.html

http://eliteguides2.blogspot.com/2014/03/c4090-958-enterprise-storage-technical.html



http://pass1000dumps.blogspot.com/2014/06/hp3-c49hp3-l12-hp2-t21hp2-t23hp2-t24hp2.html

http://pass1000dumps.blogspot.com/2014/06/hp0-y44hp0-y45hp0-y46hp0-y48hp0-y49-hp0.html

http://pass1000dumps.blogspot.com/2014/06/ibm-new-dumps.html

http://pass1000dumps.blogspot.com/2014/06/1z0-5151z0-5161z0-517-1z0-2421z0-2441z0.html

http://pass1000dumps.blogspot.com/2014/06/e20-485e20-027e20-322e20-324.html

http://pass1000dumps.blogspot.com/2014/06/psrm72cfsiins66csm200718.html

http://1000dumps.blogspot.com/2014/06/100-pass-e20-661e20-670e20-690e20.html

http://1000dumps.blogspot.com/2014/06/100-pass-e20-495e20-500e20-515e20.html

http://1000dumps.blogspot.com/2014/06/100-pass-e20-340e20-351e20-357e20.html

http://1000dumps.blogspot.com/2014/06/100-pass-e20-260e20-007e20-018e20-026.html

http://1000dumps.blogspot.com/2014/06/100-pass-e20-860e20-385e20-390-e20.html

http://1000dumps.blogspot.com/2014/06/100-pass-e10-110e20-002e20-375-dumps.html

http://1000dumps.blogspot.com/2014/06/100-pass-e20-545e20-547e20-005-dumps.html


页: [1]
查看完整版本: 记录4