~ubuntu-branches/ubuntu/oneiric/strongswan/oneiric

« back to all changes in this revision

Viewing changes to testing/tests/sql/ip-pool-db/hosts/moon/etc/ipsec.d/data.sql

  • Committer: Bazaar Package Importer
  • Author(s): Rene Mayrhofer
  • Date: 2008-12-05 17:21:42 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20081205172142-9g77wgyzcj0blq7p
* New upstream release, fixes a MOBIKE issue.
  Closes: #507542: strongswan: endless loop
* Explicitly enable compilation with libcurl for CRL fetching
  Closes: #497756: strongswan: not compiled with curl support; crl 
                   fetching not available
* Enable compilation with SSH agent support.

Show diffs side-by-side

added added

removed removed

Lines of Context:
141
141
/* Pools */
142
142
 
143
143
INSERT INTO pools (
144
 
  name, start, end, next, timeout
145
 
) VALUES (
146
 
  'bigpool', X'0a030001', X'0a03fffe', X'0a030001', 0 
 
144
  name, start, end, timeout
 
145
) VALUES (
 
146
  'bigpool', X'0a030001', X'0a030006', 0 
 
147
);
 
148
 
 
149
INSERT INTO addresses (
 
150
  pool, address
 
151
) VALUES (
 
152
  1, X'0a030001'
 
153
);
 
154
 
 
155
INSERT INTO addresses (
 
156
  pool, address
 
157
) VALUES (
 
158
  1, X'0a030002'
 
159
);
 
160
 
 
161
INSERT INTO addresses (
 
162
  pool, address
 
163
) VALUES (
 
164
  1, X'0a030003'
 
165
);
 
166
 
 
167
INSERT INTO addresses (
 
168
  pool, address
 
169
) VALUES (
 
170
  1, X'0a030004'
 
171
);
 
172
 
 
173
INSERT INTO addresses (
 
174
  pool, address
 
175
) VALUES (
 
176
  1, X'0a030005'
 
177
);
 
178
 
 
179
INSERT INTO addresses (
 
180
  pool, address
 
181
) VALUES (
 
182
  1, X'0a030006'
147
183
);