mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
Added instructions to generate CSR.
The certificate request dialog box has been modified to show the OpenSSL commands for generating a CSR. The realm and entry names in the test data have been fixed to be more consistent. Ticket #1012
This commit is contained in:
parent
3d1b864024
commit
f56f8a34d3
@ -437,8 +437,9 @@ IPA.cert.request_dialog = function(spec) {
|
||||
|
||||
var that = IPA.dialog(spec);
|
||||
|
||||
that.width = spec.width || 500;
|
||||
that.height = spec.height || 400;
|
||||
that.width = spec.width || 600;
|
||||
that.height = spec.height || 450;
|
||||
that.message = spec.message;
|
||||
|
||||
that.request = spec.request;
|
||||
|
||||
@ -466,14 +467,11 @@ IPA.cert.request_dialog = function(spec) {
|
||||
});
|
||||
|
||||
that.create = function() {
|
||||
that.container.append(IPA.messages.objects.cert.enter_csr+':');
|
||||
that.container.append('<br/>');
|
||||
that.container.append('<br/>');
|
||||
that.container.append(that.message);
|
||||
|
||||
that.textarea = $('<textarea/>', {
|
||||
style: 'width: 100%; height: 225px;'
|
||||
}).appendTo(that.container);
|
||||
|
||||
};
|
||||
|
||||
return that;
|
||||
@ -829,8 +827,9 @@ IPA.cert.status_widget = function(spec) {
|
||||
title = title.replace('${primary_key}', entity_name);
|
||||
|
||||
var dialog = IPA.cert.request_dialog({
|
||||
'title': title,
|
||||
'request': function(values) {
|
||||
title: title,
|
||||
message: that.request_message,
|
||||
request: function(values) {
|
||||
var request = values['request'];
|
||||
|
||||
IPA.command({
|
||||
|
@ -861,14 +861,35 @@ IPA.host_password_field = function (spec) {
|
||||
IPA.widget_factories['host_password'] = IPA.host_password_widget;
|
||||
IPA.field_factories['host_password'] = IPA.host_password_field;
|
||||
|
||||
IPA.host_certificate_status_widget = function (spec) {
|
||||
IPA.host.certificate_status_field = function(spec) {
|
||||
|
||||
spec = spec || {};
|
||||
|
||||
var that = IPA.cert.status_field(spec);
|
||||
|
||||
that.load = function(result) {
|
||||
|
||||
that.widget.result = result;
|
||||
|
||||
var message = IPA.messages.objects.cert.request_message;
|
||||
message = message.replace(/\$\{hostname\}/g, result.fqdn[0]);
|
||||
message = message.replace(/\$\{realm\}/g, IPA.env.realm);
|
||||
that.widget.request_message = message;
|
||||
|
||||
that.reset();
|
||||
};
|
||||
|
||||
return that;
|
||||
};
|
||||
|
||||
IPA.host.certificate_status_widget = function(spec) {
|
||||
|
||||
spec = spec || {};
|
||||
|
||||
var that = IPA.cert.status_widget(spec);
|
||||
|
||||
that.get_entity_pkey = function(result) {
|
||||
var values = result['fqdn'];
|
||||
var values = result.fqdn;
|
||||
return values ? values[0] : null;
|
||||
};
|
||||
|
||||
@ -877,19 +898,19 @@ IPA.host_certificate_status_widget = function (spec) {
|
||||
};
|
||||
|
||||
that.get_entity_principal = function(result) {
|
||||
var values = result['krbprincipalname'];
|
||||
var values = result.krbprincipalname;
|
||||
return values ? values[0] : null;
|
||||
};
|
||||
|
||||
that.get_entity_certificate = function(result) {
|
||||
var values = result['usercertificate'];
|
||||
var values = result.usercertificate;
|
||||
return values ? values[0].__base64__ : null;
|
||||
};
|
||||
|
||||
return that;
|
||||
};
|
||||
|
||||
IPA.widget_factories['host_certificate_status'] = IPA.host_certificate_status_widget;
|
||||
IPA.field_factories['host_certificate_status'] = IPA.cert.status_field;
|
||||
IPA.widget_factories['host_certificate_status'] = IPA.host.certificate_status_widget;
|
||||
IPA.field_factories['host_certificate_status'] = IPA.host.certificate_status_field;
|
||||
|
||||
IPA.register('host', IPA.host.entity);
|
||||
|
@ -180,7 +180,7 @@ IPA.service_name_field = function(spec) {
|
||||
|
||||
that.field_load(record);
|
||||
|
||||
var krbprincipalname = record['krbprincipalname'][0];
|
||||
var krbprincipalname = record.krbprincipalname[0];
|
||||
var value = krbprincipalname.replace(/\/.*$/, '');
|
||||
that.values = [value];
|
||||
|
||||
@ -204,7 +204,7 @@ IPA.service_host_field = function(spec) {
|
||||
|
||||
that.field_load(record);
|
||||
|
||||
var krbprincipalname = record['krbprincipalname'][0];
|
||||
var krbprincipalname = record.krbprincipalname[0];
|
||||
var value = krbprincipalname.replace(/^.*\//, '').replace(/@.*$/, '');
|
||||
that.values = [value];
|
||||
|
||||
@ -362,14 +362,38 @@ IPA.service_provisioning_status_field = function (spec) {
|
||||
IPA.field_factories['service_provisioning_status'] = IPA.service_provisioning_status_field;
|
||||
IPA.widget_factories['service_provisioning_status'] = IPA.service_provisioning_status_widget;
|
||||
|
||||
IPA.service_certificate_status_widget = function (spec) {
|
||||
IPA.service.certificate_status_field = function(spec) {
|
||||
|
||||
spec = spec || {};
|
||||
|
||||
var that = IPA.cert.status_field(spec);
|
||||
|
||||
that.load = function(result) {
|
||||
|
||||
that.widget.result = result;
|
||||
|
||||
var krbprincipalname = result.krbprincipalname[0];
|
||||
var hostname = krbprincipalname.replace(/^.*\//, '').replace(/@.*$/, '');
|
||||
|
||||
var message = IPA.messages.objects.cert.request_message;
|
||||
message = message.replace(/\$\{hostname\}/g, hostname);
|
||||
message = message.replace(/\$\{realm\}/g, IPA.env.realm);
|
||||
that.widget.request_message = message;
|
||||
|
||||
that.reset();
|
||||
};
|
||||
|
||||
return that;
|
||||
};
|
||||
|
||||
IPA.service.certificate_status_widget = function(spec) {
|
||||
|
||||
spec = spec || {};
|
||||
|
||||
var that = IPA.cert.status_widget(spec);
|
||||
|
||||
that.get_entity_pkey = function(result) {
|
||||
var values = result['krbprincipalname'];
|
||||
var values = result.krbprincipalname;
|
||||
return values ? values[0] : null;
|
||||
};
|
||||
|
||||
@ -383,14 +407,14 @@ IPA.service_certificate_status_widget = function (spec) {
|
||||
};
|
||||
|
||||
that.get_entity_certificate = function(result) {
|
||||
var values = result['usercertificate'];
|
||||
var values = result.usercertificate;
|
||||
return values ? values[0].__base64__ : null;
|
||||
};
|
||||
|
||||
return that;
|
||||
};
|
||||
|
||||
IPA.widget_factories['service_certificate_status'] = IPA.service_certificate_status_widget;
|
||||
IPA.field_factories['service_certificate_status'] = IPA.cert.status_field;
|
||||
IPA.widget_factories['service_certificate_status'] = IPA.service.certificate_status_widget;
|
||||
IPA.field_factories['service_certificate_status'] = IPA.service.certificate_status_field;
|
||||
|
||||
IPA.register('service', IPA.service.entity);
|
||||
|
@ -12,7 +12,7 @@
|
||||
"description": [
|
||||
"/var/log/ipa mountinfogoeshere"
|
||||
],
|
||||
"dn": "description=/var/log/ipa mountinfogoeshere,automountmapname=auto.master,cn=default,cn=automount,dc=dev,dc=example,dc=com",
|
||||
"dn": "description=/var/log/ipa mountinfogoeshere,automountmapname=auto.master,cn=default,cn=automount,dc=example,dc=com",
|
||||
"objectclass": [
|
||||
"automount",
|
||||
"top"
|
||||
|
@ -14,7 +14,7 @@
|
||||
"description": [
|
||||
"nfsserver:/var/log/dirsrv /var/log/dirsrv"
|
||||
],
|
||||
"dn": "description=nfsserver:/var/log/dirsrv /var/log/dirsrv,automountmapname=auto.log,cn=bos,cn=automount,dc=dev,dc=example,dc=com",
|
||||
"dn": "description=nfsserver:/var/log/dirsrv /var/log/dirsrv,automountmapname=auto.log,cn=bos,cn=automount,dc=example,dc=com",
|
||||
"objectclass": [
|
||||
"automount",
|
||||
"top"
|
||||
@ -30,7 +30,7 @@
|
||||
"description": [
|
||||
"nfsserver:/var/log/ipa /var/log/ipa"
|
||||
],
|
||||
"dn": "description=nfsserver:/var/log/ipa /var/log/ipa,automountmapname=auto.log,cn=bos,cn=automount,dc=dev,dc=example,dc=com",
|
||||
"dn": "description=nfsserver:/var/log/ipa /var/log/ipa,automountmapname=auto.log,cn=bos,cn=automount,dc=example,dc=com",
|
||||
"objectclass": [
|
||||
"automount",
|
||||
"top"
|
||||
|
@ -20,7 +20,7 @@
|
||||
"description": [
|
||||
"/home auto.home"
|
||||
],
|
||||
"dn": "description=/home auto.home,automountmapname=auto.master,cn=default,cn=automount,dc=dev,dc=example,dc=com",
|
||||
"dn": "description=/home auto.home,automountmapname=auto.master,cn=default,cn=automount,dc=example,dc=com",
|
||||
"objectclass": [
|
||||
"automount",
|
||||
"top"
|
||||
|
@ -6,7 +6,7 @@
|
||||
"cn": [
|
||||
"YYZ"
|
||||
],
|
||||
"dn": "cn=yyz,cn=automount,dc=dev,dc=example,dc=com",
|
||||
"dn": "cn=yyz,cn=automount,dc=example,dc=com",
|
||||
"objectclass": [
|
||||
"nscontainer",
|
||||
"top"
|
||||
|
@ -6,7 +6,7 @@
|
||||
"automountmapname": [
|
||||
"auto.log"
|
||||
],
|
||||
"dn": "automountmapname=auto.log,cn=mtv,cn=automount,dc=dev,dc=example,dc=com",
|
||||
"dn": "automountmapname=auto.log,cn=mtv,cn=automount,dc=example,dc=com",
|
||||
"objectclass": [
|
||||
"automountmap",
|
||||
"top"
|
||||
|
@ -9,7 +9,7 @@
|
||||
"description": [
|
||||
"test"
|
||||
],
|
||||
"dn": "automountmapname=test,cn=default,cn=automount,dc=dev,dc=example,dc=com",
|
||||
"dn": "automountmapname=test,cn=default,cn=automount,dc=example,dc=com",
|
||||
"objectclass": [
|
||||
"automountmap",
|
||||
"top"
|
||||
|
@ -8,7 +8,7 @@
|
||||
"automountmapname": [
|
||||
"auto.direct"
|
||||
],
|
||||
"dn": "automountmapname=auto.direct,cn=bos,cn=automount,dc=dev,dc=example,dc=com",
|
||||
"dn": "automountmapname=auto.direct,cn=bos,cn=automount,dc=example,dc=com",
|
||||
"objectclass": [
|
||||
"automountmap",
|
||||
"top"
|
||||
@ -18,7 +18,7 @@
|
||||
"automountmapname": [
|
||||
"auto.home"
|
||||
],
|
||||
"dn": "automountmapname=auto.home,cn=bos,cn=automount,dc=dev,dc=example,dc=com",
|
||||
"dn": "automountmapname=auto.home,cn=bos,cn=automount,dc=example,dc=com",
|
||||
"objectclass": [
|
||||
"automountmap",
|
||||
"top"
|
||||
@ -28,7 +28,7 @@
|
||||
"automountmapname": [
|
||||
"auto.log"
|
||||
],
|
||||
"dn": "automountmapname=auto.log,cn=bos,cn=automount,dc=dev,dc=example,dc=com",
|
||||
"dn": "automountmapname=auto.log,cn=bos,cn=automount,dc=example,dc=com",
|
||||
"objectclass": [
|
||||
"automountmap",
|
||||
"top"
|
||||
@ -38,7 +38,7 @@
|
||||
"automountmapname": [
|
||||
"auto.master"
|
||||
],
|
||||
"dn": "automountmapname=auto.master,cn=bos,cn=automount,dc=dev,dc=example,dc=com",
|
||||
"dn": "automountmapname=auto.master,cn=bos,cn=automount,dc=example,dc=com",
|
||||
"objectclass": [
|
||||
"automountmap",
|
||||
"top"
|
||||
|
@ -8,25 +8,25 @@
|
||||
"automountmapname": [
|
||||
"auto.direct"
|
||||
],
|
||||
"dn": "automountmapname=auto.direct,cn=bos,cn=automount,dc=dev,dc=example,dc=com"
|
||||
"dn": "automountmapname=auto.direct,cn=bos,cn=automount,dc=example,dc=com"
|
||||
},
|
||||
{
|
||||
"automountmapname": [
|
||||
"auto.home"
|
||||
],
|
||||
"dn": "automountmapname=auto.home,cn=bos,cn=automount,dc=dev,dc=example,dc=com"
|
||||
"dn": "automountmapname=auto.home,cn=bos,cn=automount,dc=example,dc=com"
|
||||
},
|
||||
{
|
||||
"automountmapname": [
|
||||
"auto.log"
|
||||
],
|
||||
"dn": "automountmapname=auto.log,cn=bos,cn=automount,dc=dev,dc=example,dc=com"
|
||||
"dn": "automountmapname=auto.log,cn=bos,cn=automount,dc=example,dc=com"
|
||||
},
|
||||
{
|
||||
"automountmapname": [
|
||||
"auto.master"
|
||||
],
|
||||
"dn": "automountmapname=auto.master,cn=bos,cn=automount,dc=dev,dc=example,dc=com"
|
||||
"dn": "automountmapname=auto.master,cn=bos,cn=automount,dc=example,dc=com"
|
||||
}
|
||||
],
|
||||
"summary": null,
|
||||
|
@ -10,7 +10,7 @@
|
||||
"automountmapname": [
|
||||
"auto.direct"
|
||||
],
|
||||
"dn": "automountmapname=auto.direct,cn=bos,cn=automount,dc=dev,dc=example,dc=com",
|
||||
"dn": "automountmapname=auto.direct,cn=bos,cn=automount,dc=example,dc=com",
|
||||
"objectclass": [
|
||||
"automountmap",
|
||||
"top"
|
||||
@ -25,7 +25,7 @@
|
||||
"automountmapname": [
|
||||
"auto.home"
|
||||
],
|
||||
"dn": "automountmapname=auto.home,cn=bos,cn=automount,dc=dev,dc=example,dc=com",
|
||||
"dn": "automountmapname=auto.home,cn=bos,cn=automount,dc=example,dc=com",
|
||||
"objectclass": [
|
||||
"automountmap",
|
||||
"top"
|
||||
@ -40,7 +40,7 @@
|
||||
"automountmapname": [
|
||||
"auto.log"
|
||||
],
|
||||
"dn": "automountmapname=auto.log,cn=bos,cn=automount,dc=dev,dc=example,dc=com",
|
||||
"dn": "automountmapname=auto.log,cn=bos,cn=automount,dc=example,dc=com",
|
||||
"objectclass": [
|
||||
"automountmap",
|
||||
"top"
|
||||
@ -55,7 +55,7 @@
|
||||
"automountmapname": [
|
||||
"auto.master"
|
||||
],
|
||||
"dn": "automountmapname=auto.master,cn=bos,cn=automount,dc=dev,dc=example,dc=com",
|
||||
"dn": "automountmapname=auto.master,cn=bos,cn=automount,dc=example,dc=com",
|
||||
"objectclass": [
|
||||
"automountmap",
|
||||
"top"
|
||||
|
@ -4,12 +4,12 @@
|
||||
"result": {
|
||||
"result": {
|
||||
"certificate": "MIICAjCCAWugAwIBAgICBAswDQYJKoZIhvcNAQEFBQAwKTEnMCUGA1UEAxMeSVBBIFRlc3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5MB4XDTEwMTAwNzIzMzk0NFoXDTE1MTAwNzIzMzk0NFowKDEMMAoGA1UECgwDSVBBMRgwFgYDVQQDDA9kZXYuZXhhbXBsZS5jb20wgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAOTXyj8grVB7Rj95RFawgdwn9OYZ03LWHZ+HMYggu2/xCCrUrdThP14YBlVqZumjVJSclj6T4ACjjdPJq9JTTmx7gMizDTReus7IPlS6fCxb5v5whQJZsEksXL04OxUMl25euPRFkYcTK1rdW47+AkG10j1qeNW+B6CpdQGR6eM/AgMBAAGjOjA4MBEGCWCGSAGG+EIBAQQEAwIGQDATBgNVHSUEDDAKBggrBgEFBQcDATAOBgNVHQ8BAf8EBAMCBPAwDQYJKoZIhvcNAQEFBQADgYEASIhq723VL5xP0q51MYXFlGU1boD7pPD1pIQspD/MjCIEupcbH2kAo4wf+EiKsXR0rs+WZkaSgvFqaM4OQ2kWSFTiqmFXFDBEi6EFr68yLg7IpQpNTzVBXERd8B4GwNL9wrRw60jPXlUK29DPBsdGq8fDgX18l39wKkWXv7p1to4=",
|
||||
"issuer": "CN=Certificate Authority,O=IPA",
|
||||
"issuer": "CN=Certificate Authority,O=EXAMPLE.COM",
|
||||
"md5_fingerprint": "08:86:a9:f9:87:af:0d:d7:42:01:e0:5f:12:9b:32:7f",
|
||||
"request_id": "1",
|
||||
"serial_number": "1",
|
||||
"sha1_fingerprint": "b8:4c:4b:79:4f:13:03:79:47:08:fa:6b:52:63:3d:f9:15:8e:7e:dc",
|
||||
"subject": "CN=dev.example.com,O=IPA",
|
||||
"subject": "CN=dev.example.com,O=EXAMPLE.COM",
|
||||
"valid_not_after": "Tue Oct 13 01:59:32 2015 UTC",
|
||||
"valid_not_before": "Wed Oct 13 01:59:32 2010 UTC"
|
||||
}
|
||||
|
@ -4,11 +4,11 @@
|
||||
"result": {
|
||||
"result": {
|
||||
"certificate": "MIICAjCCAWugAwIBAgICBAswDQYJKoZIhvcNAQEFBQAwKTEnMCUGA1UEAxMeSVBBIFRlc3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5MB4XDTEwMTAwNzIzMzk0NFoXDTE1MTAwNzIzMzk0NFowKDEMMAoGA1UECgwDSVBBMRgwFgYDVQQDDA9kZXYuZXhhbXBsZS5jb20wgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAOTXyj8grVB7Rj95RFawgdwn9OYZ03LWHZ+HMYggu2/xCCrUrdThP14YBlVqZumjVJSclj6T4ACjjdPJq9JTTmx7gMizDTReus7IPlS6fCxb5v5whQJZsEksXL04OxUMl25euPRFkYcTK1rdW47+AkG10j1qeNW+B6CpdQGR6eM/AgMBAAGjOjA4MBEGCWCGSAGG+EIBAQQEAwIGQDATBgNVHSUEDDAKBggrBgEFBQcDATAOBgNVHQ8BAf8EBAMCBPAwDQYJKoZIhvcNAQEFBQADgYEASIhq723VL5xP0q51MYXFlGU1boD7pPD1pIQspD/MjCIEupcbH2kAo4wf+EiKsXR0rs+WZkaSgvFqaM4OQ2kWSFTiqmFXFDBEi6EFr68yLg7IpQpNTzVBXERd8B4GwNL9wrRw60jPXlUK29DPBsdGq8fDgX18l39wKkWXv7p1to4=",
|
||||
"issuer": "CN=Certificate Authority,O=IPA",
|
||||
"issuer": "CN=Certificate Authority,O=EXAMPLE.COM",
|
||||
"md5_fingerprint": "08:86:a9:f9:87:af:0d:d7:42:01:e0:5f:12:9b:32:7f",
|
||||
"serial_number": "1",
|
||||
"sha1_fingerprint": "b8:4c:4b:79:4f:13:03:79:47:08:fa:6b:52:63:3d:f9:15:8e:7e:dc",
|
||||
"subject": "CN=dev.example.com,O=IPA",
|
||||
"subject": "CN=dev.example.com,O=EXAMPLE.COM",
|
||||
"valid_not_after": "Tue Oct 13 01:59:32 2015 UTC",
|
||||
"valid_not_before": "Wed Oct 13 01:59:32 2010 UTC"
|
||||
}
|
||||
|
@ -28,9 +28,9 @@
|
||||
"cn": [
|
||||
"ipaConfig"
|
||||
],
|
||||
"dn": "cn=ipaconfig,cn=etc,dc=dev,dc=example,dc=com",
|
||||
"dn": "cn=ipaconfig,cn=etc,dc=example,dc=com",
|
||||
"ipacertificatesubjectbase": [
|
||||
"O=DEV.EXAMPLE.COM"
|
||||
"O=EXAMPLE.COM"
|
||||
],
|
||||
"ipaconfigstring": [
|
||||
"AllowNThash"
|
||||
|
@ -6,7 +6,7 @@
|
||||
"arecord": [
|
||||
"1.2.3.4"
|
||||
],
|
||||
"dn": "idnsname=a4,idnsname=dev.example.com,cn=dns,dc=example,dc=com",
|
||||
"dn": "idnsname=a4,idnsname=example.com,cn=dns,dc=example,dc=com",
|
||||
"idnsname": [
|
||||
"a4"
|
||||
],
|
||||
|
@ -5,7 +5,7 @@
|
||||
"count": 12,
|
||||
"result": [
|
||||
{
|
||||
"dn": "idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
|
||||
"dn": "idnsname=example.com,cn=dns,dc=example,dc=com",
|
||||
"idnsname": [
|
||||
"@"
|
||||
],
|
||||
@ -14,16 +14,16 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
"dn": "idnsname=_kerberos,idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
|
||||
"dn": "idnsname=_kerberos,idnsname=example.com,cn=dns,dc=example,dc=com",
|
||||
"idnsname": [
|
||||
"_kerberos"
|
||||
],
|
||||
"txtrecord": [
|
||||
"DEV.EXAMPLE.COM"
|
||||
"EXAMPLE.COM"
|
||||
]
|
||||
},
|
||||
{
|
||||
"dn": "idnsname=_kerberos-master._tcp,idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
|
||||
"dn": "idnsname=_kerberos-master._tcp,idnsname=example.com,cn=dns,dc=example,dc=com",
|
||||
"idnsname": [
|
||||
"_kerberos-master._tcp"
|
||||
],
|
||||
@ -32,7 +32,7 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
"dn": "idnsname=_kerberos-master._udp,idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
|
||||
"dn": "idnsname=_kerberos-master._udp,idnsname=example.com,cn=dns,dc=example,dc=com",
|
||||
"idnsname": [
|
||||
"_kerberos-master._udp"
|
||||
],
|
||||
@ -41,7 +41,7 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
"dn": "idnsname=_kerberos._tcp,idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
|
||||
"dn": "idnsname=_kerberos._tcp,idnsname=example.com,cn=dns,dc=example,dc=com",
|
||||
"idnsname": [
|
||||
"_kerberos._tcp"
|
||||
],
|
||||
@ -50,7 +50,7 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
"dn": "idnsname=_kerberos._udp,idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
|
||||
"dn": "idnsname=_kerberos._udp,idnsname=example.com,cn=dns,dc=example,dc=com",
|
||||
"idnsname": [
|
||||
"_kerberos._udp"
|
||||
],
|
||||
@ -59,7 +59,7 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
"dn": "idnsname=_kpasswd._tcp,idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
|
||||
"dn": "idnsname=_kpasswd._tcp,idnsname=example.com,cn=dns,dc=example,dc=com",
|
||||
"idnsname": [
|
||||
"_kpasswd._tcp"
|
||||
],
|
||||
@ -68,7 +68,7 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
"dn": "idnsname=_kpasswd._udp,idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
|
||||
"dn": "idnsname=_kpasswd._udp,idnsname=example.com,cn=dns,dc=example,dc=com",
|
||||
"idnsname": [
|
||||
"_kpasswd._udp"
|
||||
],
|
||||
@ -77,7 +77,7 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
"dn": "idnsname=_ldap._tcp,idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
|
||||
"dn": "idnsname=_ldap._tcp,idnsname=example.com,cn=dns,dc=example,dc=com",
|
||||
"idnsname": [
|
||||
"_ldap._tcp"
|
||||
],
|
||||
@ -86,7 +86,7 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
"dn": "idnsname=_ntp._udp,idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
|
||||
"dn": "idnsname=_ntp._udp,idnsname=example.com,cn=dns,dc=example,dc=com",
|
||||
"idnsname": [
|
||||
"_ntp._udp"
|
||||
],
|
||||
@ -98,7 +98,7 @@
|
||||
"aaaarecord": [
|
||||
"fec0::5054:ff:feb5:5a47"
|
||||
],
|
||||
"dn": "idnsname=dev,idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
|
||||
"dn": "idnsname=dev,idnsname=example.com,cn=dns,dc=example,dc=com",
|
||||
"idnsname": [
|
||||
"dev"
|
||||
]
|
||||
@ -114,7 +114,7 @@
|
||||
"1.3.5.7",
|
||||
"10.10.2.1"
|
||||
],
|
||||
"dn": "idnsname=testrec,idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
|
||||
"dn": "idnsname=testrec,idnsname=example.com,cn=dns,dc=example,dc=com",
|
||||
"idnsname": [
|
||||
"testrec"
|
||||
],
|
||||
|
@ -5,73 +5,73 @@
|
||||
"count": 12,
|
||||
"result": [
|
||||
{
|
||||
"dn": "idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
|
||||
"dn": "idnsname=example.com,cn=dns,dc=example,dc=com",
|
||||
"idnsname": [
|
||||
"@"
|
||||
]
|
||||
},
|
||||
{
|
||||
"dn": "idnsname=_kerberos,idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
|
||||
"dn": "idnsname=_kerberos,idnsname=example.com,cn=dns,dc=example,dc=com",
|
||||
"idnsname": [
|
||||
"_kerberos"
|
||||
]
|
||||
},
|
||||
{
|
||||
"dn": "idnsname=_kerberos-master._tcp,idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
|
||||
"dn": "idnsname=_kerberos-master._tcp,idnsname=example.com,cn=dns,dc=example,dc=com",
|
||||
"idnsname": [
|
||||
"_kerberos-master._tcp"
|
||||
]
|
||||
},
|
||||
{
|
||||
"dn": "idnsname=_kerberos-master._udp,idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
|
||||
"dn": "idnsname=_kerberos-master._udp,idnsname=example.com,cn=dns,dc=example,dc=com",
|
||||
"idnsname": [
|
||||
"_kerberos-master._udp"
|
||||
]
|
||||
},
|
||||
{
|
||||
"dn": "idnsname=_kerberos._tcp,idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
|
||||
"dn": "idnsname=_kerberos._tcp,idnsname=example.com,cn=dns,dc=example,dc=com",
|
||||
"idnsname": [
|
||||
"_kerberos._tcp"
|
||||
]
|
||||
},
|
||||
{
|
||||
"dn": "idnsname=_kerberos._udp,idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
|
||||
"dn": "idnsname=_kerberos._udp,idnsname=example.com,cn=dns,dc=example,dc=com",
|
||||
"idnsname": [
|
||||
"_kerberos._udp"
|
||||
]
|
||||
},
|
||||
{
|
||||
"dn": "idnsname=_kpasswd._tcp,idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
|
||||
"dn": "idnsname=_kpasswd._tcp,idnsname=example.com,cn=dns,dc=example,dc=com",
|
||||
"idnsname": [
|
||||
"_kpasswd._tcp"
|
||||
]
|
||||
},
|
||||
{
|
||||
"dn": "idnsname=_kpasswd._udp,idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
|
||||
"dn": "idnsname=_kpasswd._udp,idnsname=example.com,cn=dns,dc=example,dc=com",
|
||||
"idnsname": [
|
||||
"_kpasswd._udp"
|
||||
]
|
||||
},
|
||||
{
|
||||
"dn": "idnsname=_ldap._tcp,idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
|
||||
"dn": "idnsname=_ldap._tcp,idnsname=example.com,cn=dns,dc=example,dc=com",
|
||||
"idnsname": [
|
||||
"_ldap._tcp"
|
||||
]
|
||||
},
|
||||
{
|
||||
"dn": "idnsname=_ntp._udp,idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
|
||||
"dn": "idnsname=_ntp._udp,idnsname=example.com,cn=dns,dc=example,dc=com",
|
||||
"idnsname": [
|
||||
"_ntp._udp"
|
||||
]
|
||||
},
|
||||
{
|
||||
"dn": "idnsname=dev,idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
|
||||
"dn": "idnsname=dev,idnsname=example.com,cn=dns,dc=example,dc=com",
|
||||
"idnsname": [
|
||||
"dev"
|
||||
]
|
||||
},
|
||||
{
|
||||
"dn": "idnsname=testrec,idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
|
||||
"dn": "idnsname=testrec,idnsname=example.com,cn=dns,dc=example,dc=com",
|
||||
"idnsname": [
|
||||
"testrec"
|
||||
]
|
||||
|
@ -7,7 +7,7 @@
|
||||
{
|
||||
"error": null,
|
||||
"result": {
|
||||
"dn": "idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
|
||||
"dn": "idnsname=example.com,cn=dns,dc=example,dc=com",
|
||||
"idnsname": [
|
||||
"@"
|
||||
],
|
||||
@ -21,12 +21,12 @@
|
||||
{
|
||||
"error": null,
|
||||
"result": {
|
||||
"dn": "idnsname=_kerberos,idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
|
||||
"dn": "idnsname=_kerberos,idnsname=example.com,cn=dns,dc=example,dc=com",
|
||||
"idnsname": [
|
||||
"_kerberos"
|
||||
],
|
||||
"txtrecord": [
|
||||
"DEV.EXAMPLE.COM"
|
||||
"EXAMPLE.COM"
|
||||
]
|
||||
},
|
||||
"summary": null,
|
||||
@ -35,7 +35,7 @@
|
||||
{
|
||||
"error": null,
|
||||
"result": {
|
||||
"dn": "idnsname=_kerberos-master._tcp,idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
|
||||
"dn": "idnsname=_kerberos-master._tcp,idnsname=example.com,cn=dns,dc=example,dc=com",
|
||||
"idnsname": [
|
||||
"_kerberos-master._tcp"
|
||||
],
|
||||
@ -49,7 +49,7 @@
|
||||
{
|
||||
"error": null,
|
||||
"result": {
|
||||
"dn": "idnsname=_kerberos-master._udp,idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
|
||||
"dn": "idnsname=_kerberos-master._udp,idnsname=example.com,cn=dns,dc=example,dc=com",
|
||||
"idnsname": [
|
||||
"_kerberos-master._udp"
|
||||
],
|
||||
@ -63,7 +63,7 @@
|
||||
{
|
||||
"error": null,
|
||||
"result": {
|
||||
"dn": "idnsname=_kerberos._tcp,idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
|
||||
"dn": "idnsname=_kerberos._tcp,idnsname=example.com,cn=dns,dc=example,dc=com",
|
||||
"idnsname": [
|
||||
"_kerberos._tcp"
|
||||
],
|
||||
@ -77,7 +77,7 @@
|
||||
{
|
||||
"error": null,
|
||||
"result": {
|
||||
"dn": "idnsname=_kerberos._udp,idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
|
||||
"dn": "idnsname=_kerberos._udp,idnsname=example.com,cn=dns,dc=example,dc=com",
|
||||
"idnsname": [
|
||||
"_kerberos._udp"
|
||||
],
|
||||
@ -91,7 +91,7 @@
|
||||
{
|
||||
"error": null,
|
||||
"result": {
|
||||
"dn": "idnsname=_kpasswd._tcp,idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
|
||||
"dn": "idnsname=_kpasswd._tcp,idnsname=example.com,cn=dns,dc=example,dc=com",
|
||||
"idnsname": [
|
||||
"_kpasswd._tcp"
|
||||
],
|
||||
@ -105,7 +105,7 @@
|
||||
{
|
||||
"error": null,
|
||||
"result": {
|
||||
"dn": "idnsname=_kpasswd._udp,idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
|
||||
"dn": "idnsname=_kpasswd._udp,idnsname=example.com,cn=dns,dc=example,dc=com",
|
||||
"idnsname": [
|
||||
"_kpasswd._udp"
|
||||
],
|
||||
@ -119,7 +119,7 @@
|
||||
{
|
||||
"error": null,
|
||||
"result": {
|
||||
"dn": "idnsname=_ldap._tcp,idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
|
||||
"dn": "idnsname=_ldap._tcp,idnsname=example.com,cn=dns,dc=example,dc=com",
|
||||
"idnsname": [
|
||||
"_ldap._tcp"
|
||||
],
|
||||
@ -133,7 +133,7 @@
|
||||
{
|
||||
"error": null,
|
||||
"result": {
|
||||
"dn": "idnsname=_ntp._udp,idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
|
||||
"dn": "idnsname=_ntp._udp,idnsname=example.com,cn=dns,dc=example,dc=com",
|
||||
"idnsname": [
|
||||
"_ntp._udp"
|
||||
],
|
||||
@ -150,7 +150,7 @@
|
||||
"aaaarecord": [
|
||||
"fec0::5054:ff:feb5:5a47"
|
||||
],
|
||||
"dn": "idnsname=dev,idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
|
||||
"dn": "idnsname=dev,idnsname=example.com,cn=dns,dc=example,dc=com",
|
||||
"idnsname": [
|
||||
"dev"
|
||||
]
|
||||
@ -171,7 +171,7 @@
|
||||
"1.3.5.7",
|
||||
"10.10.2.1"
|
||||
],
|
||||
"dn": "idnsname=testrec,idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
|
||||
"dn": "idnsname=testrec,idnsname=example.com,cn=dns,dc=example,dc=com",
|
||||
"idnsname": [
|
||||
"testrec"
|
||||
],
|
||||
|
@ -48,7 +48,7 @@
|
||||
"sshfprecord": "rscwo",
|
||||
"txtrecord": "rscwo"
|
||||
},
|
||||
"dn": "idnsname=testrec,idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
|
||||
"dn": "idnsname=testrec,idnsname=example.com,cn=dns,dc=example,dc=com",
|
||||
"idnsname": [
|
||||
"testrec"
|
||||
],
|
||||
|
@ -3,12 +3,12 @@
|
||||
"id": 3,
|
||||
"result": {
|
||||
"result": {
|
||||
"dn": "idnsname=dev.example.com,cn=dns,dc=example,dc=com",
|
||||
"dn": "idnsname=example.com,cn=dns,dc=example,dc=com",
|
||||
"idnsallowdynupdate": [
|
||||
"FALSE"
|
||||
],
|
||||
"idnsname": [
|
||||
"dev.example.com"
|
||||
"example.com"
|
||||
],
|
||||
"idnssoaexpire": [
|
||||
"1209600"
|
||||
@ -26,7 +26,7 @@
|
||||
"900"
|
||||
],
|
||||
"idnssoarname": [
|
||||
"root.dev.example.com."
|
||||
"root.example.com."
|
||||
],
|
||||
"idnssoaserial": [
|
||||
"2010021201"
|
||||
@ -41,6 +41,6 @@
|
||||
]
|
||||
},
|
||||
"summary": null,
|
||||
"value": "dev.example.com"
|
||||
"value": "example.com"
|
||||
}
|
||||
}
|
@ -2,8 +2,52 @@
|
||||
"error": null,
|
||||
"id": 6,
|
||||
"result": {
|
||||
"count": 3,
|
||||
"count": 2,
|
||||
"result": [
|
||||
{
|
||||
"dn": "idnsname=1.168.192.in-addr.arpa,cn=dns,dc=example,dc=com",
|
||||
"idnsallowdynupdate": [
|
||||
"TRUE"
|
||||
],
|
||||
"idnsname": [
|
||||
"1.168.192.in-addr.arpa"
|
||||
],
|
||||
"idnssoaexpire": [
|
||||
"1209600"
|
||||
],
|
||||
"idnssoaminimum": [
|
||||
"3600"
|
||||
],
|
||||
"idnssoamname": [
|
||||
"dev.example.com."
|
||||
],
|
||||
"idnssoarefresh": [
|
||||
"3600"
|
||||
],
|
||||
"idnssoaretry": [
|
||||
"900"
|
||||
],
|
||||
"idnssoarname": [
|
||||
"root.1.168.192.in-addr.arpa."
|
||||
],
|
||||
"idnssoaserial": [
|
||||
"2010021201"
|
||||
],
|
||||
"idnsupdatepolicy": [
|
||||
"grant EXAMPLE.COM krb5-subdomain 1.168.192.in-addr.arpa. PTR;"
|
||||
],
|
||||
"idnszoneactive": [
|
||||
"TRUE"
|
||||
],
|
||||
"nsrecord": [
|
||||
"dev.example.com."
|
||||
],
|
||||
"objectclass": [
|
||||
"top",
|
||||
"idnsrecord",
|
||||
"idnszone"
|
||||
]
|
||||
},
|
||||
{
|
||||
"dn": "idnsname=example.com,cn=dns,dc=example,dc=com",
|
||||
"idnsallowdynupdate": [
|
||||
@ -19,95 +63,7 @@
|
||||
"3600"
|
||||
],
|
||||
"idnssoamname": [
|
||||
"ipa.example.com."
|
||||
],
|
||||
"idnssoarefresh": [
|
||||
"3600"
|
||||
],
|
||||
"idnssoaretry": [
|
||||
"900"
|
||||
],
|
||||
"idnssoarname": [
|
||||
"root.ipa.example.com."
|
||||
],
|
||||
"idnssoaserial": [
|
||||
"2010021201"
|
||||
],
|
||||
"idnsupdatepolicy": [
|
||||
"grant EXAMPLE.COM krb5-self * A;"
|
||||
],
|
||||
"idnszoneactive": [
|
||||
"TRUE"
|
||||
],
|
||||
"nsrecord": [
|
||||
"ipa.example.com."
|
||||
],
|
||||
"objectclass": [
|
||||
"top",
|
||||
"idnsrecord",
|
||||
"idnszone"
|
||||
]
|
||||
},
|
||||
{
|
||||
"dn": "idnsname=122.168.192.in-addr.arpa,cn=dns,dc=example,dc=com",
|
||||
"idnsallowdynupdate": [
|
||||
"TRUE"
|
||||
],
|
||||
"idnsname": [
|
||||
"122.168.192.in-addr.arpa"
|
||||
],
|
||||
"idnssoaexpire": [
|
||||
"1209600"
|
||||
],
|
||||
"idnssoaminimum": [
|
||||
"3600"
|
||||
],
|
||||
"idnssoamname": [
|
||||
"ipa.example.com."
|
||||
],
|
||||
"idnssoarefresh": [
|
||||
"3600"
|
||||
],
|
||||
"idnssoaretry": [
|
||||
"900"
|
||||
],
|
||||
"idnssoarname": [
|
||||
"root.122.168.192.in-addr.arpa."
|
||||
],
|
||||
"idnssoaserial": [
|
||||
"2010021201"
|
||||
],
|
||||
"idnsupdatepolicy": [
|
||||
"grant EXAMPLE.COM krb5-subdomain 122.168.192.in-addr.arpa. PTR;"
|
||||
],
|
||||
"idnszoneactive": [
|
||||
"TRUE"
|
||||
],
|
||||
"nsrecord": [
|
||||
"ipa.example.com."
|
||||
],
|
||||
"objectclass": [
|
||||
"top",
|
||||
"idnsrecord",
|
||||
"idnszone"
|
||||
]
|
||||
},
|
||||
{
|
||||
"dn": "idnsname=dev.example.com,cn=dns,dc=example,dc=com",
|
||||
"idnsallowdynupdate": [
|
||||
"FALSE"
|
||||
],
|
||||
"idnsname": [
|
||||
"dev.example.com"
|
||||
],
|
||||
"idnssoaexpire": [
|
||||
"1209600"
|
||||
],
|
||||
"idnssoaminimum": [
|
||||
"3600"
|
||||
],
|
||||
"idnssoamname": [
|
||||
"example.com"
|
||||
"dev.example.com."
|
||||
],
|
||||
"idnssoarefresh": [
|
||||
"3600"
|
||||
@ -121,9 +77,15 @@
|
||||
"idnssoaserial": [
|
||||
"2010021201"
|
||||
],
|
||||
"idnsupdatepolicy": [
|
||||
"grant EXAMPLE.COM krb5-self * A;"
|
||||
],
|
||||
"idnszoneactive": [
|
||||
"TRUE"
|
||||
],
|
||||
"nsrecord": [
|
||||
"dev.example.com."
|
||||
],
|
||||
"objectclass": [
|
||||
"top",
|
||||
"idnsrecord",
|
||||
|
@ -2,25 +2,19 @@
|
||||
"error": null,
|
||||
"id": 6,
|
||||
"result": {
|
||||
"count": 3,
|
||||
"count": 2,
|
||||
"result": [
|
||||
{
|
||||
"dn": "idnsname=1.168.192.in-addr.arpa,cn=dns,dc=example,dc=com",
|
||||
"idnsname": [
|
||||
"1.168.192.in-addr.arpa"
|
||||
]
|
||||
},
|
||||
{
|
||||
"dn": "idnsname=example.com,cn=dns,dc=example,dc=com",
|
||||
"idnsname": [
|
||||
"example.com"
|
||||
]
|
||||
},
|
||||
{
|
||||
"dn": "idnsname=122.168.192.in-addr.arpa,cn=dns,dc=example,dc=com",
|
||||
"idnsname": [
|
||||
"122.168.192.in-addr.arpa"
|
||||
]
|
||||
},
|
||||
{
|
||||
"dn": "idnsname=dev.example.com,cn=dns,dc=example,dc=com",
|
||||
"idnsname": [
|
||||
"dev.example.com"
|
||||
]
|
||||
}
|
||||
],
|
||||
"summary": null,
|
||||
|
@ -2,8 +2,57 @@
|
||||
"error": null,
|
||||
"id": 6,
|
||||
"result": {
|
||||
"count": 3,
|
||||
"count": 2,
|
||||
"results": [
|
||||
{
|
||||
"error": null,
|
||||
"result": {
|
||||
"dn": "idnsname=1.168.192.in-addr.arpa,cn=dns,dc=example,dc=com",
|
||||
"idnsallowdynupdate": [
|
||||
"TRUE"
|
||||
],
|
||||
"idnsname": [
|
||||
"1.168.192.in-addr.arpa"
|
||||
],
|
||||
"idnssoaexpire": [
|
||||
"1209600"
|
||||
],
|
||||
"idnssoaminimum": [
|
||||
"3600"
|
||||
],
|
||||
"idnssoamname": [
|
||||
"dev.example.com."
|
||||
],
|
||||
"idnssoarefresh": [
|
||||
"3600"
|
||||
],
|
||||
"idnssoaretry": [
|
||||
"900"
|
||||
],
|
||||
"idnssoarname": [
|
||||
"root.1.168.192.in-addr.arpa."
|
||||
],
|
||||
"idnssoaserial": [
|
||||
"2010021201"
|
||||
],
|
||||
"idnsupdatepolicy": [
|
||||
"grant EXAMPLE.COM krb5-subdomain 1.168.192.in-addr.arpa. PTR;"
|
||||
],
|
||||
"idnszoneactive": [
|
||||
"TRUE"
|
||||
],
|
||||
"nsrecord": [
|
||||
"dev.example.com."
|
||||
],
|
||||
"objectclass": [
|
||||
"top",
|
||||
"idnsrecord",
|
||||
"idnszone"
|
||||
]
|
||||
},
|
||||
"summary": null,
|
||||
"value": "1.168.192.in-addr.arpa"
|
||||
},
|
||||
{
|
||||
"error": null,
|
||||
"result": {
|
||||
@ -21,105 +70,7 @@
|
||||
"3600"
|
||||
],
|
||||
"idnssoamname": [
|
||||
"ipa.example.com."
|
||||
],
|
||||
"idnssoarefresh": [
|
||||
"3600"
|
||||
],
|
||||
"idnssoaretry": [
|
||||
"900"
|
||||
],
|
||||
"idnssoarname": [
|
||||
"root.ipa.example.com."
|
||||
],
|
||||
"idnssoaserial": [
|
||||
"2010021201"
|
||||
],
|
||||
"idnsupdatepolicy": [
|
||||
"grant EXAMPLE.COM krb5-self * A;"
|
||||
],
|
||||
"idnszoneactive": [
|
||||
"TRUE"
|
||||
],
|
||||
"nsrecord": [
|
||||
"ipa.example.com."
|
||||
],
|
||||
"objectclass": [
|
||||
"top",
|
||||
"idnsrecord",
|
||||
"idnszone"
|
||||
]
|
||||
},
|
||||
"summary": null,
|
||||
"value": "example.com"
|
||||
},
|
||||
{
|
||||
"error": null,
|
||||
"result": {
|
||||
"dn": "idnsname=122.168.192.in-addr.arpa,cn=dns,dc=example,dc=com",
|
||||
"idnsallowdynupdate": [
|
||||
"TRUE"
|
||||
],
|
||||
"idnsname": [
|
||||
"122.168.192.in-addr.arpa"
|
||||
],
|
||||
"idnssoaexpire": [
|
||||
"1209600"
|
||||
],
|
||||
"idnssoaminimum": [
|
||||
"3600"
|
||||
],
|
||||
"idnssoamname": [
|
||||
"ipa.example.com."
|
||||
],
|
||||
"idnssoarefresh": [
|
||||
"3600"
|
||||
],
|
||||
"idnssoaretry": [
|
||||
"900"
|
||||
],
|
||||
"idnssoarname": [
|
||||
"root.122.168.192.in-addr.arpa."
|
||||
],
|
||||
"idnssoaserial": [
|
||||
"2010021201"
|
||||
],
|
||||
"idnsupdatepolicy": [
|
||||
"grant EXAMPLE.COM krb5-subdomain 122.168.192.in-addr.arpa. PTR;"
|
||||
],
|
||||
"idnszoneactive": [
|
||||
"TRUE"
|
||||
],
|
||||
"nsrecord": [
|
||||
"ipa.example.com."
|
||||
],
|
||||
"objectclass": [
|
||||
"top",
|
||||
"idnsrecord",
|
||||
"idnszone"
|
||||
]
|
||||
},
|
||||
"summary": null,
|
||||
"value": "122.168.192.in-addr.arpa"
|
||||
},
|
||||
{
|
||||
"error": null,
|
||||
"result": {
|
||||
"dn": "idnsname=dev.example.com,cn=dns,dc=example,dc=com",
|
||||
"idnsallowdynupdate": [
|
||||
"FALSE"
|
||||
],
|
||||
"idnsname": [
|
||||
"dev.example.com"
|
||||
],
|
||||
"idnssoaexpire": [
|
||||
"1209600"
|
||||
],
|
||||
"idnssoaminimum": [
|
||||
"3600"
|
||||
],
|
||||
"idnssoamname": [
|
||||
"example.com"
|
||||
"dev.example.com."
|
||||
],
|
||||
"idnssoarefresh": [
|
||||
"3600"
|
||||
@ -133,9 +84,15 @@
|
||||
"idnssoaserial": [
|
||||
"2010021201"
|
||||
],
|
||||
"idnsupdatepolicy": [
|
||||
"grant EXAMPLE.COM krb5-self * A;"
|
||||
],
|
||||
"idnszoneactive": [
|
||||
"TRUE"
|
||||
],
|
||||
"nsrecord": [
|
||||
"dev.example.com."
|
||||
],
|
||||
"objectclass": [
|
||||
"top",
|
||||
"idnsrecord",
|
||||
@ -143,7 +100,7 @@
|
||||
]
|
||||
},
|
||||
"summary": null,
|
||||
"value": "dev.example.com"
|
||||
"value": "example.com"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -47,12 +47,12 @@
|
||||
"sshfprecord": "rscwo",
|
||||
"txtrecord": "rscwo"
|
||||
},
|
||||
"dn": "idnsname=dev.example.com,cn=dns,dc=example,dc=com",
|
||||
"dn": "idnsname=example.com,cn=dns,dc=example,dc=com",
|
||||
"idnsallowdynupdate": [
|
||||
"FALSE"
|
||||
],
|
||||
"idnsname": [
|
||||
"dev.example.com"
|
||||
"example.com"
|
||||
],
|
||||
"idnssoaexpire": [
|
||||
"1209600"
|
||||
@ -70,7 +70,7 @@
|
||||
"900"
|
||||
],
|
||||
"idnssoarname": [
|
||||
"root.dev.example.com."
|
||||
"root.example.com."
|
||||
],
|
||||
"idnssoaserial": [
|
||||
"2010021201"
|
||||
@ -85,6 +85,6 @@
|
||||
]
|
||||
},
|
||||
"summary": null,
|
||||
"value": "dev.example.com"
|
||||
"value": "example.com"
|
||||
}
|
||||
}
|
@ -11,7 +11,7 @@
|
||||
"description": [
|
||||
"Account administrators group"
|
||||
],
|
||||
"dn": "cn=admins,cn=groups,cn=accounts,dc=dev,dc=example,dc=com",
|
||||
"dn": "cn=admins,cn=groups,cn=accounts,dc=example,dc=com",
|
||||
"gidnumber": [
|
||||
"1420800000"
|
||||
],
|
||||
@ -26,7 +26,7 @@
|
||||
"description": [
|
||||
"Default group for all users"
|
||||
],
|
||||
"dn": "cn=ipausers,cn=groups,cn=accounts,dc=dev,dc=example,dc=com",
|
||||
"dn": "cn=ipausers,cn=groups,cn=accounts,dc=example,dc=com",
|
||||
"gidnumber": [
|
||||
"1420800001"
|
||||
],
|
||||
@ -46,7 +46,7 @@
|
||||
"description": [
|
||||
"Limited admins who can edit other users"
|
||||
],
|
||||
"dn": "cn=editors,cn=groups,cn=accounts,dc=dev,dc=example,dc=com",
|
||||
"dn": "cn=editors,cn=groups,cn=accounts,dc=example,dc=com",
|
||||
"gidnumber": [
|
||||
"1420800002"
|
||||
]
|
||||
@ -58,7 +58,7 @@
|
||||
"description": [
|
||||
"Monsters on Sesame Street"
|
||||
],
|
||||
"dn": "cn=monsters,cn=groups,cn=accounts,dc=dev,dc=example,dc=com",
|
||||
"dn": "cn=monsters,cn=groups,cn=accounts,dc=example,dc=com",
|
||||
"gidnumber": [
|
||||
"1420800009"
|
||||
]
|
||||
@ -70,7 +70,7 @@
|
||||
"description": [
|
||||
"Muppets moonlighting for CTW"
|
||||
],
|
||||
"dn": "cn=muppets,cn=groups,cn=accounts,dc=dev,dc=example,dc=com",
|
||||
"dn": "cn=muppets,cn=groups,cn=accounts,dc=example,dc=com",
|
||||
"gidnumber": [
|
||||
"1420800010"
|
||||
]
|
||||
|
@ -8,31 +8,31 @@
|
||||
"cn": [
|
||||
"admins"
|
||||
],
|
||||
"dn": "cn=admins,cn=groups,cn=accounts,dc=dev,dc=example,dc=com"
|
||||
"dn": "cn=admins,cn=groups,cn=accounts,dc=example,dc=com"
|
||||
},
|
||||
{
|
||||
"cn": [
|
||||
"ipausers"
|
||||
],
|
||||
"dn": "cn=ipausers,cn=groups,cn=accounts,dc=dev,dc=example,dc=com"
|
||||
"dn": "cn=ipausers,cn=groups,cn=accounts,dc=example,dc=com"
|
||||
},
|
||||
{
|
||||
"cn": [
|
||||
"editors"
|
||||
],
|
||||
"dn": "cn=editors,cn=groups,cn=accounts,dc=dev,dc=example,dc=com"
|
||||
"dn": "cn=editors,cn=groups,cn=accounts,dc=example,dc=com"
|
||||
},
|
||||
{
|
||||
"cn": [
|
||||
"monsters"
|
||||
],
|
||||
"dn": "cn=monsters,cn=groups,cn=accounts,dc=dev,dc=example,dc=com"
|
||||
"dn": "cn=monsters,cn=groups,cn=accounts,dc=example,dc=com"
|
||||
},
|
||||
{
|
||||
"cn": [
|
||||
"muppets"
|
||||
],
|
||||
"dn": "cn=muppets,cn=groups,cn=accounts,dc=dev,dc=example,dc=com"
|
||||
"dn": "cn=muppets,cn=groups,cn=accounts,dc=example,dc=com"
|
||||
}
|
||||
],
|
||||
"summary": "5 groups matched",
|
||||
|
@ -13,7 +13,7 @@
|
||||
"description": [
|
||||
"Account administrators group"
|
||||
],
|
||||
"dn": "cn=admins,cn=groups,cn=accounts,dc=dev,dc=example,dc=com",
|
||||
"dn": "cn=admins,cn=groups,cn=accounts,dc=example,dc=com",
|
||||
"gidnumber": [
|
||||
"1420800000"
|
||||
],
|
||||
@ -33,7 +33,7 @@
|
||||
"description": [
|
||||
"Default group for all users"
|
||||
],
|
||||
"dn": "cn=ipausers,cn=groups,cn=accounts,dc=dev,dc=example,dc=com",
|
||||
"dn": "cn=ipausers,cn=groups,cn=accounts,dc=example,dc=com",
|
||||
"gidnumber": [
|
||||
"1420800001"
|
||||
],
|
||||
@ -58,7 +58,7 @@
|
||||
"description": [
|
||||
"Limited admins who can edit other users"
|
||||
],
|
||||
"dn": "cn=editors,cn=groups,cn=accounts,dc=dev,dc=example,dc=com",
|
||||
"dn": "cn=editors,cn=groups,cn=accounts,dc=example,dc=com",
|
||||
"gidnumber": [
|
||||
"1420800002"
|
||||
]
|
||||
@ -75,7 +75,7 @@
|
||||
"description": [
|
||||
"Monsters on Sesame Street"
|
||||
],
|
||||
"dn": "cn=monsters,cn=groups,cn=accounts,dc=dev,dc=example,dc=com",
|
||||
"dn": "cn=monsters,cn=groups,cn=accounts,dc=example,dc=com",
|
||||
"gidnumber": [
|
||||
"1420800009"
|
||||
]
|
||||
@ -92,7 +92,7 @@
|
||||
"description": [
|
||||
"Muppets moonlighting for CTW"
|
||||
],
|
||||
"dn": "cn=muppets,cn=groups,cn=accounts,dc=dev,dc=example,dc=com",
|
||||
"dn": "cn=muppets,cn=groups,cn=accounts,dc=example,dc=com",
|
||||
"gidnumber": [
|
||||
"1420800010"
|
||||
]
|
||||
|
@ -9,7 +9,7 @@
|
||||
"cn": [
|
||||
"test"
|
||||
],
|
||||
"dn": "ipauniqueid=f3e69e82-e3b411df-bfde9b13-2b28c216,cn=hbac,dc=dev,dc=example,dc=com",
|
||||
"dn": "ipauniqueid=f3e69e82-e3b411df-bfde9b13-2b28c216,cn=hbac,dc=example,dc=com",
|
||||
"ipaenabledflag": [
|
||||
"TRUE"
|
||||
],
|
||||
|
@ -20,7 +20,7 @@
|
||||
"cn": [
|
||||
"test"
|
||||
],
|
||||
"dn": "ipauniqueid=e8aca082-e64a11df-9864f2e0-e0578392,cn=hbac,dc=dev,dc=example,dc=com",
|
||||
"dn": "ipauniqueid=e8aca082-e64a11df-9864f2e0-e0578392,cn=hbac,dc=example,dc=com",
|
||||
"ipaenabledflag": [
|
||||
"TRUE"
|
||||
],
|
||||
|
@ -20,7 +20,7 @@
|
||||
"cn": [
|
||||
"test"
|
||||
],
|
||||
"dn": "ipauniqueid=e8aca082-e64a11df-9864f2e0-e0578392,cn=hbac,dc=dev,dc=example,dc=com",
|
||||
"dn": "ipauniqueid=e8aca082-e64a11df-9864f2e0-e0578392,cn=hbac,dc=example,dc=com",
|
||||
"ipaenabledflag": [
|
||||
"TRUE"
|
||||
],
|
||||
|
@ -20,7 +20,7 @@
|
||||
"cn": [
|
||||
"test"
|
||||
],
|
||||
"dn": "ipauniqueid=e8aca082-e64a11df-9864f2e0-e0578392,cn=hbac,dc=dev,dc=example,dc=com",
|
||||
"dn": "ipauniqueid=e8aca082-e64a11df-9864f2e0-e0578392,cn=hbac,dc=example,dc=com",
|
||||
"ipaenabledflag": [
|
||||
"TRUE"
|
||||
],
|
||||
|
@ -20,7 +20,7 @@
|
||||
"cn": [
|
||||
"test"
|
||||
],
|
||||
"dn": "ipauniqueid=e8aca082-e64a11df-9864f2e0-e0578392,cn=hbac,dc=dev,dc=example,dc=com",
|
||||
"dn": "ipauniqueid=e8aca082-e64a11df-9864f2e0-e0578392,cn=hbac,dc=example,dc=com",
|
||||
"ipaenabledflag": [
|
||||
"TRUE"
|
||||
],
|
||||
|
@ -14,7 +14,7 @@
|
||||
"description": [
|
||||
"Allow all users to access any host from any host"
|
||||
],
|
||||
"dn": "ipauniqueid=ca842a42-a445-11e0-87ff-525400b55a47,cn=hbac,dc=dev,dc=example,dc=com",
|
||||
"dn": "ipauniqueid=ca842a42-a445-11e0-87ff-525400b55a47,cn=hbac,dc=example,dc=com",
|
||||
"hostcategory": [
|
||||
"all"
|
||||
],
|
||||
|
@ -20,7 +20,7 @@
|
||||
"cn": [
|
||||
"test"
|
||||
],
|
||||
"dn": "ipauniqueid=e8aca082-e64a11df-9864f2e0-e0578392,cn=hbac,dc=dev,dc=example,dc=com",
|
||||
"dn": "ipauniqueid=e8aca082-e64a11df-9864f2e0-e0578392,cn=hbac,dc=example,dc=com",
|
||||
"ipaenabledflag": [
|
||||
"TRUE"
|
||||
],
|
||||
|
@ -20,7 +20,7 @@
|
||||
"cn": [
|
||||
"test"
|
||||
],
|
||||
"dn": "ipauniqueid=e8aca082-e64a11df-9864f2e0-e0578392,cn=hbac,dc=dev,dc=example,dc=com",
|
||||
"dn": "ipauniqueid=e8aca082-e64a11df-9864f2e0-e0578392,cn=hbac,dc=example,dc=com",
|
||||
"ipaenabledflag": [
|
||||
"TRUE"
|
||||
],
|
||||
|
@ -20,7 +20,7 @@
|
||||
"cn": [
|
||||
"test"
|
||||
],
|
||||
"dn": "ipauniqueid=e8aca082-e64a11df-9864f2e0-e0578392,cn=hbac,dc=dev,dc=example,dc=com",
|
||||
"dn": "ipauniqueid=e8aca082-e64a11df-9864f2e0-e0578392,cn=hbac,dc=example,dc=com",
|
||||
"ipaenabledflag": [
|
||||
"TRUE"
|
||||
],
|
||||
|
@ -20,7 +20,7 @@
|
||||
"cn": [
|
||||
"test"
|
||||
],
|
||||
"dn": "ipauniqueid=e8aca082-e64a11df-9864f2e0-e0578392,cn=hbac,dc=dev,dc=example,dc=com",
|
||||
"dn": "ipauniqueid=e8aca082-e64a11df-9864f2e0-e0578392,cn=hbac,dc=example,dc=com",
|
||||
"ipaenabledflag": [
|
||||
"TRUE"
|
||||
],
|
||||
|
@ -32,7 +32,7 @@
|
||||
"cn": [
|
||||
"rule1"
|
||||
],
|
||||
"dn": "ipauniqueid=4ed8b682-edf511df-b3f78f4b-11cc007b,cn=hbac,dc=dev,dc=example,dc=com",
|
||||
"dn": "ipauniqueid=4ed8b682-edf511df-b3f78f4b-11cc007b,cn=hbac,dc=example,dc=com",
|
||||
"ipaenabledflag": [
|
||||
"TRUE"
|
||||
],
|
||||
|
@ -9,7 +9,7 @@
|
||||
"description": [
|
||||
"Test Service"
|
||||
],
|
||||
"dn": "cn=test,cn=hbacservices,cn=hbac,dc=dev,dc=example,dc=com",
|
||||
"dn": "cn=test,cn=hbacservices,cn=hbac,dc=example,dc=com",
|
||||
"ipauniqueid": [
|
||||
"c3302e82-ecfd11df-b3f78f4b-11cc007b"
|
||||
],
|
||||
|
@ -11,7 +11,7 @@
|
||||
"description": [
|
||||
"sshd"
|
||||
],
|
||||
"dn": "cn=sshd,cn=hbacservices,cn=hbac,dc=dev,dc=example,dc=com"
|
||||
"dn": "cn=sshd,cn=hbacservices,cn=hbac,dc=example,dc=com"
|
||||
},
|
||||
{
|
||||
"cn": [
|
||||
@ -20,7 +20,7 @@
|
||||
"description": [
|
||||
"ftp"
|
||||
],
|
||||
"dn": "cn=ftp,cn=hbacservices,cn=hbac,dc=dev,dc=example,dc=com"
|
||||
"dn": "cn=ftp,cn=hbacservices,cn=hbac,dc=example,dc=com"
|
||||
},
|
||||
{
|
||||
"cn": [
|
||||
@ -29,7 +29,7 @@
|
||||
"description": [
|
||||
"su"
|
||||
],
|
||||
"dn": "cn=su,cn=hbacservices,cn=hbac,dc=dev,dc=example,dc=com"
|
||||
"dn": "cn=su,cn=hbacservices,cn=hbac,dc=example,dc=com"
|
||||
},
|
||||
{
|
||||
"cn": [
|
||||
@ -38,7 +38,7 @@
|
||||
"description": [
|
||||
"login"
|
||||
],
|
||||
"dn": "cn=login,cn=hbacservices,cn=hbac,dc=dev,dc=example,dc=com"
|
||||
"dn": "cn=login,cn=hbacservices,cn=hbac,dc=example,dc=com"
|
||||
},
|
||||
{
|
||||
"cn": [
|
||||
@ -47,7 +47,7 @@
|
||||
"description": [
|
||||
"su with login shell"
|
||||
],
|
||||
"dn": "cn=su-l,cn=hbacservices,cn=hbac,dc=dev,dc=example,dc=com"
|
||||
"dn": "cn=su-l,cn=hbacservices,cn=hbac,dc=example,dc=com"
|
||||
},
|
||||
{
|
||||
"cn": [
|
||||
@ -56,7 +56,7 @@
|
||||
"description": [
|
||||
"sudo"
|
||||
],
|
||||
"dn": "cn=sudo,cn=hbacservices,cn=hbac,dc=dev,dc=example,dc=com"
|
||||
"dn": "cn=sudo,cn=hbacservices,cn=hbac,dc=example,dc=com"
|
||||
},
|
||||
{
|
||||
"cn": [
|
||||
@ -65,7 +65,7 @@
|
||||
"description": [
|
||||
"sudo-i"
|
||||
],
|
||||
"dn": "cn=sudo-i,cn=hbacservices,cn=hbac,dc=dev,dc=example,dc=com"
|
||||
"dn": "cn=sudo-i,cn=hbacservices,cn=hbac,dc=example,dc=com"
|
||||
},
|
||||
{
|
||||
"cn": [
|
||||
@ -74,7 +74,7 @@
|
||||
"description": [
|
||||
"gdm"
|
||||
],
|
||||
"dn": "cn=gdm,cn=hbacservices,cn=hbac,dc=dev,dc=example,dc=com"
|
||||
"dn": "cn=gdm,cn=hbacservices,cn=hbac,dc=example,dc=com"
|
||||
},
|
||||
{
|
||||
"cn": [
|
||||
@ -83,7 +83,7 @@
|
||||
"description": [
|
||||
"gdm-password"
|
||||
],
|
||||
"dn": "cn=gdm-password,cn=hbacservices,cn=hbac,dc=dev,dc=example,dc=com"
|
||||
"dn": "cn=gdm-password,cn=hbacservices,cn=hbac,dc=example,dc=com"
|
||||
},
|
||||
{
|
||||
"cn": [
|
||||
@ -92,7 +92,7 @@
|
||||
"description": [
|
||||
"kdm"
|
||||
],
|
||||
"dn": "cn=kdm,cn=hbacservices,cn=hbac,dc=dev,dc=example,dc=com"
|
||||
"dn": "cn=kdm,cn=hbacservices,cn=hbac,dc=example,dc=com"
|
||||
}
|
||||
],
|
||||
"summary": null,
|
||||
|
@ -8,61 +8,61 @@
|
||||
"cn": [
|
||||
"sshd"
|
||||
],
|
||||
"dn": "cn=sshd,cn=hbacservices,cn=hbac,dc=dev,dc=example,dc=com"
|
||||
"dn": "cn=sshd,cn=hbacservices,cn=hbac,dc=example,dc=com"
|
||||
},
|
||||
{
|
||||
"cn": [
|
||||
"ftp"
|
||||
],
|
||||
"dn": "cn=ftp,cn=hbacservices,cn=hbac,dc=dev,dc=example,dc=com"
|
||||
"dn": "cn=ftp,cn=hbacservices,cn=hbac,dc=example,dc=com"
|
||||
},
|
||||
{
|
||||
"cn": [
|
||||
"su"
|
||||
],
|
||||
"dn": "cn=su,cn=hbacservices,cn=hbac,dc=dev,dc=example,dc=com"
|
||||
"dn": "cn=su,cn=hbacservices,cn=hbac,dc=example,dc=com"
|
||||
},
|
||||
{
|
||||
"cn": [
|
||||
"login"
|
||||
],
|
||||
"dn": "cn=login,cn=hbacservices,cn=hbac,dc=dev,dc=example,dc=com"
|
||||
"dn": "cn=login,cn=hbacservices,cn=hbac,dc=example,dc=com"
|
||||
},
|
||||
{
|
||||
"cn": [
|
||||
"su-l"
|
||||
],
|
||||
"dn": "cn=su-l,cn=hbacservices,cn=hbac,dc=dev,dc=example,dc=com"
|
||||
"dn": "cn=su-l,cn=hbacservices,cn=hbac,dc=example,dc=com"
|
||||
},
|
||||
{
|
||||
"cn": [
|
||||
"sudo"
|
||||
],
|
||||
"dn": "cn=sudo,cn=hbacservices,cn=hbac,dc=dev,dc=example,dc=com"
|
||||
"dn": "cn=sudo,cn=hbacservices,cn=hbac,dc=example,dc=com"
|
||||
},
|
||||
{
|
||||
"cn": [
|
||||
"sudo-i"
|
||||
],
|
||||
"dn": "cn=sudo-i,cn=hbacservices,cn=hbac,dc=dev,dc=example,dc=com"
|
||||
"dn": "cn=sudo-i,cn=hbacservices,cn=hbac,dc=example,dc=com"
|
||||
},
|
||||
{
|
||||
"cn": [
|
||||
"gdm"
|
||||
],
|
||||
"dn": "cn=gdm,cn=hbacservices,cn=hbac,dc=dev,dc=example,dc=com"
|
||||
"dn": "cn=gdm,cn=hbacservices,cn=hbac,dc=example,dc=com"
|
||||
},
|
||||
{
|
||||
"cn": [
|
||||
"gdm-password"
|
||||
],
|
||||
"dn": "cn=gdm-password,cn=hbacservices,cn=hbac,dc=dev,dc=example,dc=com"
|
||||
"dn": "cn=gdm-password,cn=hbacservices,cn=hbac,dc=example,dc=com"
|
||||
},
|
||||
{
|
||||
"cn": [
|
||||
"kdm"
|
||||
],
|
||||
"dn": "cn=kdm,cn=hbacservices,cn=hbac,dc=dev,dc=example,dc=com"
|
||||
"dn": "cn=kdm,cn=hbacservices,cn=hbac,dc=example,dc=com"
|
||||
}
|
||||
],
|
||||
"summary": null,
|
||||
|
@ -13,7 +13,7 @@
|
||||
"description": [
|
||||
"sshd"
|
||||
],
|
||||
"dn": "cn=sshd,cn=hbacservices,cn=hbac,dc=dev,dc=example,dc=com"
|
||||
"dn": "cn=sshd,cn=hbacservices,cn=hbac,dc=example,dc=com"
|
||||
},
|
||||
"summary": null,
|
||||
"value": "sshd"
|
||||
@ -27,7 +27,7 @@
|
||||
"description": [
|
||||
"ftp"
|
||||
],
|
||||
"dn": "cn=ftp,cn=hbacservices,cn=hbac,dc=dev,dc=example,dc=com"
|
||||
"dn": "cn=ftp,cn=hbacservices,cn=hbac,dc=example,dc=com"
|
||||
},
|
||||
"summary": null,
|
||||
"value": "ftp"
|
||||
@ -41,7 +41,7 @@
|
||||
"description": [
|
||||
"su"
|
||||
],
|
||||
"dn": "cn=su,cn=hbacservices,cn=hbac,dc=dev,dc=example,dc=com"
|
||||
"dn": "cn=su,cn=hbacservices,cn=hbac,dc=example,dc=com"
|
||||
},
|
||||
"summary": null,
|
||||
"value": "su"
|
||||
@ -55,7 +55,7 @@
|
||||
"description": [
|
||||
"login"
|
||||
],
|
||||
"dn": "cn=login,cn=hbacservices,cn=hbac,dc=dev,dc=example,dc=com"
|
||||
"dn": "cn=login,cn=hbacservices,cn=hbac,dc=example,dc=com"
|
||||
},
|
||||
"summary": null,
|
||||
"value": "login"
|
||||
@ -69,7 +69,7 @@
|
||||
"description": [
|
||||
"su with login shell"
|
||||
],
|
||||
"dn": "cn=su-l,cn=hbacservices,cn=hbac,dc=dev,dc=example,dc=com"
|
||||
"dn": "cn=su-l,cn=hbacservices,cn=hbac,dc=example,dc=com"
|
||||
},
|
||||
"summary": null,
|
||||
"value": "su-l"
|
||||
@ -83,7 +83,7 @@
|
||||
"description": [
|
||||
"sudo"
|
||||
],
|
||||
"dn": "cn=sudo,cn=hbacservices,cn=hbac,dc=dev,dc=example,dc=com"
|
||||
"dn": "cn=sudo,cn=hbacservices,cn=hbac,dc=example,dc=com"
|
||||
},
|
||||
"summary": null,
|
||||
"value": "sudo"
|
||||
@ -97,7 +97,7 @@
|
||||
"description": [
|
||||
"sudo-i"
|
||||
],
|
||||
"dn": "cn=sudo-i,cn=hbacservices,cn=hbac,dc=dev,dc=example,dc=com"
|
||||
"dn": "cn=sudo-i,cn=hbacservices,cn=hbac,dc=example,dc=com"
|
||||
},
|
||||
"summary": null,
|
||||
"value": "sudo-i"
|
||||
@ -111,7 +111,7 @@
|
||||
"description": [
|
||||
"gdm"
|
||||
],
|
||||
"dn": "cn=gdm,cn=hbacservices,cn=hbac,dc=dev,dc=example,dc=com"
|
||||
"dn": "cn=gdm,cn=hbacservices,cn=hbac,dc=example,dc=com"
|
||||
},
|
||||
"summary": null,
|
||||
"value": "gdm"
|
||||
@ -125,7 +125,7 @@
|
||||
"description": [
|
||||
"gdm-password"
|
||||
],
|
||||
"dn": "cn=gdm-password,cn=hbacservices,cn=hbac,dc=dev,dc=example,dc=com"
|
||||
"dn": "cn=gdm-password,cn=hbacservices,cn=hbac,dc=example,dc=com"
|
||||
},
|
||||
"summary": null,
|
||||
"value": "gdm-password"
|
||||
@ -139,7 +139,7 @@
|
||||
"description": [
|
||||
"kdm"
|
||||
],
|
||||
"dn": "cn=kdm,cn=hbacservices,cn=hbac,dc=dev,dc=example,dc=com"
|
||||
"dn": "cn=kdm,cn=hbacservices,cn=hbac,dc=example,dc=com"
|
||||
},
|
||||
"summary": null,
|
||||
"value": "kdm"
|
||||
|
@ -17,12 +17,12 @@
|
||||
"description": [
|
||||
"sudo"
|
||||
],
|
||||
"dn": "cn=sudo,cn=hbacservices,cn=hbac,dc=dev,dc=example,dc=com",
|
||||
"dn": "cn=sudo,cn=hbacservices,cn=hbac,dc=example,dc=com",
|
||||
"ipauniqueid": [
|
||||
"676e92a1-ec7611df-b3f78f4b-11cc007b"
|
||||
],
|
||||
"memberof": [
|
||||
"cn=Sudo,cn=hbacservicegroups,cn=hbac,dc=dev,dc=example,dc=com"
|
||||
"cn=Sudo,cn=hbacservicegroups,cn=hbac,dc=example,dc=com"
|
||||
],
|
||||
"objectclass": [
|
||||
"ipahbacservice",
|
||||
|
@ -9,7 +9,7 @@
|
||||
"description": [
|
||||
"Test Service Group"
|
||||
],
|
||||
"dn": "cn=test,cn=hbacservicegroups,cn=hbac,dc=dev,dc=example,dc=com",
|
||||
"dn": "cn=test,cn=hbacservicegroups,cn=hbac,dc=example,dc=com",
|
||||
"ipauniqueid": [
|
||||
"0ab6ba82-ecfe11df-b3f78f4b-11cc007b"
|
||||
],
|
||||
|
@ -15,7 +15,7 @@
|
||||
"description": [
|
||||
"Test Service Group"
|
||||
],
|
||||
"dn": "cn=test,cn=hbacservicegroups,cn=hbac,dc=dev,dc=example,dc=com",
|
||||
"dn": "cn=test,cn=hbacservicegroups,cn=hbac,dc=example,dc=com",
|
||||
"member_hbacsvc": [
|
||||
"test"
|
||||
]
|
||||
|
@ -11,7 +11,7 @@
|
||||
"description": [
|
||||
"Default group of Sudo related services"
|
||||
],
|
||||
"dn": "cn=sudo,cn=hbacservicegroups,cn=hbac,dc=dev,dc=example,dc=com",
|
||||
"dn": "cn=sudo,cn=hbacservicegroups,cn=hbac,dc=example,dc=com",
|
||||
"member_hbacsvc": [
|
||||
"sudo",
|
||||
"sudo-i"
|
||||
|
@ -8,7 +8,7 @@
|
||||
"cn": [
|
||||
"Sudo"
|
||||
],
|
||||
"dn": "cn=sudo,cn=hbacservicegroups,cn=hbac,dc=dev,dc=example,dc=com"
|
||||
"dn": "cn=sudo,cn=hbacservicegroups,cn=hbac,dc=example,dc=com"
|
||||
}
|
||||
],
|
||||
"summary": "1 group matched",
|
||||
|
@ -13,7 +13,7 @@
|
||||
"description": [
|
||||
"Default group of Sudo related services"
|
||||
],
|
||||
"dn": "cn=sudo,cn=hbacservicegroups,cn=hbac,dc=dev,dc=example,dc=com",
|
||||
"dn": "cn=sudo,cn=hbacservicegroups,cn=hbac,dc=example,dc=com",
|
||||
"member_hbacsvc": [
|
||||
"sudo",
|
||||
"sudo-i"
|
||||
|
@ -13,12 +13,12 @@
|
||||
"description": [
|
||||
"sudo"
|
||||
],
|
||||
"dn": "cn=sudo,cn=hbacservices,cn=hbac,dc=dev,dc=example,dc=com",
|
||||
"dn": "cn=sudo,cn=hbacservices,cn=hbac,dc=example,dc=com",
|
||||
"ipauniqueid": [
|
||||
"42927a86-f46d-11df-8cc1-00163e72f2d9"
|
||||
],
|
||||
"memberof": [
|
||||
"cn=Sudo,cn=hbacservicegroups,cn=hbac,dc=dev,dc=example,dc=com"
|
||||
"cn=Sudo,cn=hbacservicegroups,cn=hbac,dc=example,dc=com"
|
||||
],
|
||||
"objectclass": [
|
||||
"ipahbacservice",
|
||||
@ -37,12 +37,12 @@
|
||||
"description": [
|
||||
"sudo-i"
|
||||
],
|
||||
"dn": "cn=sudo-i,cn=hbacservices,cn=hbac,dc=dev,dc=example,dc=com",
|
||||
"dn": "cn=sudo-i,cn=hbacservices,cn=hbac,dc=example,dc=com",
|
||||
"ipauniqueid": [
|
||||
"42970a6a-f46d-11df-8cc1-00163e72f2d9"
|
||||
],
|
||||
"memberof": [
|
||||
"cn=Sudo,cn=hbacservicegroups,cn=hbac,dc=dev,dc=example,dc=com"
|
||||
"cn=Sudo,cn=hbacservicegroups,cn=hbac,dc=example,dc=com"
|
||||
],
|
||||
"objectclass": [
|
||||
"ipahbacservice",
|
||||
|
@ -15,7 +15,7 @@
|
||||
"description": [
|
||||
"Test Service Group"
|
||||
],
|
||||
"dn": "cn=test,cn=hbacservicegroups,cn=hbac,dc=dev,dc=example,dc=com"
|
||||
"dn": "cn=test,cn=hbacservicegroups,cn=hbac,dc=example,dc=com"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -24,7 +24,7 @@
|
||||
"description": [
|
||||
"Default group of Sudo related services"
|
||||
],
|
||||
"dn": "cn=sudo,cn=hbacservicegroups,cn=hbac,dc=dev,dc=example,dc=com",
|
||||
"dn": "cn=sudo,cn=hbacservicegroups,cn=hbac,dc=example,dc=com",
|
||||
"ipauniqueid": [
|
||||
"676e92ab-ec7611df-b3f78f4b-11cc007b"
|
||||
],
|
||||
|
@ -52,10 +52,10 @@
|
||||
"ac28dca0-f3b5-11df-879f-00163e72f2d9"
|
||||
],
|
||||
"krbprincipalname": [
|
||||
"host/test.example.com@DEV.EXAMPLE.COM"
|
||||
"host/test.example.com@EXAMPLE.COM"
|
||||
],
|
||||
"managedby": [
|
||||
"fqdn=test.example.com,cn=computers,cn=accounts,dc=dev,dc=example,dc=com"
|
||||
"fqdn=test.example.com,cn=computers,cn=accounts,dc=example,dc=com"
|
||||
],
|
||||
"objectclass": [
|
||||
"ipaobject",
|
||||
|
@ -46,7 +46,7 @@
|
||||
"cn": [
|
||||
"test.example.com"
|
||||
],
|
||||
"dn": "fqdn=test.example.com,cn=computers,cn=accounts,dc=dev,dc=example,dc=com",
|
||||
"dn": "fqdn=test.example.com,cn=computers,cn=accounts,dc=example,dc=com",
|
||||
"fqdn": [
|
||||
"test.example.com"
|
||||
],
|
||||
@ -55,10 +55,10 @@
|
||||
"ac28dca0-f3b5-11df-879f-00163e72f2d9"
|
||||
],
|
||||
"krbprincipalname": [
|
||||
"host/test.example.com@DEV.EXAMPLE.COM"
|
||||
"host/test.example.com@EXAMPLE.COM"
|
||||
],
|
||||
"managedby": [
|
||||
"fqdn=test.example.com,cn=computers,cn=accounts,dc=dev,dc=example,dc=com"
|
||||
"fqdn=test.example.com,cn=computers,cn=accounts,dc=example,dc=com"
|
||||
],
|
||||
"objectclass": [
|
||||
"ipaobject",
|
||||
|
@ -46,7 +46,7 @@
|
||||
"cn": [
|
||||
"dev.example.com"
|
||||
],
|
||||
"dn": "fqdn=dev.example.com,cn=computers,cn=accounts,dc=dev,dc=example,dc=com",
|
||||
"dn": "fqdn=dev.example.com,cn=computers,cn=accounts,dc=example,dc=com",
|
||||
"fqdn": [
|
||||
"dev.example.com"
|
||||
],
|
||||
@ -69,13 +69,13 @@
|
||||
"19700101000000Z"
|
||||
],
|
||||
"krbprincipalname": [
|
||||
"host/dev.example.com@DEV.EXAMPLE.COM"
|
||||
"host/dev.example.com@EXAMPLE.COM"
|
||||
],
|
||||
"krbticketflags": [
|
||||
"0"
|
||||
],
|
||||
"managedby": [
|
||||
"fqdn=dev.example.com,cn=computers,cn=accounts,dc=dev,dc=example,dc=com"
|
||||
"fqdn=dev.example.com,cn=computers,cn=accounts,dc=example,dc=com"
|
||||
],
|
||||
"objectclass": [
|
||||
"top",
|
||||
|
@ -46,7 +46,7 @@
|
||||
"cn": [
|
||||
"test.example.com"
|
||||
],
|
||||
"dn": "fqdn=test.example.com,cn=computers,cn=accounts,dc=dev,dc=example,dc=com",
|
||||
"dn": "fqdn=test.example.com,cn=computers,cn=accounts,dc=example,dc=com",
|
||||
"fqdn": [
|
||||
"test.example.com"
|
||||
],
|
||||
@ -55,10 +55,10 @@
|
||||
"ac28dca0-f3b5-11df-879f-00163e72f2d9"
|
||||
],
|
||||
"krbprincipalname": [
|
||||
"host/test.example.com@DEV.EXAMPLE.COM"
|
||||
"host/test.example.com@EXAMPLE.COM"
|
||||
],
|
||||
"managedby": [
|
||||
"fqdn=test.example.com,cn=computers,cn=accounts,dc=dev,dc=example,dc=com"
|
||||
"fqdn=test.example.com,cn=computers,cn=accounts,dc=example,dc=com"
|
||||
],
|
||||
"objectclass": [
|
||||
"ipaobject",
|
||||
|
@ -13,7 +13,7 @@
|
||||
"description": [
|
||||
"Development"
|
||||
],
|
||||
"dn": "fqdn=dev.example.com,cn=computers,cn=accounts,dc=dev,dc=example,dc=com",
|
||||
"dn": "fqdn=dev.example.com,cn=computers,cn=accounts,dc=example,dc=com",
|
||||
"fqdn": [
|
||||
"dev.example.com"
|
||||
],
|
||||
@ -36,7 +36,7 @@
|
||||
"19700101000000Z"
|
||||
],
|
||||
"krbprincipalname": [
|
||||
"host/dev.example.com@DEV.EXAMPLE.COM"
|
||||
"host/dev.example.com@EXAMPLE.COM"
|
||||
],
|
||||
"krbticketflags": [
|
||||
"0"
|
||||
|
@ -128,7 +128,6 @@
|
||||
"certificate_hold": "Certificate Hold",
|
||||
"cessation_of_operation": "Cessation of Operation",
|
||||
"common_name": "Common Name",
|
||||
"enter_csr": "Enter the Base64-encoded CSR below",
|
||||
"expires_on": "Expires On",
|
||||
"fingerprints": "Fingerprints",
|
||||
"issue_certificate": "Issue New Certificate for ${entity} ${primary_key}",
|
||||
@ -145,6 +144,7 @@
|
||||
"privilege_withdrawn": "Privilege Withdrawn",
|
||||
"reason": "Reason for Revocation",
|
||||
"remove_from_crl": "Remove from CRL",
|
||||
"request_message": "<ol><li>Create a private key in a secure location, for example:<br/># openssl genrsa -out key.pem</li><li>Create a CSR with subject CN=${hostname},O=${realm}, for example:<br/># openssl req -new -key key.pem -out cert.csr \\<br/> -subj '/O=${realm}/CN=${hostname}'</li><li>Copy and paste the CSR below:</li></ol>",
|
||||
"restore_certificate": "Restore Certificate for ${entity} ${primary_key}",
|
||||
"restore_confirmation": "To confirm your intention to restore this certificate, click the \"Restore\" button.",
|
||||
"revoke_certificate": "Revoke Certificate for ${entity} ${primary_key}",
|
||||
|
@ -4542,7 +4542,7 @@
|
||||
"aciattrs": [],
|
||||
"attribute_members": {},
|
||||
"bindable": false,
|
||||
"container_dn": "cn=DEV.EXAMPLE.COM,cn=kerberos",
|
||||
"container_dn": "cn=EXAMPLE.COM,cn=kerberos",
|
||||
"default_attributes": [
|
||||
"krbmaxticketlife",
|
||||
"krbmaxrenewableage"
|
||||
@ -5418,7 +5418,7 @@
|
||||
],
|
||||
"attribute_members": {},
|
||||
"bindable": false,
|
||||
"container_dn": "cn=DEV.EXAMPLE.COM,cn=kerberos",
|
||||
"container_dn": "cn=EXAMPLE.COM,cn=kerberos",
|
||||
"default_attributes": [
|
||||
"cn",
|
||||
"cospriority",
|
||||
|
@ -27,9 +27,9 @@
|
||||
"objectclass": "rscwo"
|
||||
},
|
||||
"cn": [
|
||||
"DEV.EXAMPLE.COM"
|
||||
"EXAMPLE.COM"
|
||||
],
|
||||
"dn": "cn=dev.example.com,cn=kerberos,dc=dev,dc=example,dc=com",
|
||||
"dn": "cn=EXAMPLE.COM,cn=kerberos,dc=example,dc=com",
|
||||
"krbdefaultencsalttypes": [
|
||||
"aes256-cts:special",
|
||||
"aes128-cts:special",
|
||||
@ -46,7 +46,7 @@
|
||||
"2"
|
||||
],
|
||||
"krbsubtrees": [
|
||||
"dc=dev,dc=example,dc=com"
|
||||
"dc=example,dc=com"
|
||||
],
|
||||
"krbsupportedencsalttypes": [
|
||||
"aes256-cts:normal",
|
||||
|
@ -11,7 +11,7 @@
|
||||
"description": [
|
||||
"Filter Permission"
|
||||
],
|
||||
"dn": "cn=filter,cn=permissions,cn=pbac,dc=ipa",
|
||||
"dn": "cn=filter,cn=permissions,cn=pbac,dc=example,dc=com",
|
||||
"filter": "(ou=Engineering)",
|
||||
"objectclass": [
|
||||
"groupofnames",
|
||||
@ -28,7 +28,7 @@
|
||||
"description": [
|
||||
"Subtree Permission"
|
||||
],
|
||||
"dn": "cn=subtree,cn=permissions,cn=pbac,dc=ipa",
|
||||
"dn": "cn=subtree,cn=permissions,cn=pbac,dc=example,dc=com",
|
||||
"objectclass": [
|
||||
"groupofnames",
|
||||
"top"
|
||||
@ -36,7 +36,7 @@
|
||||
"permissions": [
|
||||
"write"
|
||||
],
|
||||
"subtree": "ldap:///dc=ipa"
|
||||
"subtree": "ldap:///dc=example,dc=com"
|
||||
},
|
||||
{
|
||||
"cn": [
|
||||
@ -45,7 +45,7 @@
|
||||
"description": [
|
||||
"Target Group Permission"
|
||||
],
|
||||
"dn": "cn=targetgroup,cn=permissions,cn=pbac,dc=ipa",
|
||||
"dn": "cn=targetgroup,cn=permissions,cn=pbac,dc=example,dc=com",
|
||||
"objectclass": [
|
||||
"groupofnames",
|
||||
"top"
|
||||
@ -66,7 +66,7 @@
|
||||
"description": [
|
||||
"Type Permission"
|
||||
],
|
||||
"dn": "cn=type,cn=permissions,cn=pbac,dc=ipa",
|
||||
"dn": "cn=type,cn=permissions,cn=pbac,dc=example,dc=com",
|
||||
"objectclass": [
|
||||
"groupofnames",
|
||||
"top"
|
||||
|
@ -8,25 +8,25 @@
|
||||
"cn": [
|
||||
"filter"
|
||||
],
|
||||
"dn": "cn=filter,cn=permissions,cn=pbac,dc=ipa"
|
||||
"dn": "cn=filter,cn=permissions,cn=pbac,dc=example,dc=com"
|
||||
},
|
||||
{
|
||||
"cn": [
|
||||
"subtree"
|
||||
],
|
||||
"dn": "cn=subtree,cn=permissions,cn=pbac,dc=ipa"
|
||||
"dn": "cn=subtree,cn=permissions,cn=pbac,dc=example,dc=com"
|
||||
},
|
||||
{
|
||||
"cn": [
|
||||
"targetgroup"
|
||||
],
|
||||
"dn": "cn=targetgroup,cn=permissions,cn=pbac,dc=ipa"
|
||||
"dn": "cn=targetgroup,cn=permissions,cn=pbac,dc=example,dc=com"
|
||||
},
|
||||
{
|
||||
"cn": [
|
||||
"type"
|
||||
],
|
||||
"dn": "cn=type,cn=permissions,cn=pbac,dc=ipa"
|
||||
"dn": "cn=type,cn=permissions,cn=pbac,dc=example,dc=com"
|
||||
}
|
||||
],
|
||||
"summary": "4 permissions matched",
|
||||
|
@ -13,7 +13,7 @@
|
||||
"description": [
|
||||
"Filter Permission"
|
||||
],
|
||||
"dn": "cn=filter,cn=permissions,cn=pbac,dc=ipa",
|
||||
"dn": "cn=filter,cn=permissions,cn=pbac,dc=example,dc=com",
|
||||
"filter": "(ou=Engineering)",
|
||||
"objectclass": [
|
||||
"groupofnames",
|
||||
@ -35,7 +35,7 @@
|
||||
"description": [
|
||||
"Subtree Permission"
|
||||
],
|
||||
"dn": "cn=subtree,cn=permissions,cn=pbac,dc=ipa",
|
||||
"dn": "cn=subtree,cn=permissions,cn=pbac,dc=example,dc=com",
|
||||
"objectclass": [
|
||||
"groupofnames",
|
||||
"top"
|
||||
@ -43,7 +43,7 @@
|
||||
"permissions": [
|
||||
"write"
|
||||
],
|
||||
"subtree": "ldap:///dc=ipa"
|
||||
"subtree": "ldap:///dc=example,dc=com"
|
||||
},
|
||||
"summary": null,
|
||||
"value": "subtree"
|
||||
@ -57,7 +57,7 @@
|
||||
"description": [
|
||||
"Target Group Permission"
|
||||
],
|
||||
"dn": "cn=targetgroup,cn=permissions,cn=pbac,dc=ipa",
|
||||
"dn": "cn=targetgroup,cn=permissions,cn=pbac,dc=example,dc=com",
|
||||
"objectclass": [
|
||||
"groupofnames",
|
||||
"top"
|
||||
@ -83,7 +83,7 @@
|
||||
"description": [
|
||||
"Type Permission"
|
||||
],
|
||||
"dn": "cn=type,cn=permissions,cn=pbac,dc=ipa",
|
||||
"dn": "cn=type,cn=permissions,cn=pbac,dc=example,dc=com",
|
||||
"objectclass": [
|
||||
"groupofnames",
|
||||
"top"
|
||||
|
@ -26,7 +26,7 @@
|
||||
"description": [
|
||||
"Filter Permission"
|
||||
],
|
||||
"dn": "cn=filter,cn=permissions,cn=pbac,dc=ipa",
|
||||
"dn": "cn=filter,cn=permissions,cn=pbac,dc=example,dc=com",
|
||||
"filter": "(ou=Engineering)",
|
||||
"objectclass": [
|
||||
"groupofnames",
|
||||
|
@ -26,7 +26,7 @@
|
||||
"description": [
|
||||
"Subtree Permission"
|
||||
],
|
||||
"dn": "cn=subtree,cn=permissions,cn=pbac,dc=ipa",
|
||||
"dn": "cn=subtree,cn=permissions,cn=pbac,dc=example,dc=com",
|
||||
"objectclass": [
|
||||
"groupofnames",
|
||||
"top"
|
||||
@ -34,7 +34,7 @@
|
||||
"permissions": [
|
||||
"write"
|
||||
],
|
||||
"subtree": "ldap:///dc=ipa"
|
||||
"subtree": "ldap:///dc=example,dc=com"
|
||||
},
|
||||
"summary": null,
|
||||
"value": "subtree"
|
||||
|
@ -30,7 +30,7 @@
|
||||
"description": [
|
||||
"Target Group Permission"
|
||||
],
|
||||
"dn": "cn=group,cn=permissions,cn=pbac,dc=ipa",
|
||||
"dn": "cn=group,cn=permissions,cn=pbac,dc=example,dc=com",
|
||||
"objectclass": [
|
||||
"groupofnames",
|
||||
"top"
|
||||
|
@ -31,7 +31,7 @@
|
||||
"description": [
|
||||
"Type Permission"
|
||||
],
|
||||
"dn": "cn=type,cn=permissions,cn=pbac,dc=ipa",
|
||||
"dn": "cn=type,cn=permissions,cn=pbac,dc=example,dc=com",
|
||||
"objectclass": [
|
||||
"groupofnames",
|
||||
"top"
|
||||
|
@ -205,7 +205,7 @@
|
||||
],
|
||||
"dn": "cn=dnsserver,cn=privileges,cn=accounts,dc=example,dc=com",
|
||||
"memberindirect": [
|
||||
"krbprincipalname=dns/ipa.example.com@example.com,cn=services,cn=accounts,dc=example,dc=com"
|
||||
"krbprincipalname=dns/dev.example.com@example.com,cn=services,cn=accounts,dc=example,dc=com"
|
||||
]
|
||||
}
|
||||
],
|
||||
|
@ -272,7 +272,7 @@
|
||||
],
|
||||
"dn": "cn=dnsserver,cn=privileges,cn=accounts,dc=example,dc=com",
|
||||
"memberindirect": [
|
||||
"krbprincipalname=dns/ipa.example.com@example.com,cn=services,cn=accounts,dc=example,dc=com"
|
||||
"krbprincipalname=dns/dev.example.com@example.com,cn=services,cn=accounts,dc=example,dc=com"
|
||||
]
|
||||
},
|
||||
"summary": null,
|
||||
|
@ -25,7 +25,7 @@
|
||||
],
|
||||
"dn": "cn=dnsserver,cn=privileges,cn=accounts,dc=example,dc=com",
|
||||
"memberindirect": [
|
||||
"krbprincipalname=dns/ipa.example.com@example.com,cn=services,cn=accounts,dc=example,dc=com"
|
||||
"krbprincipalname=dns/dev.example.com@example.com,cn=services,cn=accounts,dc=example,dc=com"
|
||||
],
|
||||
"objectclass": [
|
||||
"top",
|
||||
|
@ -5,8 +5,8 @@
|
||||
"count": 3,
|
||||
"result": [
|
||||
{
|
||||
"cn": "GLOBAL",
|
||||
"dn": "cn=accounts,dc=example,dc=com",
|
||||
"cn": "global_policy",
|
||||
"dn": "cn=global_policy,cn=example.com,cn=kerberos,dc=example,dc=com",
|
||||
"krbmaxpwdlife": [
|
||||
"90"
|
||||
],
|
||||
@ -25,12 +25,12 @@
|
||||
},
|
||||
{
|
||||
"cn": [
|
||||
"testgroup12"
|
||||
"ipausers"
|
||||
],
|
||||
"cospriority": [
|
||||
"1"
|
||||
],
|
||||
"dn": "cn=testgroup12,cn=example.com,cn=kerberos,dc=example,dc=com",
|
||||
"dn": "cn=ipausers,cn=example.com,cn=kerberos,dc=example,dc=com",
|
||||
"krbmaxpwdlife": [
|
||||
"40"
|
||||
],
|
||||
@ -46,12 +46,12 @@
|
||||
},
|
||||
{
|
||||
"cn": [
|
||||
"testgroup22"
|
||||
"editors"
|
||||
],
|
||||
"cospriority": [
|
||||
"2"
|
||||
],
|
||||
"dn": "cn=testgroup22,cn=example.com,cn=kerberos,dc=example,dc=com",
|
||||
"dn": "cn=editors,cn=example.com,cn=kerberos,dc=example,dc=com",
|
||||
"krbmaxpwdlife": [
|
||||
"60"
|
||||
],
|
||||
|
@ -5,20 +5,20 @@
|
||||
"count": 3,
|
||||
"result": [
|
||||
{
|
||||
"cn": "GLOBAL",
|
||||
"dn": "cn=accounts,dc=example,dc=com"
|
||||
"cn": "global_policy",
|
||||
"dn": "cn=global_policy,cn=example.com,cn=kerberos,dc=example,dc=com"
|
||||
},
|
||||
{
|
||||
"cn": [
|
||||
"testgroup12"
|
||||
"ipausers"
|
||||
],
|
||||
"dn": "cn=testgroup12,cn=example.com,cn=kerberos,dc=example,dc=com"
|
||||
"dn": "cn=ipausers,cn=example.com,cn=kerberos,dc=example,dc=com"
|
||||
},
|
||||
{
|
||||
"cn": [
|
||||
"testgroup22"
|
||||
"editors"
|
||||
],
|
||||
"dn": "cn=testgroup22,cn=example.com,cn=kerberos,dc=example,dc=com"
|
||||
"dn": "cn=editors,cn=example.com,cn=kerberos,dc=example,dc=com"
|
||||
}
|
||||
],
|
||||
"summary": null,
|
||||
|
@ -7,8 +7,8 @@
|
||||
{
|
||||
"error": null,
|
||||
"result": {
|
||||
"cn": "GLOBAL",
|
||||
"dn": "cn=accounts,dc=example,dc=com",
|
||||
"cn": "global_policy",
|
||||
"dn": "cn=global_policy,cn=example.com,cn=kerberos,dc=example,dc=com",
|
||||
"krbmaxpwdlife": [
|
||||
"90"
|
||||
],
|
||||
@ -32,12 +32,12 @@
|
||||
"error": null,
|
||||
"result": {
|
||||
"cn": [
|
||||
"testgroup12"
|
||||
"ipausers"
|
||||
],
|
||||
"cospriority": [
|
||||
"1"
|
||||
],
|
||||
"dn": "cn=testgroup12,cn=example.com,cn=kerberos,dc=example,dc=com",
|
||||
"dn": "cn=ipausers,cn=example.com,cn=kerberos,dc=example,dc=com",
|
||||
"krbmaxpwdlife": [
|
||||
"40"
|
||||
],
|
||||
@ -52,18 +52,18 @@
|
||||
]
|
||||
},
|
||||
"summary": null,
|
||||
"value": "testgroup12"
|
||||
"value": "ipausers"
|
||||
},
|
||||
{
|
||||
"error": null,
|
||||
"result": {
|
||||
"cn": [
|
||||
"testgroup22"
|
||||
"editors"
|
||||
],
|
||||
"cospriority": [
|
||||
"2"
|
||||
],
|
||||
"dn": "cn=testgroup22,cn=example.com,cn=kerberos,dc=example,dc=com",
|
||||
"dn": "cn=editors,cn=example.com,cn=kerberos,dc=example,dc=com",
|
||||
"krbmaxpwdlife": [
|
||||
"60"
|
||||
],
|
||||
@ -78,7 +78,7 @@
|
||||
]
|
||||
},
|
||||
"summary": null,
|
||||
"value": "testgroup22"
|
||||
"value": "editors"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -20,7 +20,7 @@
|
||||
"cn": [
|
||||
"global_policy"
|
||||
],
|
||||
"dn": "cn=global_policy,cn=dev.example.com,cn=kerberos,dc=dev,dc=example,dc=com",
|
||||
"dn": "cn=global_policy,cn=example.com,cn=kerberos,dc=example,dc=com",
|
||||
"krbmaxpwdlife": [
|
||||
"90"
|
||||
],
|
||||
|
@ -3,12 +3,12 @@
|
||||
"id": 0,
|
||||
"result": {
|
||||
"result": {
|
||||
"dn": "krbprincipalname=test/dev.example.com@dev.example.com,cn=services,cn=accounts,dc=dev,dc=example,dc=com",
|
||||
"dn": "krbprincipalname=test/dev.example.com@EXAMPLE.COM,cn=services,cn=accounts,dc=example,dc=com",
|
||||
"ipauniqueid": [
|
||||
"5b314ad9-bae4-11df-b82f-00163e72f2d9"
|
||||
],
|
||||
"krbprincipalname": [
|
||||
"test/dev.example.com@DEV.EXAMPLE.COM"
|
||||
"test/dev.example.com@EXAMPLE.COM"
|
||||
],
|
||||
"managedby_host": [
|
||||
"dev.example.com"
|
||||
@ -23,7 +23,7 @@
|
||||
"top"
|
||||
]
|
||||
},
|
||||
"summary": "Added service \"test/dev.example.com@DEV.EXAMPLE.COM\"",
|
||||
"value": "test/dev.example.com@DEV.EXAMPLE.COM"
|
||||
"summary": "Added service \"test/dev.example.com@EXAMPLE.COM\"",
|
||||
"value": "test/dev.example.com@EXAMPLE.COM"
|
||||
}
|
||||
}
|
||||
|
@ -9,9 +9,9 @@
|
||||
}
|
||||
},
|
||||
"result": {
|
||||
"dn": "krbprincipalname=test/dev.example.com@dev.example.com,cn=services,cn=accounts,dc=dev,dc=example,dc=com",
|
||||
"dn": "krbprincipalname=test/dev.example.com@EXAMPLE.COM,cn=services,cn=accounts,dc=example,dc=com",
|
||||
"krbprincipalname": [
|
||||
"test/dev.example.com@DEV.EXAMPLE.COM"
|
||||
"test/dev.example.com@EXAMPLE.COM"
|
||||
],
|
||||
"managedby_host": [
|
||||
"dev.example.com"
|
||||
|
@ -3,7 +3,7 @@
|
||||
"id": 0,
|
||||
"result": {
|
||||
"result": true,
|
||||
"summary": "Deleted service \"test/dev.example.com@DEV.EXAMPLE.COM\"",
|
||||
"value": "test/dev.example.com@DEV.EXAMPLE.COM"
|
||||
"summary": "Deleted service \"test/dev.example.com@EXAMPLE.COM\"",
|
||||
"value": "test/dev.example.com@EXAMPLE.COM"
|
||||
}
|
||||
}
|
||||
|
@ -3,7 +3,7 @@
|
||||
"id": 0,
|
||||
"result": {
|
||||
"result": true,
|
||||
"summary": "Removed kerberos key from \"test/dev.example.com@DEV.EXAMPLE.COM\"",
|
||||
"value": "test/dev.example.com@DEV.EXAMPLE.COM"
|
||||
"summary": "Removed kerberos key from \"test/dev.example.com@EXAMPLE.COM\"",
|
||||
"value": "test/dev.example.com@EXAMPLE.COM"
|
||||
}
|
||||
}
|
||||
|
@ -5,10 +5,10 @@
|
||||
"count": 3,
|
||||
"result": [
|
||||
{
|
||||
"dn": "krbprincipalname=ldap/dev.example.com@dev.example.com,cn=services,cn=accounts,dc=dev,dc=example,dc=com",
|
||||
"dn": "krbprincipalname=ldap/dev.example.com@EXAMPLE.COM,cn=services,cn=accounts,dc=example,dc=com",
|
||||
"has_keytab": true,
|
||||
"krbprincipalname": [
|
||||
"ldap/dev.example.com@DEV.EXAMPLE.COM"
|
||||
"ldap/dev.example.com@EXAMPLE.COM"
|
||||
],
|
||||
"managedby_host": [
|
||||
"dev.example.com"
|
||||
@ -20,10 +20,10 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
"dn": "krbprincipalname=http/dev.example.com@dev.example.com,cn=services,cn=accounts,dc=dev,dc=example,dc=com",
|
||||
"dn": "krbprincipalname=http/dev.example.com@EXAMPLE.COM,cn=services,cn=accounts,dc=example,dc=com",
|
||||
"has_keytab": true,
|
||||
"krbprincipalname": [
|
||||
"HTTP/dev.example.com@DEV.EXAMPLE.COM"
|
||||
"HTTP/dev.example.com@EXAMPLE.COM"
|
||||
],
|
||||
"usercertificate": [
|
||||
{
|
||||
@ -32,10 +32,10 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
"dn": "krbprincipalname=test/dev.example.com@dev.example.com,cn=services,cn=accounts,dc=dev,dc=example,dc=com",
|
||||
"dn": "krbprincipalname=test/dev.example.com@EXAMPLE.COM,cn=services,cn=accounts,dc=example,dc=com",
|
||||
"has_keytab": false,
|
||||
"krbprincipalname": [
|
||||
"test/dev.example.com@DEV.EXAMPLE.COM"
|
||||
"test/dev.example.com@EXAMPLE.COM"
|
||||
],
|
||||
"managedby_host": [
|
||||
"dev.example.com"
|
||||
|
@ -5,21 +5,21 @@
|
||||
"count": 3,
|
||||
"result": [
|
||||
{
|
||||
"dn": "krbprincipalname=ldap/dev.example.com@dev.example.com,cn=services,cn=accounts,dc=dev,dc=example,dc=com",
|
||||
"dn": "krbprincipalname=ldap/dev.example.com@EXAMPLE.COM,cn=services,cn=accounts,dc=example,dc=com",
|
||||
"krbprincipalname": [
|
||||
"ldap/dev.example.com@DEV.EXAMPLE.COM"
|
||||
"ldap/dev.example.com@EXAMPLE.COM"
|
||||
]
|
||||
},
|
||||
{
|
||||
"dn": "krbprincipalname=http/dev.example.com@dev.example.com,cn=services,cn=accounts,dc=dev,dc=example,dc=com",
|
||||
"dn": "krbprincipalname=http/dev.example.com@EXAMPLE.COM,cn=services,cn=accounts,dc=example,dc=com",
|
||||
"krbprincipalname": [
|
||||
"HTTP/dev.example.com@DEV.EXAMPLE.COM"
|
||||
"HTTP/dev.example.com@EXAMPLE.COM"
|
||||
]
|
||||
},
|
||||
{
|
||||
"dn": "krbprincipalname=test/dev.example.com@dev.example.com,cn=services,cn=accounts,dc=dev,dc=example,dc=com",
|
||||
"dn": "krbprincipalname=test/dev.example.com@EXAMPLE.COM,cn=services,cn=accounts,dc=example,dc=com",
|
||||
"krbprincipalname": [
|
||||
"test/dev.example.com@DEV.EXAMPLE.COM"
|
||||
"test/dev.example.com@EXAMPLE.COM"
|
||||
]
|
||||
}
|
||||
],
|
||||
|
@ -7,10 +7,10 @@
|
||||
{
|
||||
"error": null,
|
||||
"result": {
|
||||
"dn": "krbprincipalname=ldap/dev.example.com@dev.example.com,cn=services,cn=accounts,dc=dev,dc=example,dc=com",
|
||||
"dn": "krbprincipalname=ldap/dev.example.com@EXAMPLE.COM,cn=services,cn=accounts,dc=example,dc=com",
|
||||
"has_keytab": true,
|
||||
"krbprincipalname": [
|
||||
"ldap/dev.example.com@DEV.EXAMPLE.COM"
|
||||
"ldap/dev.example.com@EXAMPLE.COM"
|
||||
],
|
||||
"managedby_host": [
|
||||
"dev.example.com"
|
||||
@ -22,15 +22,15 @@
|
||||
]
|
||||
},
|
||||
"summary": null,
|
||||
"value": "ldap/dev.example.com@DEV.EXAMPLE.COM"
|
||||
"value": "ldap/dev.example.com@EXAMPLE.COM"
|
||||
},
|
||||
{
|
||||
"error": null,
|
||||
"result": {
|
||||
"dn": "krbprincipalname=http/dev.example.com@dev.example.com,cn=services,cn=accounts,dc=dev,dc=example,dc=com",
|
||||
"dn": "krbprincipalname=http/dev.example.com@EXAMPLE.COM,cn=services,cn=accounts,dc=example,dc=com",
|
||||
"has_keytab": true,
|
||||
"krbprincipalname": [
|
||||
"HTTP/dev.example.com@DEV.EXAMPLE.COM"
|
||||
"HTTP/dev.example.com@EXAMPLE.COM"
|
||||
],
|
||||
"usercertificate": [
|
||||
{
|
||||
@ -39,22 +39,22 @@
|
||||
]
|
||||
},
|
||||
"summary": null,
|
||||
"value": "HTTP/dev.example.com@DEV.EXAMPLE.COM"
|
||||
"value": "HTTP/dev.example.com@EXAMPLE.COM"
|
||||
},
|
||||
{
|
||||
"error": null,
|
||||
"result": {
|
||||
"dn": "krbprincipalname=test/dev.example.com@dev.example.com,cn=services,cn=accounts,dc=dev,dc=example,dc=com",
|
||||
"dn": "krbprincipalname=test/dev.example.com@EXAMPLE.COM,cn=services,cn=accounts,dc=example,dc=com",
|
||||
"has_keytab": false,
|
||||
"krbprincipalname": [
|
||||
"test/dev.example.com@DEV.EXAMPLE.COM"
|
||||
"test/dev.example.com@EXAMPLE.COM"
|
||||
],
|
||||
"managedby_host": [
|
||||
"dev.example.com"
|
||||
]
|
||||
},
|
||||
"summary": null,
|
||||
"value": "test/dev.example.com@DEV.EXAMPLE.COM"
|
||||
"value": "test/dev.example.com@EXAMPLE.COM"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -53,7 +53,7 @@
|
||||
"description": [
|
||||
"Development"
|
||||
],
|
||||
"dn": "fqdn=dev.example.com,cn=computers,cn=accounts,dc=dev,dc=example,dc=com",
|
||||
"dn": "fqdn=dev.example.com,cn=computers,cn=accounts,dc=example,dc=com",
|
||||
"fqdn": [
|
||||
"dev.example.com"
|
||||
],
|
||||
@ -76,7 +76,7 @@
|
||||
"19700101000000Z"
|
||||
],
|
||||
"krbprincipalname": [
|
||||
"host/dev.example.com@DEV.EXAMPLE.COM"
|
||||
"host/dev.example.com@EXAMPLE.COM"
|
||||
],
|
||||
"krbticketflags": [
|
||||
"0"
|
||||
|
@ -4,7 +4,7 @@
|
||||
"result": {
|
||||
"result": {
|
||||
"krbprincipalname": [
|
||||
"test/dev.example.com@DEV.EXAMPLE.COM"
|
||||
"test/dev.example.com@EXAMPLE.COM"
|
||||
],
|
||||
"managedby_host": [
|
||||
"dev.example.com"
|
||||
@ -15,7 +15,7 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
"summary": "Modified service \"test/dev.example.com@DEV.EXAMPLE.COM\"",
|
||||
"value": "test/dev.example.com@DEV.EXAMPLE.COM"
|
||||
"summary": "Modified service \"test/dev.example.com@EXAMPLE.COM\"",
|
||||
"value": "test/dev.example.com@EXAMPLE.COM"
|
||||
}
|
||||
}
|
@ -9,9 +9,9 @@
|
||||
}
|
||||
},
|
||||
"result": {
|
||||
"dn": "krbprincipalname=test/dev.example.com@dev.example.com,cn=services,cn=accounts,dc=dev,dc=example,dc=com",
|
||||
"dn": "krbprincipalname=test/dev.example.com@EXAMPLE.COM,cn=services,cn=accounts,dc=example,dc=com",
|
||||
"krbprincipalname": [
|
||||
"test/dev.example.com@DEV.EXAMPLE.COM"
|
||||
"test/dev.example.com@EXAMPLE.COM"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
@ -32,9 +32,9 @@
|
||||
"objectclass": "rscwo",
|
||||
"usercertificate": "rscwo"
|
||||
},
|
||||
"dn": "krbprincipalname=test/dev.example.com@dev.example.com,cn=services,cn=accounts,dc=dev,dc=example,dc=com",
|
||||
"dn": "krbprincipalname=test/dev.example.com@EXAMPLE.COM,cn=services,cn=accounts,dc=example,dc=com",
|
||||
"has_keytab": true,
|
||||
"issuer": "CN=IPA Test Certificate Authority",
|
||||
"issuer": "CN=Certificate Authority,O=EXAMPLE.COM",
|
||||
"ipauniqueid": [
|
||||
"c0298f70-f396-11df-a2aa-00163e72f2d9"
|
||||
],
|
||||
@ -42,7 +42,7 @@
|
||||
"20101119101837Z"
|
||||
],
|
||||
"krbprincipalname": [
|
||||
"test/dev.example.com@DEV.EXAMPLE.COM"
|
||||
"test/dev.example.com@EXAMPLE.COM"
|
||||
],
|
||||
"managedby_host": [
|
||||
"dev.example.com"
|
||||
@ -50,7 +50,7 @@
|
||||
"md5_fingerprint": "08:86:a9:f9:87:af:0d:d7:42:01:e0:5f:12:9b:32:7f",
|
||||
"serial_number": "1",
|
||||
"sha1_fingerprint": "b8:4c:4b:79:4f:13:03:79:47:08:fa:6b:52:63:3d:f9:15:8e:7e:dc",
|
||||
"subject": "CN=dev.example.com,O=IPA",
|
||||
"subject": "CN=dev.example.com,O=EXAMPLE.COM",
|
||||
"usercertificate": [
|
||||
{
|
||||
"__base64__": "MIICAjCCAWugAwIBAgICBAswDQYJKoZIhvcNAQEFBQAwKTEnMCUGA1UEAxMeSVBBIFRlc3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5MB4XDTEwMTAwNzIzMzk0NFoXDTE1MTAwNzIzMzk0NFowKDEMMAoGA1UECgwDSVBBMRgwFgYDVQQDDA9kZXYuZXhhbXBsZS5jb20wgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAOTXyj8grVB7Rj95RFawgdwn9OYZ03LWHZ+HMYggu2/xCCrUrdThP14YBlVqZumjVJSclj6T4ACjjdPJq9JTTmx7gMizDTReus7IPlS6fCxb5v5whQJZsEksXL04OxUMl25euPRFkYcTK1rdW47+AkG10j1qeNW+B6CpdQGR6eM/AgMBAAGjOjA4MBEGCWCGSAGG+EIBAQQEAwIGQDATBgNVHSUEDDAKBggrBgEFBQcDATAOBgNVHQ8BAf8EBAMCBPAwDQYJKoZIhvcNAQEFBQADgYEASIhq723VL5xP0q51MYXFlGU1boD7pPD1pIQspD/MjCIEupcbH2kAo4wf+EiKsXR0rs+WZkaSgvFqaM4OQ2kWSFTiqmFXFDBEi6EFr68yLg7IpQpNTzVBXERd8B4GwNL9wrRw60jPXlUK29DPBsdGq8fDgX18l39wKkWXv7p1to4="
|
||||
@ -69,6 +69,6 @@
|
||||
]
|
||||
},
|
||||
"summary": null,
|
||||
"value": "test/dev.example.com@DEV.EXAMPLE.COM"
|
||||
"value": "test/dev.example.com@EXAMPLE.COM"
|
||||
}
|
||||
}
|
||||
|
@ -3,7 +3,7 @@
|
||||
"id": 0,
|
||||
"result": {
|
||||
"result": {
|
||||
"dn": "sudocmd=/usr/bin/less,cn=sudocmds,cn=sudo,dc=dev,dc=example,dc=com",
|
||||
"dn": "sudocmd=/usr/bin/less,cn=sudocmds,cn=sudo,dc=example,dc=com",
|
||||
"ipauniqueid": [
|
||||
"09e4ab26-f456-11df-bb95-00163e72f2d9"
|
||||
],
|
||||
|
@ -5,13 +5,13 @@
|
||||
"count": 2,
|
||||
"result": [
|
||||
{
|
||||
"dn": "sudocmd=/usr/bin/more,cn=sudocmds,cn=sudo,dc=dev,dc=example,dc=com",
|
||||
"dn": "sudocmd=/usr/bin/more,cn=sudocmds,cn=sudo,dc=example,dc=com",
|
||||
"sudocmd": [
|
||||
"/usr/bin/more"
|
||||
]
|
||||
},
|
||||
{
|
||||
"dn": "sudocmd=/usr/bin/less,cn=sudocmds,cn=sudo,dc=dev,dc=example,dc=com",
|
||||
"dn": "sudocmd=/usr/bin/less,cn=sudocmds,cn=sudo,dc=example,dc=com",
|
||||
"sudocmd": [
|
||||
"/usr/bin/less"
|
||||
]
|
||||
|
@ -5,13 +5,13 @@
|
||||
"count": 2,
|
||||
"result": [
|
||||
{
|
||||
"dn": "sudocmd=/usr/bin/more,cn=sudocmds,cn=sudo,dc=dev,dc=example,dc=com",
|
||||
"dn": "sudocmd=/usr/bin/more,cn=sudocmds,cn=sudo,dc=example,dc=com",
|
||||
"sudocmd": [
|
||||
"/usr/bin/more"
|
||||
]
|
||||
},
|
||||
{
|
||||
"dn": "sudocmd=/usr/bin/less,cn=sudocmds,cn=sudo,dc=dev,dc=example,dc=com",
|
||||
"dn": "sudocmd=/usr/bin/less,cn=sudocmds,cn=sudo,dc=example,dc=com",
|
||||
"sudocmd": [
|
||||
"/usr/bin/less"
|
||||
]
|
||||
|
@ -7,7 +7,7 @@
|
||||
{
|
||||
"error": null,
|
||||
"result": {
|
||||
"dn": "sudocmd=/usr/bin/more,cn=sudocmds,cn=sudo,dc=dev,dc=example,dc=com",
|
||||
"dn": "sudocmd=/usr/bin/more,cn=sudocmds,cn=sudo,dc=example,dc=com",
|
||||
"sudocmd": [
|
||||
"/usr/bin/more"
|
||||
]
|
||||
@ -18,7 +18,7 @@
|
||||
{
|
||||
"error": null,
|
||||
"result": {
|
||||
"dn": "sudocmd=/usr/bin/less,cn=sudocmds,cn=sudo,dc=dev,dc=example,dc=com",
|
||||
"dn": "sudocmd=/usr/bin/less,cn=sudocmds,cn=sudo,dc=example,dc=com",
|
||||
"sudocmd": [
|
||||
"/usr/bin/less"
|
||||
]
|
||||
|
@ -20,7 +20,7 @@
|
||||
"description": [
|
||||
"Group 1"
|
||||
],
|
||||
"dn": "cn=group1,cn=sudocmdgroups,cn=sudo,dc=ipa",
|
||||
"dn": "cn=group1,cn=sudocmdgroups,cn=sudo,dc=example,dc=com",
|
||||
"member_sudocmd": [
|
||||
"/usr/bin/less"
|
||||
]
|
||||
@ -42,7 +42,7 @@
|
||||
"description": [
|
||||
"Group 2"
|
||||
],
|
||||
"dn": "cn=group2,cn=sudocmdgroups,cn=sudo,dc=ipa",
|
||||
"dn": "cn=group2,cn=sudocmdgroups,cn=sudo,dc=example,dc=com",
|
||||
"member_sudocmd": [
|
||||
"/usr/bin/more"
|
||||
]
|
||||
|
@ -20,7 +20,7 @@
|
||||
"description": [
|
||||
"Group 1"
|
||||
],
|
||||
"dn": "cn=group1,cn=sudocmdgroups,cn=sudo,dc=ipa"
|
||||
"dn": "cn=group1,cn=sudocmdgroups,cn=sudo,dc=example,dc=com"
|
||||
}
|
||||
},
|
||||
{
|
||||
@ -39,7 +39,7 @@
|
||||
"description": [
|
||||
"Group 2"
|
||||
],
|
||||
"dn": "cn=group2,cn=sudocmdgroups,cn=sudo,dc=ipa",
|
||||
"dn": "cn=group2,cn=sudocmdgroups,cn=sudo,dc=example,dc=com",
|
||||
"memberindirect_sudocmd": [
|
||||
"/usr/bin/more"
|
||||
]
|
||||
|
@ -13,7 +13,7 @@
|
||||
"description": [
|
||||
"Group 1"
|
||||
],
|
||||
"dn": "cn=group1,cn=sudocmdgroups,cn=sudo,dc=ipa",
|
||||
"dn": "cn=group1,cn=sudocmdgroups,cn=sudo,dc=example,dc=com",
|
||||
"ipauniqueid": [
|
||||
"fc775d2e-1d56-11e0-b7cd-00163e2fe6de"
|
||||
],
|
||||
@ -39,7 +39,7 @@
|
||||
"description": [
|
||||
"Group 2"
|
||||
],
|
||||
"dn": "cn=group2,cn=sudocmdgroups,cn=sudo,dc=ipa",
|
||||
"dn": "cn=group2,cn=sudocmdgroups,cn=sudo,dc=example,dc=com",
|
||||
"ipauniqueid": [
|
||||
"b90c1930-1d5b-11e0-ac89-00163e2fe6de"
|
||||
],
|
||||
|
@ -11,13 +11,13 @@
|
||||
"nsaccountlock": "rscwo",
|
||||
"sudocmd": "rscwo"
|
||||
},
|
||||
"dn": "sudocmd=/usr/bin/less,cn=sudocmds,cn=sudo,dc=dev,dc=example,dc=com",
|
||||
"dn": "sudocmd=/usr/bin/less,cn=sudocmds,cn=sudo,dc=example,dc=com",
|
||||
"ipauniqueid": [
|
||||
"06708d0e-f454-11df-9273-00163e72f2d9"
|
||||
],
|
||||
"memberof": [
|
||||
"cn=group1,cn=sudocmdgroups,cn=sudo,dc=dev,dc=example,dc=com",
|
||||
"cn=group2,cn=sudocmdgroups,cn=sudo,dc=dev,dc=example,dc=com"
|
||||
"cn=group1,cn=sudocmdgroups,cn=sudo,dc=example,dc=com",
|
||||
"cn=group2,cn=sudocmdgroups,cn=sudo,dc=example,dc=com"
|
||||
],
|
||||
"objectclass": [
|
||||
"ipaobject",
|
||||
|
@ -9,7 +9,7 @@
|
||||
"description": [
|
||||
"Group 1"
|
||||
],
|
||||
"dn": "cn=group1,cn=sudocmdgroups,cn=sudo,dc=dev,dc=example,dc=com",
|
||||
"dn": "cn=group1,cn=sudocmdgroups,cn=sudo,dc=example,dc=com",
|
||||
"ipauniqueid": [
|
||||
"1a8f4852-f459-11df-815c-00163e72f2d9"
|
||||
],
|
||||
|
@ -16,7 +16,7 @@
|
||||
"description": [
|
||||
"Sudo Group 1"
|
||||
],
|
||||
"dn": "cn=group1,cn=sudocmdgroups,cn=sudo,dc=dev,dc=example,dc=com",
|
||||
"dn": "cn=group1,cn=sudocmdgroups,cn=sudo,dc=example,dc=com",
|
||||
"member_sudocmd": [
|
||||
"/usr/bin/more",
|
||||
"/usr/bin/less"
|
||||
|
@ -11,7 +11,7 @@
|
||||
"description": [
|
||||
"Group 1"
|
||||
],
|
||||
"dn": "cn=group1,cn=sudocmdgroups,cn=sudo,dc=dev,dc=example,dc=com",
|
||||
"dn": "cn=group1,cn=sudocmdgroups,cn=sudo,dc=example,dc=com",
|
||||
"member_sudocmd": [
|
||||
"/usr/bin/more",
|
||||
"/usr/bin/less"
|
||||
@ -24,7 +24,7 @@
|
||||
"description": [
|
||||
"Group 2"
|
||||
],
|
||||
"dn": "cn=group2,cn=sudocmdgroups,cn=sudo,dc=dev,dc=example,dc=com"
|
||||
"dn": "cn=group2,cn=sudocmdgroups,cn=sudo,dc=example,dc=com"
|
||||
}
|
||||
],
|
||||
"summary": "2 sudo command groups matched",
|
||||
|
@ -8,13 +8,13 @@
|
||||
"cn": [
|
||||
"group1"
|
||||
],
|
||||
"dn": "cn=group1,cn=sudocmdgroups,cn=sudo,dc=dev,dc=example,dc=com"
|
||||
"dn": "cn=group1,cn=sudocmdgroups,cn=sudo,dc=example,dc=com"
|
||||
},
|
||||
{
|
||||
"cn": [
|
||||
"group2"
|
||||
],
|
||||
"dn": "cn=group2,cn=sudocmdgroups,cn=sudo,dc=dev,dc=example,dc=com"
|
||||
"dn": "cn=group2,cn=sudocmdgroups,cn=sudo,dc=example,dc=com"
|
||||
}
|
||||
],
|
||||
"summary": "2 sudo command groups matched",
|
||||
|
@ -13,7 +13,7 @@
|
||||
"description": [
|
||||
"Group 1"
|
||||
],
|
||||
"dn": "cn=group1,cn=sudocmdgroups,cn=sudo,dc=dev,dc=example,dc=com",
|
||||
"dn": "cn=group1,cn=sudocmdgroups,cn=sudo,dc=example,dc=com",
|
||||
"member_sudocmd": [
|
||||
"/usr/bin/more",
|
||||
"/usr/bin/less"
|
||||
@ -31,7 +31,7 @@
|
||||
"description": [
|
||||
"Group 2"
|
||||
],
|
||||
"dn": "cn=group2,cn=sudocmdgroups,cn=sudo,dc=dev,dc=example,dc=com"
|
||||
"dn": "cn=group2,cn=sudocmdgroups,cn=sudo,dc=example,dc=com"
|
||||
},
|
||||
"summary": null,
|
||||
"value": "group2"
|
||||
|
@ -10,12 +10,12 @@
|
||||
"description": [
|
||||
"more"
|
||||
],
|
||||
"dn": "sudocmd=/usr/bin/more,cn=sudocmds,cn=sudo,dc=dev,dc=example,dc=com",
|
||||
"dn": "sudocmd=/usr/bin/more,cn=sudocmds,cn=sudo,dc=example,dc=com",
|
||||
"ipauniqueid": [
|
||||
"a9138c9a-fc0c-11df-8584-00163e72f2d9"
|
||||
],
|
||||
"memberof": [
|
||||
"cn=test,cn=sudocmdgroups,cn=sudo,dc=dev,dc=example,dc=com"
|
||||
"cn=test,cn=sudocmdgroups,cn=sudo,dc=example,dc=com"
|
||||
],
|
||||
"objectclass": [
|
||||
"ipaobject",
|
||||
@ -34,12 +34,12 @@
|
||||
"description": [
|
||||
"less"
|
||||
],
|
||||
"dn": "sudocmd=/usr/bin/less,cn=sudocmds,cn=sudo,dc=dev,dc=example,dc=com",
|
||||
"dn": "sudocmd=/usr/bin/less,cn=sudocmds,cn=sudo,dc=example,dc=com",
|
||||
"ipauniqueid": [
|
||||
"44ce29ee-fc38-11df-b995-00163e72f2d9"
|
||||
],
|
||||
"memberof": [
|
||||
"cn=test,cn=sudocmdgroups,cn=sudo,dc=dev,dc=example,dc=com"
|
||||
"cn=test,cn=sudocmdgroups,cn=sudo,dc=example,dc=com"
|
||||
],
|
||||
"objectclass": [
|
||||
"ipaobject",
|
||||
|
@ -16,7 +16,7 @@
|
||||
"description": [
|
||||
"Sudo Group 1"
|
||||
],
|
||||
"dn": "cn=group1,cn=sudocmdgroups,cn=sudo,dc=dev,dc=example,dc=com"
|
||||
"dn": "cn=group1,cn=sudocmdgroups,cn=sudo,dc=example,dc=com"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user