mirror of
https://github.com/strongswan/strongswan.git
synced 2025-10-05 00:00:45 -04:00
Replace some other mentions of "Linux strongSwan"
This commit is contained in:
parent
454069e094
commit
7550463d51
@ -426,13 +426,13 @@ lists currently loaded certificates by streaming list-cert events. This
|
|||||||
call includes all certificates known by the daemon, not only those loaded
|
call includes all certificates known by the daemon, not only those loaded
|
||||||
over VICI.
|
over VICI.
|
||||||
|
|
||||||
my %vars = ( subject => 'C=CH, O=Linux strongSwan, CN=moon.strongswan.org' );
|
my %vars = ( subject => 'C=CH, O=strongSwan Project, CN=moon.strongswan.org' );
|
||||||
my $certs = $session->list_certs(Vici::Message->new(\%vars));
|
my $certs = $session->list_certs(Vici::Message->new(\%vars));
|
||||||
|
|
||||||
=cut
|
=cut
|
||||||
|
|
||||||
print "----- list-certs -----\n";
|
print "----- list-certs -----\n";
|
||||||
%vars = ( subject => 'C=CH, O=Linux strongSwan, CN=moon.strongswan.org' );
|
%vars = ( subject => 'C=CH, O=strongSwan Project, CN=moon.strongswan.org' );
|
||||||
my $certs = $session->list_certs(Vici::Message->new(\%vars));
|
my $certs = $session->list_certs(Vici::Message->new(\%vars));
|
||||||
foreach my $cert (@$certs)
|
foreach my $cert (@$certs)
|
||||||
{
|
{
|
||||||
|
@ -298,7 +298,7 @@ struct identification_t {
|
|||||||
* - ID_IPV6_ADDR: 2001:0db8:85a3:08d3:1319:8a2e:0370:7345
|
* - ID_IPV6_ADDR: 2001:0db8:85a3:08d3:1319:8a2e:0370:7345
|
||||||
* - ID_FQDN: www.strongswan.org (optionally with a prepended @)
|
* - ID_FQDN: www.strongswan.org (optionally with a prepended @)
|
||||||
* - ID_RFC822_ADDR: alice@wonderland.org
|
* - ID_RFC822_ADDR: alice@wonderland.org
|
||||||
* - ID_DER_ASN1_DN: C=CH, O=Linux strongSwan, CN=bob
|
* - ID_DER_ASN1_DN: C=CH, O=strongSwan Project, CN=bob
|
||||||
*
|
*
|
||||||
* In favor of pluto, domainnames are prepended with an @, since
|
* In favor of pluto, domainnames are prepended with an @, since
|
||||||
* pluto resolves domainnames without an @ to IPv4 addresses. Since
|
* pluto resolves domainnames without an @ to IPv4 addresses. Since
|
||||||
|
@ -24,5 +24,5 @@ config setup
|
|||||||
# leftcert=myCert.pem
|
# leftcert=myCert.pem
|
||||||
# right=192.168.0.2
|
# right=192.168.0.2
|
||||||
# rightsubnet=10.2.0.0/16
|
# rightsubnet=10.2.0.0/16
|
||||||
# rightid="C=CH, O=Linux strongSwan CN=peer name"
|
# rightid="C=CH, O=strongSwan Project CN=peer name"
|
||||||
# auto=start
|
# auto=start
|
||||||
|
@ -26,7 +26,7 @@ INSERT INTO identities (
|
|||||||
|
|
||||||
INSERT INTO identities (
|
INSERT INTO identities (
|
||||||
type, data
|
type, data
|
||||||
) VALUES ( /* subjkey of 'C=CH, O=Linux strongSwan, CN=dave@strongswan.org' */
|
) VALUES ( /* subjkey of 'C=CH, O=strongSwan Project, CN=dave@strongswan.org' */
|
||||||
11, X'DAVE_SPK_HEX'
|
11, X'DAVE_SPK_HEX'
|
||||||
);
|
);
|
||||||
|
|
||||||
@ -40,13 +40,13 @@ INSERT INTO identities (
|
|||||||
|
|
||||||
INSERT INTO certificates (
|
INSERT INTO certificates (
|
||||||
type, keytype, data
|
type, keytype, data
|
||||||
) VALUES ( /* C=CH, O=Linux strongSwan, CN=strongSwan Root CA */
|
) VALUES ( /* C=CH, O=strongSwan Project, CN=strongSwan Root CA */
|
||||||
1, 1, X'CA_CERT_HEX'
|
1, 1, X'CA_CERT_HEX'
|
||||||
);
|
);
|
||||||
|
|
||||||
INSERT INTO certificates (
|
INSERT INTO certificates (
|
||||||
type, keytype, data
|
type, keytype, data
|
||||||
) VALUES ( /* C=CH, O=Linux strongSwan, CN=dave@strongswan.org */
|
) VALUES ( /* C=CH, O=strongSwan Project, CN=dave@strongswan.org */
|
||||||
1, 1, X'DAVE_CERT_HEX'
|
1, 1, X'DAVE_CERT_HEX'
|
||||||
);
|
);
|
||||||
|
|
||||||
@ -84,7 +84,7 @@ INSERT INTO certificate_identity (
|
|||||||
|
|
||||||
INSERT INTO private_keys (
|
INSERT INTO private_keys (
|
||||||
type, data
|
type, data
|
||||||
) VALUES ( /* key of 'C=CH, O=Linux strongSwan, CN=dave@strongswan.org' */
|
) VALUES ( /* key of 'C=CH, O=strongSwan Project, CN=dave@strongswan.org' */
|
||||||
1, X'DAVE_KEY_HEX'
|
1, X'DAVE_KEY_HEX'
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -26,7 +26,7 @@ INSERT INTO identities (
|
|||||||
|
|
||||||
INSERT INTO identities (
|
INSERT INTO identities (
|
||||||
type, data
|
type, data
|
||||||
) VALUES ( /* subjkey of 'C=CH, O=Linux strongSwan, CN=moon.strongswan.org' */
|
) VALUES ( /* subjkey of 'C=CH, O=strongSwan Project, CN=moon.strongswan.org' */
|
||||||
11, X'MOON_SPK_HEX'
|
11, X'MOON_SPK_HEX'
|
||||||
);
|
);
|
||||||
|
|
||||||
@ -46,13 +46,13 @@ INSERT INTO identities (
|
|||||||
|
|
||||||
INSERT INTO certificates (
|
INSERT INTO certificates (
|
||||||
type, keytype, data
|
type, keytype, data
|
||||||
) VALUES ( /* C=CH, O=Linux strongSwan, CN=strongSwan Root CA */
|
) VALUES ( /* C=CH, O=strongSwan Project, CN=strongSwan Root CA */
|
||||||
1, 1, X'CA_CERT_HEX'
|
1, 1, X'CA_CERT_HEX'
|
||||||
);
|
);
|
||||||
|
|
||||||
INSERT INTO certificates (
|
INSERT INTO certificates (
|
||||||
type, keytype, data
|
type, keytype, data
|
||||||
) VALUES ( /* C=CH, O=Linux strongSwan, CN=moon.strongswan.org */
|
) VALUES ( /* C=CH, O=strongSwan Project, CN=moon.strongswan.org */
|
||||||
1, 1, X'MOON_CERT_HEX'
|
1, 1, X'MOON_CERT_HEX'
|
||||||
);
|
);
|
||||||
|
|
||||||
@ -90,7 +90,7 @@ INSERT INTO certificate_identity (
|
|||||||
|
|
||||||
INSERT INTO private_keys (
|
INSERT INTO private_keys (
|
||||||
type, data
|
type, data
|
||||||
) VALUES ( /* key of 'C=CH, O=Linux strongSwan, CN=moon.strongswan.org' */
|
) VALUES ( /* key of 'C=CH, O=strongSwan Project, CN=moon.strongswan.org' */
|
||||||
1, X'MOON_KEY_HEX'
|
1, X'MOON_KEY_HEX'
|
||||||
);
|
);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user