Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


Warning
iconfalse

Все URL указываются в нижнем регистреAll URLs are specified in lowercase.

Формат json не допускает наличия комментариев в файле, поэтому необходимо удалить строки, начинающиеся с символов "//"

The json format does not allow comments in the file, so you must delete lines beginning with the characters "//"


Warning
iconfalse

You need to recycle Indeed.Idp application pool after every change to the configuration file. You can do this in IIS Manager snap-in, or with powershell command 

Code Block
languagepowershell
Restart-WebAppPool Indeed.Idp



Note
iconfalse

пример URL examplehttps://pam.domain.local/pam/coreidp
pam.domain.local - полное DNS имя сервера управления
 the fully qualified DNS name of the management server


Go to Перейдите в каталог C:\inetpub\wwwroot\pam\idp и отредактируйте файл folder and edit appsettings.json file:

Секция

ConnectionStrings

  • DefaultConnection -  строка подключения к базе данных IPAMIdP

Параметры строки подключения: 

  • database connection string IPAMIdP

Connection String parameters:

  • Server the name of Microsoft SQL Server or its named instance
  • Database -the name of database (IPAMIdP)User ID - is the service account to use with Indeed PAM databases
  • Password - the password for that service account

  • Server - имя сервера СУБД или именованного экземпляра
  • Database - имя базы данных
  • User ID - учётная запись для работы с БД
  • Password - пароль учётной записи

Code Block
languagejs
  "ConnectionStrings": {
    "DefaultConnection": "Server=sql.domain.local; Database=IPAMIdP; Integrated Security=False; User ID=IPAMSQLServiceOps; Password=password"
  }, 


Warning
iconfalse

В случае использования именованного экземпляра Microsoft SQL Server значение параметра Server необходимо указывать в формате имя сервера\\имя экземпляраIf using a Named Instance of Microsoft SQL Server, the value of the Server parameter must be specified in the Server Name\\Named instance format.

Code Block
languagejs
"DefaultConnection": "Server=sql\\instance; ..."
Секция



Database

В ключе Provider необходимо указать провайдера подключения к СУБДIn the Provider section, select the DBMS connection provider:

  • mssql - для for the MS SQL Server
  • pgsql - для PostgreSQL, for the PostgreSQL Pro
Секция

IdentitySettings

  • AdminSids - SID пользователя, который получит доступ к консоли администратора и управлению ролями. Если пользователей несколько, то их SID указывается через запятую - SID of the user to get access to administrator console and the Roles management. If there are several of them, then the SIDs must be divided by comma
  • IdpUrls - URL адреса Indeed PAM IdPare Indeed IdP URL addresses
  • Lang - язык локализации компонента (ru - русский, en - английский)
  • GatewaySecret - Хеш клиентского ключа Pam Gateway для дополнительной аутентификации
  • ConsoleAppClientSecretХеш клиентского ключа консольной утилиты для дополнительной аутентификации

  • SshProxyClientSecret Хеш клиентского ключа SSH Proxy для дополнительной аутентификации
  • CoreApiSecretХеш клиентского ключа Pam Core для целей дополнительной аутентификации компонента

  •  - the user interface language of the component, set it to "en" value
  • GatewaySecret - Hash for PAM Gateway component authentication
  • ConsoleAppClientSecret Hash for Console App utility authentication

  • SshProxyClientSecret - Hash for SSH Proxy component authentication
  • CoreApiSecret - Hash for PAM Core component authentication

  • IdpApiSecret - Secret for Idp component authentication

    Excerpt Include
    Configuring PAM components
    Configuring PAM components

    IdpApiSecret - Секрет клиентского ключа Indeed PAM IdP

    Excerpt Include
    ConfigurationConfiguration
    nopaneltrue

  • Enable2FaCacheForClients - список id клиентов, для которых будет работать кэширование второго фактора - List of client IDs for which the 2nd factor caching will work
  • SecondFaCacheLifetimeSeconds - время кэширования второго фактора в секундах
    Список доступных id клиентов

    SecondFaCacheLifetimeSeconds - 2nd factor caching time in seconds
    List of available client ids -


    • "console-app"
    • "ssh-proxy-app"
    • "pam-management-console"
    • "pam-user-console"
    • "pam-gateway"

    • "pam-remote-client"


Code Block
languagejs
"IdentitySettings":{
	"AdminSids": [ 
		"S-1-5-21-1487179672-2651565253-5257550508-0000", 
		"S-1-5-21-1487179672-2651565253-5257550508-0001" 
	],
	"IdpUrls": [ "https://pam.domain.local/pam/idp" ],
    "Lang": "
ru
en",
    "SigningCertificate": "",
    "GatewaySecret": "N2u7dSLd5f8BmLHe5BImaOg7HWb9gCeKdTGCIC0iy9o=",
    "ConsoleAppClientSecret": "",
    "SshProxyClientSecret": "pgJSv8V5+mWMEecN3e6Lvp/pWBlbOOdiAuaU4nYvtv4=",
    "CoreApiSecret": "m2Ux/xH/uifL5xuILdkChgwyyZDDY8DacwHMUgURs7k=",
    "IdpApiSecret": "yGJHfNmHT0EX5GidmZ0GxChcqWLPx8HxXAyefo8eUWb6azPnBZIhQ5J1twyA3S+fomKeJpYbxHgQqyRilGadWg==",
    "RemoteInstallerClientSecret": "",
    "Enable2FaCacheForClients": [ "pam-management-console" ],
    "SecondFaCacheLifetimeSeconds": 60
  },
Секция

Encryption

  • Algorithm - алгоритм шифрования данных в БД IDP data encryption algorithm in the IDP database
  • Key - ключ шифрования данных в БД IPAMIdP data encryption key in the IDP database

    Code Block
    languagejs
    firstline13
      "Encryption": {
        "Algorithm": "AES",
        "Key": "3227cff10b834ee60ad285588c6510ea1b4ded5b24704cf644a51d2a9db3b7e5"
      },


    Note
    iconfalse

    Ключ шифрования генерируется утилитой The encryption key is generated by the IndeedPAM.KeyGen.exe, которая входит в состав дистрибутива Indeed PAM и располагается в каталоге /Misc.

Секция
  • utility, which is included in the Indeed PAM distribution kit and is located in the /Misc directory.


PamSettings

  • ManagementConsoleUrls - URL адреса Indeed  URL of PAM Management Console
  • UserConsoleUrls - URL адреса Indeed  URL of PAM User Console
  • CoreUrls - URL адреса Indeed  URL of PAM Core
  • SessionLifetimemaximum duration of a user session in secondsмаксимальная продолжительность пользовательской сессии, секунд 

    Code Block
    languagejs
    firstline13
      "PamSettings": {
        "ManagementConsoleUrls": [ "https://pam.domain.local/pam/mc" ],
        "UserConsoleUrls": [ "https://pam.domain.local/pam/uc" ],
        "CoreUrls": [ "https://pam.domain.local/pam/core" ],
        "SessionLifetime": 43200
      },

Секция UserCatalog


UserCatalog

This section is required to search and add users to the Roles. It is filled in the same way as the similar section in the Pam Core settingsНеобходима для поиска и добавления пользователей в составы ролей. Заполняется так же как аналогичная секция в настройках Pam Core.

Backtotop
Delay0
Distance250


Divbox
classrightFloat

Table of Contents
printablefalse