aboutsummaryrefslogtreecommitdiffstats
path: root/testing/tests/sql/ip-pool-db-expired/hosts/moon/etc
diff options
context:
space:
mode:
authorAndreas Steffen <andreas.steffen@strongswan.org>2010-05-15 13:07:22 +0200
committerAndreas Steffen <andreas.steffen@strongswan.org>2010-05-15 13:07:22 +0200
commitf2c84bd89007535ebc4a495046463805a0399710 (patch)
tree9e4c51a9212e6d34f6cc65e8d43257177e9e2129 /testing/tests/sql/ip-pool-db-expired/hosts/moon/etc
parent0ee2c5e9bea19e84659ccbb651a8b3e0e1b7275e (diff)
downloadstrongswan-f2c84bd89007535ebc4a495046463805a0399710.tar.bz2
strongswan-f2c84bd89007535ebc4a495046463805a0399710.tar.xz
fixed keyids in sql/ip-pool-db-expired scenario
Diffstat (limited to 'testing/tests/sql/ip-pool-db-expired/hosts/moon/etc')
-rw-r--r--testing/tests/sql/ip-pool-db-expired/hosts/moon/etc/ipsec.d/data.sql34
1 files changed, 23 insertions, 11 deletions
diff --git a/testing/tests/sql/ip-pool-db-expired/hosts/moon/etc/ipsec.d/data.sql b/testing/tests/sql/ip-pool-db-expired/hosts/moon/etc/ipsec.d/data.sql
index 8f5a5ece8..e0c5dfc37 100644
--- a/testing/tests/sql/ip-pool-db-expired/hosts/moon/etc/ipsec.d/data.sql
+++ b/testing/tests/sql/ip-pool-db-expired/hosts/moon/etc/ipsec.d/data.sql
@@ -8,19 +8,25 @@ INSERT INTO identities (
INSERT INTO identities (
type, data
-) VALUES ( /* keyid of 'C=CH, O=Linux strongSwan, CN=strongSwan Root CA' */
+) VALUES ( /* subjkey of 'C=CH, O=Linux strongSwan, CN=strongSwan Root CA' */
11, X'5da7dd700651327ee7b66db3b5e5e060ea2e4def'
);
INSERT INTO identities (
type, data
+) VALUES ( /* keyid of 'C=CH, O=Linux strongSwan, CN=strongSwan Root CA' */
+ 11, X'ae096b87b44886d3b820978623dabd0eae22ebbc'
+ );
+
+INSERT INTO identities (
+ type, data
) VALUES ( /* moon.strongswan.org */
2, X'6d6f6f6e2e7374726f6e677377616e2e6f7267'
);
INSERT INTO identities (
type, data
-) VALUES ( /* keyid of 'C=CH, O=Linux strongSwan, CN=moon.strongswan.org' */
+) VALUES ( /* subjkey of 'C=CH, O=Linux strongSwan, CN=moon.strongswan.org' */
11, X'6a9c74d1f8897989f65a94e989f1fac3649d292e'
);
@@ -77,13 +83,19 @@ INSERT INTO certificate_identity (
INSERT INTO certificate_identity (
certificate, identity
) VALUES (
- 2, 3
+ 1, 3
);
INSERT INTO certificate_identity (
certificate, identity
) VALUES (
- 2, 4
+ 2, 4
+);
+
+INSERT INTO certificate_identity (
+ certificate, identity
+) VALUES (
+ 2, 5
);
/* Private Keys */
@@ -97,13 +109,13 @@ INSERT INTO private_keys (
INSERT INTO private_key_identity (
private_key, identity
) VALUES (
- 1, 3
+ 1, 4
);
INSERT INTO private_key_identity (
private_key, identity
) VALUES (
- 1, 4
+ 1, 5
);
/* Configurations */
@@ -117,7 +129,7 @@ INSERT INTO ike_configs (
INSERT INTO peer_configs (
name, ike_cfg, local_id, remote_id, pool
) VALUES (
- 'rw', 1, 3, 5, 'bigpool'
+ 'rw', 1, 4, 6, 'bigpool'
);
INSERT INTO child_configs (
@@ -167,13 +179,13 @@ INSERT INTO pools (
INSERT INTO addresses (
pool, address, identity, acquired, released
) VALUES (
- 1, X'0a030001', 7, 1211299013 , 1211299205
+ 1, X'0a030001', 8, 1211299013 , 1211299205
);
INSERT INTO addresses (
pool, address, identity, acquired, released
) VALUES (
- 1, X'0a030002', 8, 1211299031, 1211299187
+ 1, X'0a030002', 9, 1211299031, 1211299187
);
INSERT INTO addresses (
@@ -203,11 +215,11 @@ INSERT INTO addresses (
INSERT INTO leases (
address, identity, acquired, released
) VALUES (
- 1, 7, 1211299013 , 1211299205
+ 1, 8, 1211299013 , 1211299205
);
INSERT INTO leases (
address, identity, acquired, released
) VALUES (
- 2, 8, 1211299031, 1211299187
+ 2, 9, 1211299031, 1211299187
);