<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://en-wiki.ikoula.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Mschmit52a93</id>
	<title>EN Ikoula wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://en-wiki.ikoula.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Mschmit52a93"/>
	<link rel="alternate" type="text/html" href="https://en-wiki.ikoula.com/en/Special:Contributions/Mschmit52a93"/>
	<updated>2026-04-11T04:07:48Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.35.3</generator>
	<entry>
		<id>https://en-wiki.ikoula.com/index.php?title=How_to_use_the_Ikoula_API&amp;diff=10562</id>
		<title>How to use the Ikoula API</title>
		<link rel="alternate" type="text/html" href="https://en-wiki.ikoula.com/index.php?title=How_to_use_the_Ikoula_API&amp;diff=10562"/>
		<updated>2021-02-22T15:46:59Z</updated>

		<summary type="html">&lt;p&gt;Mschmit52a93: /* Wrapper PHP */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;span data-link_translate_fr_title=&amp;quot;Comment utiliser l'API d’Ikoula&amp;quot;  data-link_translate_fr_url=&amp;quot;Comment+utiliser+l'API+d’Ikoula&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:fr:Comment utiliser l'API d’Ikoula]][[fr:Comment utiliser l'API d’Ikoula]]&lt;br /&gt;
&amp;lt;span data-link_translate_es_title=&amp;quot;Cómo utilizar la API de Ikoula&amp;quot;  data-link_translate_es_url=&amp;quot;Cómo+utilizar+la+API+de+Ikoula&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:es:Cómo utilizar la API de Ikoula]][[es:Cómo utilizar la API de Ikoula]]&lt;br /&gt;
&amp;lt;span data-link_translate_nl_title=&amp;quot;Hoe de Ikoula API te gebruiken?&amp;quot;  data-link_translate_nl_url=&amp;quot;Hoe+de+Ikoula+API+te+gebruiken?&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:nl:Hoe de Ikoula API te gebruiken?]][[nl:Hoe de Ikoula API te gebruiken?]]&lt;br /&gt;
&amp;lt;span data-link_translate_zh_title=&amp;quot;如何使用Ikoula的API&amp;quot;  data-link_translate_zh_url=&amp;quot;如何使用Ikoula的API&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:zh:如何使用Ikoula的API]][[zh:如何使用Ikoula的API]]&lt;br /&gt;
&amp;lt;span data-link_translate_it_title=&amp;quot;Come utilizzare l'API Ikoula&amp;quot;  data-link_translate_it_url=&amp;quot;Come+utilizzare+l'API+Ikoula&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:it:Come utilizzare l'API Ikoula]][[it:Come utilizzare l'API Ikoula]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Début de l'article. Placez votre texte ci-après et n'hésitez pas à personnaliser les chapitres selon votre besoin --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
&lt;br /&gt;
IKOULA has an API allowing you to perform actions on the products associated with your customer account. &lt;br /&gt;
Here is the URL of the API: https://api.ikoula.com&lt;br /&gt;
&lt;br /&gt;
Documentation is available directly for each product.&lt;br /&gt;
&lt;br /&gt;
==Explications==&lt;br /&gt;
For obvious security reasons, the Ikoula API requires authentication. This is based on a username, a password and a signature:&amp;lt;br /&amp;gt;&lt;br /&gt;
* The identifier is the email address used to connect to your Ikoula account or to the Extranet. The name of the parameter to transmit it is always &amp;lt;span class=&amp;quot;notranslate&amp;quot;&amp;gt;'''login'''&amp;lt;/span&amp;gt; ;&lt;br /&gt;
* The password must be encrypted via a specific function using a public key provided by Ikoula &amp;lt;span class=&amp;quot;notranslate&amp;quot;&amp;gt;'''crypted_password'''&amp;lt;/span&amp;gt; parameter) and base64_encode ;&lt;br /&gt;
* The signature is generated according to the parameters provided when calling the API.&lt;br /&gt;
* These parameters must always be passed in GET to the API!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''WARNING:'''&lt;br /&gt;
&lt;br /&gt;
For your API tests, you can, for example, use a temporary user dedicated to these tests. The use of password encryption with the Ikoula public key is essential in any production or non-short term context.&amp;lt;br /&amp;gt;&lt;br /&gt;
If the API calls are to be used via a script or a program, we recommend that you create a dedicated user for this purpose rather than using your classic extranet user.&amp;lt;br /&amp;gt;&lt;br /&gt;
Here, you have two possibilities:&lt;br /&gt;
* Create a sub-user directly from the home page of your extranet account (See the WIKI below for the creation of sub-users: [[How to create a sub-account?]]).&lt;br /&gt;
* Contact our support for the creation of an extranet user if needed.&lt;br /&gt;
Be careful not to forget to give him the rights to the desired services.&lt;br /&gt;
&lt;br /&gt;
== Encryption key ==&lt;br /&gt;
&lt;br /&gt;
The public password encryption key is available at the following address: https://api.ikoula.com/downloads/Ikoula.API.RSAKeyPub.pem&lt;br /&gt;
&lt;br /&gt;
== Wrapper PHP ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php &lt;br /&gt;
&lt;br /&gt;
// #################################################&lt;br /&gt;
// ####    ..:: Ikoula Hosting Services ::..     ###&lt;br /&gt;
// ####	   Wrapper for https://api.ikoula.com	 ###&lt;br /&gt;
// #################################################&lt;br /&gt;
&lt;br /&gt;
class IkoulaAPI {&lt;br /&gt;
&lt;br /&gt;
   /**&lt;br /&gt;
    * Email of Ikoula account&lt;br /&gt;
    * @var string Email account&lt;br /&gt;
    */&lt;br /&gt;
    private static $email = &amp;quot;EMAIL_ACCOUNT_IKOULA&amp;quot;;&lt;br /&gt;
&lt;br /&gt;
   /**&lt;br /&gt;
    * Password of Ikoula account&lt;br /&gt;
    * @var string Password account&lt;br /&gt;
    */&lt;br /&gt;
    private static $password = &amp;quot;PASSWORD_ACCOUNT_IKOULA&amp;quot;;&lt;br /&gt;
&lt;br /&gt;
   /**&lt;br /&gt;
    * Ikoula API URI&lt;br /&gt;
    * @var string Password account&lt;br /&gt;
    */ &lt;br /&gt;
    private static $urlApi = &amp;quot;https://api.ikoula.com/&amp;quot;;&lt;br /&gt;
&lt;br /&gt;
   /** Public key path for encrypt data&lt;br /&gt;
    * @var string Path of public key&lt;br /&gt;
    * @see https://api.ikoula.com/downloads/Ikoula.API.RSAKeyPub.pem&lt;br /&gt;
    */ &lt;br /&gt;
    private static $publicKeyPath = &amp;quot;/path/to/ikoula/public/key/Ikoula.API.RSAKeyPub.pem&amp;quot;;&lt;br /&gt;
	&lt;br /&gt;
    /** Fonction for request Ikoula API&lt;br /&gt;
     * @param string $webservice Webservice for data&lt;br /&gt;
     * @param string $format JSON or XML&lt;br /&gt;
     * @param string $type HTTP Type (GET/POST)&lt;br /&gt;
     * @param array $params Params to add for request&lt;br /&gt;
     */&lt;br /&gt;
     public static function requestApi($webservice, $format, $type, $params = [])&lt;br /&gt;
     {&lt;br /&gt;
		// Add connexion information&lt;br /&gt;
		$params['login'] = self::$email;&lt;br /&gt;
		$params['crypted_password'] = base64_encode(self::opensslEncryptPublic(self::$password));&lt;br /&gt;
		$params['format'] = $format;&lt;br /&gt;
&lt;br /&gt;
		// Fix params to lowercase for generate signature correctly&lt;br /&gt;
		$params = array_change_key_case($params);&lt;br /&gt;
&lt;br /&gt;
		// Generate signature&lt;br /&gt;
		$signature = self::createSignature($params);&lt;br /&gt;
&lt;br /&gt;
		// Add signature for call&lt;br /&gt;
		$params['signature'] = $signature;&lt;br /&gt;
&lt;br /&gt;
		// Curl init&lt;br /&gt;
		$ch = curl_init();&lt;br /&gt;
&lt;br /&gt;
		if($ch)&lt;br /&gt;
		{&lt;br /&gt;
			// Create API URI&lt;br /&gt;
			$url = self::$urlApi.$webservice;&lt;br /&gt;
	&lt;br /&gt;
			// Add type request&lt;br /&gt;
			curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $type);&lt;br /&gt;
&lt;br /&gt;
			// If parameters, we encode his &lt;br /&gt;
			if(is_array($params) &amp;amp;&amp;amp; count($params) &amp;gt; 0)&lt;br /&gt;
				$params_str = http_build_query($params);&lt;br /&gt;
&lt;br /&gt;
			// If we use post, fix params&lt;br /&gt;
			if(strcasecmp(&amp;quot;POST&amp;quot;, $type) == 0)&lt;br /&gt;
			{&lt;br /&gt;
				// Fix POST data&lt;br /&gt;
				curl_setopt($ch,CURLOPT_POST, true);&lt;br /&gt;
				curl_setopt($ch,CURLOPT_POSTFIELDS, $params_str);&lt;br /&gt;
			}&lt;br /&gt;
			else&lt;br /&gt;
				$url .= (strpos($url,'?') === false ? '?' : '&amp;amp;').$params_str;&lt;br /&gt;
	&lt;br /&gt;
			// Create curl info&lt;br /&gt;
			curl_setopt($ch, CURLOPT_URL, $url);&lt;br /&gt;
			curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);&lt;br /&gt;
			curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);&lt;br /&gt;
			curl_setopt($ch, CURLOPT_HEADER, 1);&lt;br /&gt;
			curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);&lt;br /&gt;
			curl_setopt($ch, CURLOPT_HEADER, false);&lt;br /&gt;
	&lt;br /&gt;
			// Exec request&lt;br /&gt;
			$data = curl_exec($ch);&lt;br /&gt;
	&lt;br /&gt;
			// Close curl object&lt;br /&gt;
			curl_close($ch);&lt;br /&gt;
	&lt;br /&gt;
			// Return response&lt;br /&gt;
			return($data);&lt;br /&gt;
		}&lt;br /&gt;
&lt;br /&gt;
		return null;&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    /** Create signature with params&lt;br /&gt;
     * @param array $params Params to add for request&lt;br /&gt;
     * @return string Signature encoded&lt;br /&gt;
     */&lt;br /&gt;
    private static function createSignature($params = [])&lt;br /&gt;
    {&lt;br /&gt;
        // Signature to send&lt;br /&gt;
        $signature = null;&lt;br /&gt;
&lt;br /&gt;
        // Verify parameters&lt;br /&gt;
        if (count($params) &amp;gt; 0)&lt;br /&gt;
        {&lt;br /&gt;
            // Sort params&lt;br /&gt;
            ksort($params);&lt;br /&gt;
            &lt;br /&gt;
            // Encode params&lt;br /&gt;
            $query = http_build_query($params);&lt;br /&gt;
&lt;br /&gt;
            // Encode &amp;quot;plus &amp;quot;+&amp;quot;&lt;br /&gt;
            $query = str_replace(&amp;quot;+&amp;quot;, &amp;quot;%20&amp;quot;, $query);&lt;br /&gt;
&lt;br /&gt;
            // Transform in lowercase&lt;br /&gt;
            $query = strtolower($query);&lt;br /&gt;
&lt;br /&gt;
            $public_key = &amp;quot;&amp;quot;;&lt;br /&gt;
&lt;br /&gt;
            // Verify if key file is present&lt;br /&gt;
            if (file_exists(self::$publicKeyPath))&lt;br /&gt;
            {&lt;br /&gt;
				// Get public key&lt;br /&gt;
                $public_key = trim(&lt;br /&gt;
                        str_replace(&lt;br /&gt;
                                array(&amp;quot;\n&amp;quot;, '-----BEGIN PUBLIC KEY-----','-----END PUBLIC KEY-----'), &lt;br /&gt;
                                array('', '', ''), &lt;br /&gt;
                                file_get_contents(self::$publicKeyPath)&lt;br /&gt;
                            )&lt;br /&gt;
                        );&lt;br /&gt;
            }&lt;br /&gt;
&lt;br /&gt;
   			// SHA1 hash&lt;br /&gt;
            $hash = hash_hmac(&amp;quot;SHA1&amp;quot;, $query, $public_key, true);&lt;br /&gt;
&lt;br /&gt;
    		// base64 encode&lt;br /&gt;
            $signature = base64_encode($hash);&lt;br /&gt;
        }&lt;br /&gt;
&lt;br /&gt;
    	return $signature;&lt;br /&gt;
	}&lt;br /&gt;
	&lt;br /&gt;
	/** Fonction for crypt Ikoula password&lt;br /&gt;
	 * @param string $password Ikoula account password&lt;br /&gt;
	 * @return mixed Ikoula password encrypted, null if error&lt;br /&gt;
	 */&lt;br /&gt;
	private static function opensslEncryptPublic($password)&lt;br /&gt;
	{&lt;br /&gt;
		// Verify if key file exist&lt;br /&gt;
		if(file_exists(self::$publicKeyPath))&lt;br /&gt;
		{&lt;br /&gt;
			 // Verify if password is not empty&lt;br /&gt;
 			if(!empty($password))&lt;br /&gt;
			{&lt;br /&gt;
				// Get file content&lt;br /&gt;
				$publicKey = openssl_pkey_get_public('file://'.realpath(self::$publicKeyPath));&lt;br /&gt;
	&lt;br /&gt;
				// If we get file content without error&lt;br /&gt;
				if ($publicKey !== FALSE)      &lt;br /&gt;
				{&lt;br /&gt;
					// Encrypt password&lt;br /&gt;
					if(openssl_public_encrypt($password, $crypted, $publicKey) === TRUE)&lt;br /&gt;
						return $crypted;&lt;br /&gt;
					else&lt;br /&gt;
						return NULL;&lt;br /&gt;
				}&lt;br /&gt;
				else&lt;br /&gt;
					return NULL;&lt;br /&gt;
			}&lt;br /&gt;
			else&lt;br /&gt;
				return NULL;&lt;br /&gt;
		}&lt;br /&gt;
		else&lt;br /&gt;
			return NULL;&lt;br /&gt;
	}&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Exemples d'utilisation==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
// Fix JSON header&lt;br /&gt;
header(&amp;quot;Content-type: application/json&amp;quot;);&lt;br /&gt;
&lt;br /&gt;
// Get Exch schema for prestation&lt;br /&gt;
echo IkoulaAPI::requestApi(&amp;quot;wsexch/schema-subscr&amp;quot;, &amp;quot;json&amp;quot;, &amp;quot;GET&amp;quot;, ['subscr_id' =&amp;gt; 999999999]);&lt;br /&gt;
&lt;br /&gt;
// Get Flex VM for Ikoula Account&lt;br /&gt;
echo IkoulaAPI::requestApi(&amp;quot;wsflex/list&amp;quot;, &amp;quot;json&amp;quot;, &amp;quot;GET&amp;quot;, []);&lt;br /&gt;
&lt;br /&gt;
// Get Flex VM for Ikoula Account&lt;br /&gt;
echo IkoulaAPI::requestApi(&amp;quot;wsflex/list&amp;quot;, &amp;quot;json&amp;quot;, &amp;quot;GET&amp;quot;, []);&lt;br /&gt;
&lt;br /&gt;
// Get Platform list&lt;br /&gt;
echo IkoulaAPI::requestApi(&amp;quot;wsplatform/list&amp;quot;, &amp;quot;json&amp;quot;, &amp;quot;GET&amp;quot;, []);&lt;br /&gt;
&lt;br /&gt;
// Get Platform dossiers&lt;br /&gt;
echo IkoulaAPI::requestApi(&amp;quot;wsplatform/dossiers&amp;quot;, &amp;quot;json&amp;quot;, &amp;quot;GET&amp;quot;, ['platform_id' =&amp;gt; 999999999]);&lt;br /&gt;
&lt;br /&gt;
// Get Billing conso for CloudStack prestation&lt;br /&gt;
echo IkoulaAPI::requestApi(&amp;quot;wscs/conso-for-billing&amp;quot;, &amp;quot;json&amp;quot;, &amp;quot;GET&amp;quot;, ['subscr_id' =&amp;gt; '999999999', 'billing_id' =&amp;gt; '1']);&lt;br /&gt;
&lt;br /&gt;
// Reboot server&lt;br /&gt;
echo IkoulaAPI::requestApi(&amp;quot;wsds/reboot-apc-request&amp;quot;, &amp;quot;json&amp;quot;, &amp;quot;GET&amp;quot;, ['server_ip' =&amp;gt; 'XXX.XXX.XXX.XXX', 'tempo' =&amp;gt; '3']);&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Adding Features ==&lt;br /&gt;
&lt;br /&gt;
In the event of a feature request, contact technical support.&lt;/div&gt;</summary>
		<author><name>Mschmit52a93</name></author>
	</entry>
	<entry>
		<id>https://en-wiki.ikoula.com/index.php?title=What_is_the_two-factor_authentication_and_how_to_activate_it&amp;diff=10441</id>
		<title>What is the two-factor authentication and how to activate it</title>
		<link rel="alternate" type="text/html" href="https://en-wiki.ikoula.com/index.php?title=What_is_the_two-factor_authentication_and_how_to_activate_it&amp;diff=10441"/>
		<updated>2020-09-15T07:52:12Z</updated>

		<summary type="html">&lt;p&gt;Mschmit52a93: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;span data-link_translate_fr_title=&amp;quot;A quoi sert le double facteur d'authentification et comment l'activer&amp;quot;  data-link_translate_fr_url=&amp;quot;A quoi sert le double facteur d'authentification et comment l'activer&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:fr:A quoi sert le double facteur d'authentification et comment l'activer]][[fr:A quoi sert le double facteur d'authentification et comment l'activer]]&lt;br /&gt;
&amp;lt;span data-link_translate_en_title=&amp;quot;What is the two-factor authentication and how to activate it&amp;quot;  data-link_translate_en_url=&amp;quot;What is the two-factor authentication and how to activate it&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:en:What is the two-factor authentication and how to activate it]][[en:What is the two-factor authentication and how to activate it]]&lt;br /&gt;
&amp;lt;span data-link_translate_es_title=&amp;quot;Qué es la autenticación de dos factores y cómo activarlo&amp;quot;  data-link_translate_es_url=&amp;quot;Qué es la autenticación de dos factores y cómo activarlo&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:es:Qué es la autenticación de dos factores y cómo activarlo]][[es:Qué es la autenticación de dos factores y cómo activarlo]]&lt;br /&gt;
&amp;lt;span data-link_translate_pt_title=&amp;quot;O que é a autenticação de dois fatores e como ativá-lo&amp;quot;  data-link_translate_pt_url=&amp;quot;O que é a autenticação de dois fatores e como ativá-lo&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:pt:O que é a autenticação de dois fatores e como ativá-lo]][[pt:O que é a autenticação de dois fatores e como ativá-lo]]&lt;br /&gt;
&amp;lt;span data-link_translate_it_title=&amp;quot;Che cos'è l'autenticazione a due fattori e come attivarlo&amp;quot;  data-link_translate_it_url=&amp;quot;Che cos'è l'autenticazione a due fattori e come attivarlo&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:it:Che cos'è l'autenticazione a due fattori e come attivarlo]][[it:Che cos'è l'autenticazione a due fattori e come attivarlo]]&lt;br /&gt;
&amp;lt;span data-link_translate_nl_title=&amp;quot;Wat is de verificatie met twee factoren en hoe om het te activeren&amp;quot;  data-link_translate_nl_url=&amp;quot;Wat is de verificatie met twee factoren en hoe om het te activeren&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:nl:Wat is de verificatie met twee factoren en hoe om het te activeren]][[nl:Wat is de verificatie met twee factoren en hoe om het te activeren]]&lt;br /&gt;
&amp;lt;span data-link_translate_de_title=&amp;quot;Was ist die zwei-Faktor-Authentifizierung und wie Sie es aktivieren&amp;quot;  data-link_translate_de_url=&amp;quot;Was ist die zwei-Faktor-Authentifizierung und wie Sie es aktivieren&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:de:Was ist die zwei-Faktor-Authentifizierung und wie Sie es aktivieren]][[de:Was ist die zwei-Faktor-Authentifizierung und wie Sie es aktivieren]]&lt;br /&gt;
&amp;lt;span data-link_translate_zh_title=&amp;quot;什么是双因素身份验证和如何激活它&amp;quot;  data-link_translate_zh_url=&amp;quot;什么是双因素身份验证和如何激活它&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:zh:什么是双因素身份验证和如何激活它]][[zh:什么是双因素身份验证和如何激活它]]&lt;br /&gt;
&amp;lt;span data-link_translate_ar_title=&amp;quot;ما هو مصادقة ثنائية العامل وكيفية تنشيطه&amp;quot;  data-link_translate_ar_url=&amp;quot;ما هو مصادقة ثنائية العامل وكيفية تنشيطه&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:ar:ما هو مصادقة ثنائية العامل وكيفية تنشيطه]][[ar:ما هو مصادقة ثنائية العامل وكيفية تنشيطه]]&lt;br /&gt;
&amp;lt;span data-link_translate_ja_title=&amp;quot;二要素認証とは、それをアクティブにする方法&amp;quot;  data-link_translate_ja_url=&amp;quot;二要素認証とは、それをアクティブにする方法&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:ja:二要素認証とは、それをアクティブにする方法]][[ja:二要素認証とは、それをアクティブにする方法]]&lt;br /&gt;
&amp;lt;span data-link_translate_pl_title=&amp;quot;Co to jest uwierzytelnianie dwuskładnikowe i jak go włączyć&amp;quot;  data-link_translate_pl_url=&amp;quot;Co to jest uwierzytelnianie dwuskładnikowe i jak go włączyć&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:pl:Co to jest uwierzytelnianie dwuskładnikowe i jak go włączyć]][[pl:Co to jest uwierzytelnianie dwuskładnikowe i jak go włączyć]]&lt;br /&gt;
&amp;lt;span data-link_translate_ru_title=&amp;quot;Что такое Двухфакторная аутентификация и как активировать его&amp;quot;  data-link_translate_ru_url=&amp;quot;Что такое Двухфакторная аутентификация и как активировать его&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:ru:Что такое Двухфакторная аутентификация и как активировать его]][[ru:Что такое Двухфакторная аутентификация и как активировать его]]&lt;br /&gt;
&amp;lt;span data-link_translate_ro_title=&amp;quot;Ce este autentificarea factor de doua şi cum să-l activezi&amp;quot;  data-link_translate_ro_url=&amp;quot;Ce este autentificarea factor de doua şi cum să-l activezi&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:ro:Ce este autentificarea factor de doua şi cum să-l activezi]][[ro:Ce este autentificarea factor de doua şi cum să-l activezi]]&lt;br /&gt;
&amp;lt;span data-link_translate_he_title=&amp;quot;מהו אימות שני הגורמים וכיצד להפעיל אותו&amp;quot;  data-link_translate_he_url=&amp;quot;מהו אימות שני הגורמים וכיצד להפעיל אותו&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:he:מהו אימות שני הגורמים וכיצד להפעיל אותו]][[he:מהו אימות שני הגורמים וכיצד להפעיל אותו]]&lt;br /&gt;
&amp;lt;span data-link_translate_fr_title=&amp;quot;A quoi sert le double facteur d'authentification et comment l'activer&amp;quot;  data-link_translate_fr_url=&amp;quot;A quoi sert le double facteur d'authentification et comment l'activer&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:fr:A quoi sert le double facteur d'authentification et comment l'activer]][[fr:A quoi sert le double facteur d'authentification et comment l'activer]]&lt;br /&gt;
&amp;lt;span data-link_translate_en_title=&amp;quot;What is the two-factor authentication and how to activate it&amp;quot;  data-link_translate_en_url=&amp;quot;What is the two-factor authentication and how to activate it&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:en:What is the two-factor authentication and how to activate it]][[en:What is the two-factor authentication and how to activate it]]&lt;br /&gt;
&amp;lt;span data-link_translate_es_title=&amp;quot;Qué es la autenticación de dos factores y cómo activarlo&amp;quot;  data-link_translate_es_url=&amp;quot;Qué es la autenticación de dos factores y cómo activarlo&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:es:Qué es la autenticación de dos factores y cómo activarlo]][[es:Qué es la autenticación de dos factores y cómo activarlo]]&lt;br /&gt;
&amp;lt;span data-link_translate_pt_title=&amp;quot;O que é a autenticação de dois fatores e como ativá-lo&amp;quot;  data-link_translate_pt_url=&amp;quot;O que é a autenticação de dois fatores e como ativá-lo&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:pt:O que é a autenticação de dois fatores e como ativá-lo]][[pt:O que é a autenticação de dois fatores e como ativá-lo]]&lt;br /&gt;
&amp;lt;span data-link_translate_it_title=&amp;quot;Che cos'è l'autenticazione a due fattori e come attivarlo&amp;quot;  data-link_translate_it_url=&amp;quot;Che cos'è l'autenticazione a due fattori e come attivarlo&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:it:Che cos'è l'autenticazione a due fattori e come attivarlo]][[it:Che cos'è l'autenticazione a due fattori e come attivarlo]]&lt;br /&gt;
&amp;lt;span data-link_translate_nl_title=&amp;quot;Wat is de verificatie met twee factoren en hoe om het te activeren&amp;quot;  data-link_translate_nl_url=&amp;quot;Wat is de verificatie met twee factoren en hoe om het te activeren&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:nl:Wat is de verificatie met twee factoren en hoe om het te activeren]][[nl:Wat is de verificatie met twee factoren en hoe om het te activeren]]&lt;br /&gt;
&amp;lt;span data-link_translate_de_title=&amp;quot;Was ist die zwei-Faktor-Authentifizierung und wie Sie es aktivieren&amp;quot;  data-link_translate_de_url=&amp;quot;Was ist die zwei-Faktor-Authentifizierung und wie Sie es aktivieren&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:de:Was ist die zwei-Faktor-Authentifizierung und wie Sie es aktivieren]][[de:Was ist die zwei-Faktor-Authentifizierung und wie Sie es aktivieren]]&lt;br /&gt;
&amp;lt;span data-link_translate_zh_title=&amp;quot;什么是双因素身份验证和如何激活它&amp;quot;  data-link_translate_zh_url=&amp;quot;什么是双因素身份验证和如何激活它&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:zh:什么是双因素身份验证和如何激活它]][[zh:什么是双因素身份验证和如何激活它]]&lt;br /&gt;
&amp;lt;span data-link_translate_ar_title=&amp;quot;ما هو مصادقة ثنائية العامل وكيفية تنشيطه&amp;quot;  data-link_translate_ar_url=&amp;quot;ما هو مصادقة ثنائية العامل وكيفية تنشيطه&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:ar:ما هو مصادقة ثنائية العامل وكيفية تنشيطه]][[ar:ما هو مصادقة ثنائية العامل وكيفية تنشيطه]]&lt;br /&gt;
&amp;lt;span data-link_translate_ja_title=&amp;quot;二要素認証とは、それをアクティブにする方法&amp;quot;  data-link_translate_ja_url=&amp;quot;二要素認証とは、それをアクティブにする方法&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:ja:二要素認証とは、それをアクティブにする方法]][[ja:二要素認証とは、それをアクティブにする方法]]&lt;br /&gt;
&amp;lt;span data-link_translate_pl_title=&amp;quot;Co to jest uwierzytelnianie dwuskładnikowe i jak go włączyć&amp;quot;  data-link_translate_pl_url=&amp;quot;Co to jest uwierzytelnianie dwuskładnikowe i jak go włączyć&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:pl:Co to jest uwierzytelnianie dwuskładnikowe i jak go włączyć]][[pl:Co to jest uwierzytelnianie dwuskładnikowe i jak go włączyć]]&lt;br /&gt;
&amp;lt;span data-link_translate_ru_title=&amp;quot;Что такое Двухфакторная аутентификация и как активировать его&amp;quot;  data-link_translate_ru_url=&amp;quot;Что такое Двухфакторная аутентификация и как активировать его&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:ru:Что такое Двухфакторная аутентификация и как активировать его]][[ru:Что такое Двухфакторная аутентификация и как активировать его]]&lt;br /&gt;
&amp;lt;span data-link_translate_ro_title=&amp;quot;Ce este autentificarea factor de doua şi cum să-l activezi&amp;quot;  data-link_translate_ro_url=&amp;quot;Ce este autentificarea factor de doua şi cum să-l activezi&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:ro:Ce este autentificarea factor de doua şi cum să-l activezi]][[ro:Ce este autentificarea factor de doua şi cum să-l activezi]]&lt;br /&gt;
&amp;lt;span data-link_translate_he_title=&amp;quot;מהו אימות שני הגורמים וכיצד להפעיל אותו&amp;quot;  data-link_translate_he_url=&amp;quot;מהו אימות שני הגורמים וכיצד להפעיל אותו&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:he:מהו אימות שני הגורמים וכיצד להפעיל אותו]][[he:מהו אימות שני הגורמים וכיצד להפעיל אותו]]&lt;br /&gt;
&amp;lt;span data-link_translate_fr_title=&amp;quot;A quoi sert le double facteur d'authentification et comment l'activer&amp;quot;  data-link_translate_fr_url=&amp;quot;A quoi sert le double facteur d'authentification et comment l'activer&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:fr:A quoi sert le double facteur d'authentification et comment l'activer]][[fr:A quoi sert le double facteur d'authentification et comment l'activer]]&lt;br /&gt;
&amp;lt;span data-link_translate_en_title=&amp;quot;What is the two-factor authentication and how to activate it&amp;quot;  data-link_translate_en_url=&amp;quot;What is the two-factor authentication and how to activate it&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:en:What is the two-factor authentication and how to activate it]][[en:What is the two-factor authentication and how to activate it]]&lt;br /&gt;
&amp;lt;span data-link_translate_es_title=&amp;quot;Qué es la autenticación de dos factores y cómo activarlo&amp;quot;  data-link_translate_es_url=&amp;quot;Qué es la autenticación de dos factores y cómo activarlo&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:es:Qué es la autenticación de dos factores y cómo activarlo]][[es:Qué es la autenticación de dos factores y cómo activarlo]]&lt;br /&gt;
&amp;lt;span data-link_translate_pt_title=&amp;quot;O que é a autenticação de dois fatores e como ativá-lo&amp;quot;  data-link_translate_pt_url=&amp;quot;O que é a autenticação de dois fatores e como ativá-lo&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:pt:O que é a autenticação de dois fatores e como ativá-lo]][[pt:O que é a autenticação de dois fatores e como ativá-lo]]&lt;br /&gt;
&amp;lt;span data-link_translate_it_title=&amp;quot;Che cos'è l'autenticazione a due fattori e come attivarlo&amp;quot;  data-link_translate_it_url=&amp;quot;Che cos'è l'autenticazione a due fattori e come attivarlo&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:it:Che cos'è l'autenticazione a due fattori e come attivarlo]][[it:Che cos'è l'autenticazione a due fattori e come attivarlo]]&lt;br /&gt;
&amp;lt;span data-link_translate_nl_title=&amp;quot;Wat is de verificatie met twee factoren en hoe om het te activeren&amp;quot;  data-link_translate_nl_url=&amp;quot;Wat is de verificatie met twee factoren en hoe om het te activeren&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:nl:Wat is de verificatie met twee factoren en hoe om het te activeren]][[nl:Wat is de verificatie met twee factoren en hoe om het te activeren]]&lt;br /&gt;
&amp;lt;span data-link_translate_de_title=&amp;quot;Was ist die zwei-Faktor-Authentifizierung und wie Sie es aktivieren&amp;quot;  data-link_translate_de_url=&amp;quot;Was ist die zwei-Faktor-Authentifizierung und wie Sie es aktivieren&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:de:Was ist die zwei-Faktor-Authentifizierung und wie Sie es aktivieren]][[de:Was ist die zwei-Faktor-Authentifizierung und wie Sie es aktivieren]]&lt;br /&gt;
&amp;lt;span data-link_translate_zh_title=&amp;quot;什么是双因素身份验证和如何激活它&amp;quot;  data-link_translate_zh_url=&amp;quot;什么是双因素身份验证和如何激活它&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:zh:什么是双因素身份验证和如何激活它]][[zh:什么是双因素身份验证和如何激活它]]&lt;br /&gt;
&amp;lt;span data-link_translate_ar_title=&amp;quot;ما هو مصادقة ثنائية العامل وكيفية تنشيطه&amp;quot;  data-link_translate_ar_url=&amp;quot;ما هو مصادقة ثنائية العامل وكيفية تنشيطه&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:ar:ما هو مصادقة ثنائية العامل وكيفية تنشيطه]][[ar:ما هو مصادقة ثنائية العامل وكيفية تنشيطه]]&lt;br /&gt;
&amp;lt;span data-link_translate_ja_title=&amp;quot;二要素認証とは、それをアクティブにする方法&amp;quot;  data-link_translate_ja_url=&amp;quot;二要素認証とは、それをアクティブにする方法&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:ja:二要素認証とは、それをアクティブにする方法]][[ja:二要素認証とは、それをアクティブにする方法]]&lt;br /&gt;
&amp;lt;span data-link_translate_pl_title=&amp;quot;Co to jest uwierzytelnianie dwuskładnikowe i jak go włączyć&amp;quot;  data-link_translate_pl_url=&amp;quot;Co to jest uwierzytelnianie dwuskładnikowe i jak go włączyć&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:pl:Co to jest uwierzytelnianie dwuskładnikowe i jak go włączyć]][[pl:Co to jest uwierzytelnianie dwuskładnikowe i jak go włączyć]]&lt;br /&gt;
&amp;lt;span data-link_translate_ru_title=&amp;quot;Что такое Двухфакторная аутентификация и как активировать его&amp;quot;  data-link_translate_ru_url=&amp;quot;Что такое Двухфакторная аутентификация и как активировать его&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:ru:Что такое Двухфакторная аутентификация и как активировать его]][[ru:Что такое Двухфакторная аутентификация и как активировать его]]&lt;br /&gt;
&amp;lt;span data-link_translate_ro_title=&amp;quot;Ce este autentificarea factor de doua şi cum să-l activezi&amp;quot;  data-link_translate_ro_url=&amp;quot;Ce este autentificarea factor de doua şi cum să-l activezi&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:ro:Ce este autentificarea factor de doua şi cum să-l activezi]][[ro:Ce este autentificarea factor de doua şi cum să-l activezi]]&lt;br /&gt;
&amp;lt;span data-link_translate_he_title=&amp;quot;מהו אימות שני הגורמים וכיצד להפעיל אותו&amp;quot;  data-link_translate_he_url=&amp;quot;מהו אימות שני הגורמים וכיצד להפעיל אותו&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:he:מהו אימות שני הגורמים וכיצד להפעיל אותו]][[he:מהו אימות שני הגורמים וכיצד להפעיל אותו]]&lt;br /&gt;
&amp;lt;br /&amp;gt;This article has been created by an automatic translation software. You can view the article source [[:fr:A quoi sert le double facteur d'authentification et comment l'activer|here]].&amp;lt;br /&amp;gt;&amp;lt;span data-translate=&amp;quot;fr&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;span data-link_translate_fr_title=&amp;quot;What is the two-factor authentication et comment l'activer&amp;quot;  data-link_translate_fr_url=&amp;quot;A quoi sert le double facteur d'authentification et comment l'activer&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:fr:A quoi sert le double facteur d'authentification et comment l'activer]][[fr:A quoi sert le double facteur d'authentification et comment l'activer]]&lt;br /&gt;
&amp;lt;span data-link_translate_pt_title=&amp;quot;O que é a autenticação de dois fatores e como ativá-lo&amp;quot;  data-link_translate_pt_url=&amp;quot;O+que+%C3%A9+a+autentica%C3%A7%C3%A3o+de+dois+fatores+e+como+ativ%C3%A1-lo&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:pt:O que é a autenticação de dois fatores e como ativá-lo]][[pt:O que é a autenticação de dois fatores e como ativá-lo]]&lt;br /&gt;
&amp;lt;span data-link_translate_es_title=&amp;quot;Qué es la autenticación de dos factores y cómo activarlo&amp;quot;  data-link_translate_es_url=&amp;quot;Qu%C3%A9+es+la+autenticaci%C3%B3n+de+dos+factores+y+c%C3%B3mo+activarlo&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:es:Qué es la autenticación de dos factores y cómo activarlo]][[es:Qué es la autenticación de dos factores y cómo activarlo]]&lt;br /&gt;
&amp;lt;span data-link_translate_he_title=&amp;quot;מהו אימות שני הגורמים וכיצד להפעיל אותו&amp;quot;  data-link_translate_he_url=&amp;quot;%D7%9E%D7%94%D7%95+%D7%90%D7%99%D7%9E%D7%95%D7%AA+%D7%A9%D7%A0%D7%99+%D7%94%D7%92%D7%95%D7%A8%D7%9E%D7%99%D7%9D+%D7%95%D7%9B%D7%99%D7%A6%D7%93+%D7%9C%D7%94%D7%A4%D7%A2%D7%99%D7%9C+%D7%90%D7%95%D7%AA%D7%95&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:he:מהו אימות שני הגורמים וכיצד להפעיל אותו]][[he:מהו אימות שני הגורמים וכיצד להפעיל אותו]]&lt;br /&gt;
&amp;lt;span data-link_translate_ro_title=&amp;quot;Ce este autentificarea factor de doua şi cum să-l activezi&amp;quot;  data-link_translate_ro_url=&amp;quot;Ce+este+autentificarea+factor+de+doua+%C5%9Fi+cum+s%C4%83-l+activezi&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:ro:Ce este autentificarea factor de doua şi cum să-l activezi]][[ro:Ce este autentificarea factor de doua şi cum să-l activezi]]&lt;br /&gt;
&amp;lt;span data-link_translate_ru_title=&amp;quot;Что такое Двухфакторная аутентификация и как активировать его&amp;quot;  data-link_translate_ru_url=&amp;quot;%D0%A7%D1%82%D0%BE+%D1%82%D0%B0%D0%BA%D0%BE%D0%B5+%D0%94%D0%B2%D1%83%D1%85%D1%84%D0%B0%D0%BA%D1%82%D0%BE%D1%80%D0%BD%D0%B0%D1%8F+%D0%B0%D1%83%D1%82%D0%B5%D0%BD%D1%82%D0%B8%D1%84%D0%B8%D0%BA%D0%B0%D1%86%D0%B8%D1%8F+%D0%B8+%D0%BA%D0%B0%D0%BA+%D0%B0%D0%BA%D1%82%D0%B8%D0%B2%D0%B8%D1%80%D0%BE%D0%B2%D0%B0%D1%82%D1%8C+%D0%B5%D0%B3%D0%BE&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:ru:Что такое Двухфакторная аутентификация и как активировать его]][[ru:Что такое Двухфакторная аутентификация и как активировать его]]&lt;br /&gt;
&amp;lt;span data-link_translate_pl_title=&amp;quot;Co to jest uwierzytelnianie dwuskładnikowe i jak go włączyć&amp;quot;  data-link_translate_pl_url=&amp;quot;Co+to+jest+uwierzytelnianie+dwusk%C5%82adnikowe+i+jak+go+w%C5%82%C4%85czy%C4%87&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:pl:Co to jest uwierzytelnianie dwuskładnikowe i jak go włączyć]][[pl:Co to jest uwierzytelnianie dwuskładnikowe i jak go włączyć]]&lt;br /&gt;
&amp;lt;span data-link_translate_ja_title=&amp;quot;二要素認証とは、それをアクティブにする方法&amp;quot;  data-link_translate_ja_url=&amp;quot;%E4%BA%8C%E8%A6%81%E7%B4%A0%E8%AA%8D%E8%A8%BC%E3%81%A8%E3%81%AF%E3%80%81%E3%81%9D%E3%82%8C%E3%82%92%E3%82%A2%E3%82%AF%E3%83%86%E3%82%A3%E3%83%96%E3%81%AB%E3%81%99%E3%82%8B%E6%96%B9%E6%B3%95&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:ja:二要素認証とは、それをアクティブにする方法]][[ja:二要素認証とは、それをアクティブにする方法]]&lt;br /&gt;
&amp;lt;span data-link_translate_ar_title=&amp;quot;ما هو مصادقة ثنائية العامل وكيفية تنشيطه&amp;quot;  data-link_translate_ar_url=&amp;quot;%D9%85%D8%A7+%D9%87%D9%88+%D9%85%D8%B5%D8%A7%D8%AF%D9%82%D8%A9+%D8%AB%D9%86%D8%A7%D8%A6%D9%8A%D8%A9+%D8%A7%D9%84%D8%B9%D8%A7%D9%85%D9%84+%D9%88%D9%83%D9%8A%D9%81%D9%8A%D8%A9+%D8%AA%D9%86%D8%B4%D9%8A%D8%B7%D9%87&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:ar:ما هو مصادقة ثنائية العامل وكيفية تنشيطه]][[ar:ما هو مصادقة ثنائية العامل وكيفية تنشيطه]]&lt;br /&gt;
&amp;lt;span data-link_translate_zh_title=&amp;quot;什么是双因素身份验证和如何激活它&amp;quot;  data-link_translate_zh_url=&amp;quot;%E4%BB%80%E4%B9%88%E6%98%AF%E5%8F%8C%E5%9B%A0%E7%B4%A0%E8%BA%AB%E4%BB%BD%E9%AA%8C%E8%AF%81%E5%92%8C%E5%A6%82%E4%BD%95%E6%BF%80%E6%B4%BB%E5%AE%83&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:zh:什么是双因素身份验证和如何激活它]][[zh:什么是双因素身份验证和如何激活它]]&lt;br /&gt;
&amp;lt;span data-link_translate_de_title=&amp;quot;Was ist die zwei-Faktor-Authentifizierung und wie Sie es aktivieren&amp;quot;  data-link_translate_de_url=&amp;quot;Was+ist+die+zwei-Faktor-Authentifizierung+und+wie+Sie+es+aktivieren&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:de:Was ist die zwei-Faktor-Authentifizierung und wie Sie es aktivieren]][[de:Was ist die zwei-Faktor-Authentifizierung und wie Sie es aktivieren]]&lt;br /&gt;
&amp;lt;span data-link_translate_nl_title=&amp;quot;Wat is de verificatie met twee factoren en hoe om het te activeren&amp;quot;  data-link_translate_nl_url=&amp;quot;Wat+is+de+verificatie+met+twee+factoren+en+hoe+om+het+te+activeren&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:nl:Wat is de verificatie met twee factoren en hoe om het te activeren]][[nl:Wat is de verificatie met twee factoren en hoe om het te activeren]]&lt;br /&gt;
&amp;lt;span data-link_translate_it_title=&amp;quot;Che cos'è l'autenticazione a due fattori e come attivarlo&amp;quot;  data-link_translate_it_url=&amp;quot;Che+cos%27%C3%A8+l%27autenticazione+a+due+fattori+e+come+attivarlo&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:it:Che cos'è l'autenticazione a due fattori e come attivarlo]][[it:Che cos'è l'autenticazione a due fattori e come attivarlo]]&lt;br /&gt;
&amp;lt;span data-link_translate_en_title=&amp;quot;What is the two-factor authentication and how to activate it&amp;quot;  data-link_translate_en_url=&amp;quot;What+is+the+two-factor+authentication+and+how+to+activate+it&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:en:What is the two-factor authentication and how to activate it]][[en:What is the two-factor authentication and how to activate it]]&lt;br /&gt;
&lt;br /&gt;
{{#seo:&lt;br /&gt;
|title=Your page title&lt;br /&gt;
|title_mode=append&lt;br /&gt;
|keywords=these,are,your,keywords&lt;br /&gt;
|description=What is the two-factor authentication and how to activate it&lt;br /&gt;
|image=Uploaded_file.png&lt;br /&gt;
|image_alt=Wiki Logo&lt;br /&gt;
}}&lt;br /&gt;
=What is the two-factor authentication ?=&lt;br /&gt;
&lt;br /&gt;
The two-factor authentication is to increase the protection of your Extranet account Ikoula.&lt;br /&gt;
&lt;br /&gt;
Indeed, during the connection you must, in addition to the seizure of your password, enter a special code which is independent and renewed at each connection.&lt;br /&gt;
&lt;br /&gt;
This system allows to add a second security to your account if your password is hacked, the hacker will not be able to connect to your account without being in possession of your random security code.&lt;br /&gt;
&lt;br /&gt;
=How to set up the two-factor authentication ?=&lt;br /&gt;
&lt;br /&gt;
To set up the double authentication factor, go to your extranet in the &amp;quot;double authentication factor&amp;quot; section&lt;br /&gt;
&lt;br /&gt;
You can choose your preferred dual factor authentication system from app, email or SMS authentication (if you wish you can install all three systems).&lt;br /&gt;
&lt;br /&gt;
[[File:Extranet 2fa en step 1.PNG|center]] &lt;br /&gt;
&lt;br /&gt;
==Implementation of a new double authentication token== &lt;br /&gt;
&lt;br /&gt;
===Initialization of the token by application===&lt;br /&gt;
&lt;br /&gt;
[[File:Extranet 2fa en step 2.PNG|center]] &lt;br /&gt;
&lt;br /&gt;
If you choose the token by application, you must first of all choose an application for generating authentication codes (Google authenticator, DUO, FREE Otp, ...).&lt;br /&gt;
Once the application has been chosen, you must scan the QR code in your application.&lt;br /&gt;
Once the token has been added to the application, you must enter the code generated in the field on the extranet in order to validate the installation of your token.&lt;br /&gt;
&lt;br /&gt;
[[File:Extranet 2fa en step 3.PNG|center]]     &lt;br /&gt;
&lt;br /&gt;
Once the token has been validated, you can now log in using this double factor authentication system!&lt;br /&gt;
&lt;br /&gt;
[[File:Extranet 2fa en step 4.PNG|center]] &lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
===Initialization of the token by email===&lt;br /&gt;
&lt;br /&gt;
If you choose the token by email, you will have to enter an email where we can send you the connection code (by default the field will be filled with the email from your extranet account).&lt;br /&gt;
&lt;br /&gt;
[[File:Extranet 2fa en step 8.PNG|center]] &lt;br /&gt;
&lt;br /&gt;
Once the chosen email is validated, you will receive a code on this email address, please use this code in the field provided to validate the initialization of this token.&lt;br /&gt;
&lt;br /&gt;
[[File:Extranet 2fa en step 9.PNG|center]] &lt;br /&gt;
&lt;br /&gt;
Once the token has been validated, you can now log in using this double factor authentication system!&lt;br /&gt;
&lt;br /&gt;
===Initialization of the token by SMS===&lt;br /&gt;
&lt;br /&gt;
If you choose the token by SMS, you will have to enter a number where we can send you the connection code, be sure to prefix your number with the international index of your country (+33 for France for example).&lt;br /&gt;
&lt;br /&gt;
[[File:Extranet 2fa en step 10.PNG|center]] &lt;br /&gt;
&lt;br /&gt;
Once the number has been validated, you will receive a code on this number, please use this code in the field provided to validate the initialization of this token.&lt;br /&gt;
&lt;br /&gt;
[[File:Extranet 2fa en step 9.PNG|center]] &lt;br /&gt;
&lt;br /&gt;
Once the token has been validated, you can now log in using this double factor authentication system!&lt;br /&gt;
&lt;br /&gt;
=How to connect with the double factor of authentication ?=&lt;br /&gt;
&lt;br /&gt;
Once the token is setup, you can connect to the extranet using two-factor authentication.&lt;br /&gt;
&lt;br /&gt;
After entering your password, you are redirect on the interface allowing you to choose how you want to connect.&lt;br /&gt;
&lt;br /&gt;
[[File:Extranet 2fa en step 5.PNG|center]] &lt;br /&gt;
&lt;br /&gt;
You just need to choose the connection option you prefer.&lt;br /&gt;
&lt;br /&gt;
Depending on the method chosen, you must enter the code generated by the application or received by mail / sms in the field provided.&lt;br /&gt;
&lt;br /&gt;
[[File:Extranet 2fa en step 6.PNG|center]] &lt;br /&gt;
&lt;br /&gt;
If the code is correct and the time limit is not exceeded, you will be connected and redirected to your personal space.&lt;br /&gt;
&lt;br /&gt;
=How do I turn off double factor authentication?=&lt;br /&gt;
&lt;br /&gt;
To delete a token, you must go to your double-factor authentication management interface, choose the token you want to delete and click on the token deletion button.&lt;br /&gt;
&lt;br /&gt;
[[File:Extranet 2fa en step 7.PNG|center]] &lt;br /&gt;
&lt;br /&gt;
Please note that if you want to delete your app token, in addition to deleting in the extranet interface, you will need to manually delete the token from the app side.&lt;br /&gt;
&lt;br /&gt;
You can re-enable it at any time using the procedure from the beginning.&lt;br /&gt;
&lt;br /&gt;
[[Category:Extranet]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;comments /&amp;gt;&lt;/div&gt;</summary>
		<author><name>Mschmit52a93</name></author>
	</entry>
	<entry>
		<id>https://en-wiki.ikoula.com/index.php?title=What_is_the_two-factor_authentication_and_how_to_activate_it&amp;diff=10440</id>
		<title>What is the two-factor authentication and how to activate it</title>
		<link rel="alternate" type="text/html" href="https://en-wiki.ikoula.com/index.php?title=What_is_the_two-factor_authentication_and_how_to_activate_it&amp;diff=10440"/>
		<updated>2020-09-15T07:51:40Z</updated>

		<summary type="html">&lt;p&gt;Mschmit52a93: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;span data-link_translate_fr_title=&amp;quot;A quoi sert le double facteur d'authentification et comment l'activer&amp;quot;  data-link_translate_fr_url=&amp;quot;A quoi sert le double facteur d'authentification et comment l'activer&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:fr:A quoi sert le double facteur d'authentification et comment l'activer]][[fr:A quoi sert le double facteur d'authentification et comment l'activer]]&lt;br /&gt;
&amp;lt;span data-link_translate_en_title=&amp;quot;What is the two-factor authentication and how to activate it&amp;quot;  data-link_translate_en_url=&amp;quot;What is the two-factor authentication and how to activate it&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:en:What is the two-factor authentication and how to activate it]][[en:What is the two-factor authentication and how to activate it]]&lt;br /&gt;
&amp;lt;span data-link_translate_es_title=&amp;quot;Qué es la autenticación de dos factores y cómo activarlo&amp;quot;  data-link_translate_es_url=&amp;quot;Qué es la autenticación de dos factores y cómo activarlo&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:es:Qué es la autenticación de dos factores y cómo activarlo]][[es:Qué es la autenticación de dos factores y cómo activarlo]]&lt;br /&gt;
&amp;lt;span data-link_translate_pt_title=&amp;quot;O que é a autenticação de dois fatores e como ativá-lo&amp;quot;  data-link_translate_pt_url=&amp;quot;O que é a autenticação de dois fatores e como ativá-lo&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:pt:O que é a autenticação de dois fatores e como ativá-lo]][[pt:O que é a autenticação de dois fatores e como ativá-lo]]&lt;br /&gt;
&amp;lt;span data-link_translate_it_title=&amp;quot;Che cos'è l'autenticazione a due fattori e come attivarlo&amp;quot;  data-link_translate_it_url=&amp;quot;Che cos'è l'autenticazione a due fattori e come attivarlo&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:it:Che cos'è l'autenticazione a due fattori e come attivarlo]][[it:Che cos'è l'autenticazione a due fattori e come attivarlo]]&lt;br /&gt;
&amp;lt;span data-link_translate_nl_title=&amp;quot;Wat is de verificatie met twee factoren en hoe om het te activeren&amp;quot;  data-link_translate_nl_url=&amp;quot;Wat is de verificatie met twee factoren en hoe om het te activeren&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:nl:Wat is de verificatie met twee factoren en hoe om het te activeren]][[nl:Wat is de verificatie met twee factoren en hoe om het te activeren]]&lt;br /&gt;
&amp;lt;span data-link_translate_de_title=&amp;quot;Was ist die zwei-Faktor-Authentifizierung und wie Sie es aktivieren&amp;quot;  data-link_translate_de_url=&amp;quot;Was ist die zwei-Faktor-Authentifizierung und wie Sie es aktivieren&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:de:Was ist die zwei-Faktor-Authentifizierung und wie Sie es aktivieren]][[de:Was ist die zwei-Faktor-Authentifizierung und wie Sie es aktivieren]]&lt;br /&gt;
&amp;lt;span data-link_translate_zh_title=&amp;quot;什么是双因素身份验证和如何激活它&amp;quot;  data-link_translate_zh_url=&amp;quot;什么是双因素身份验证和如何激活它&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:zh:什么是双因素身份验证和如何激活它]][[zh:什么是双因素身份验证和如何激活它]]&lt;br /&gt;
&amp;lt;span data-link_translate_ar_title=&amp;quot;ما هو مصادقة ثنائية العامل وكيفية تنشيطه&amp;quot;  data-link_translate_ar_url=&amp;quot;ما هو مصادقة ثنائية العامل وكيفية تنشيطه&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:ar:ما هو مصادقة ثنائية العامل وكيفية تنشيطه]][[ar:ما هو مصادقة ثنائية العامل وكيفية تنشيطه]]&lt;br /&gt;
&amp;lt;span data-link_translate_ja_title=&amp;quot;二要素認証とは、それをアクティブにする方法&amp;quot;  data-link_translate_ja_url=&amp;quot;二要素認証とは、それをアクティブにする方法&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:ja:二要素認証とは、それをアクティブにする方法]][[ja:二要素認証とは、それをアクティブにする方法]]&lt;br /&gt;
&amp;lt;span data-link_translate_pl_title=&amp;quot;Co to jest uwierzytelnianie dwuskładnikowe i jak go włączyć&amp;quot;  data-link_translate_pl_url=&amp;quot;Co to jest uwierzytelnianie dwuskładnikowe i jak go włączyć&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:pl:Co to jest uwierzytelnianie dwuskładnikowe i jak go włączyć]][[pl:Co to jest uwierzytelnianie dwuskładnikowe i jak go włączyć]]&lt;br /&gt;
&amp;lt;span data-link_translate_ru_title=&amp;quot;Что такое Двухфакторная аутентификация и как активировать его&amp;quot;  data-link_translate_ru_url=&amp;quot;Что такое Двухфакторная аутентификация и как активировать его&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:ru:Что такое Двухфакторная аутентификация и как активировать его]][[ru:Что такое Двухфакторная аутентификация и как активировать его]]&lt;br /&gt;
&amp;lt;span data-link_translate_ro_title=&amp;quot;Ce este autentificarea factor de doua şi cum să-l activezi&amp;quot;  data-link_translate_ro_url=&amp;quot;Ce este autentificarea factor de doua şi cum să-l activezi&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:ro:Ce este autentificarea factor de doua şi cum să-l activezi]][[ro:Ce este autentificarea factor de doua şi cum să-l activezi]]&lt;br /&gt;
&amp;lt;span data-link_translate_he_title=&amp;quot;מהו אימות שני הגורמים וכיצד להפעיל אותו&amp;quot;  data-link_translate_he_url=&amp;quot;מהו אימות שני הגורמים וכיצד להפעיל אותו&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:he:מהו אימות שני הגורמים וכיצד להפעיל אותו]][[he:מהו אימות שני הגורמים וכיצד להפעיל אותו]]&lt;br /&gt;
&amp;lt;span data-link_translate_fr_title=&amp;quot;A quoi sert le double facteur d'authentification et comment l'activer&amp;quot;  data-link_translate_fr_url=&amp;quot;A quoi sert le double facteur d'authentification et comment l'activer&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:fr:A quoi sert le double facteur d'authentification et comment l'activer]][[fr:A quoi sert le double facteur d'authentification et comment l'activer]]&lt;br /&gt;
&amp;lt;span data-link_translate_en_title=&amp;quot;What is the two-factor authentication and how to activate it&amp;quot;  data-link_translate_en_url=&amp;quot;What is the two-factor authentication and how to activate it&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:en:What is the two-factor authentication and how to activate it]][[en:What is the two-factor authentication and how to activate it]]&lt;br /&gt;
&amp;lt;span data-link_translate_es_title=&amp;quot;Qué es la autenticación de dos factores y cómo activarlo&amp;quot;  data-link_translate_es_url=&amp;quot;Qué es la autenticación de dos factores y cómo activarlo&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:es:Qué es la autenticación de dos factores y cómo activarlo]][[es:Qué es la autenticación de dos factores y cómo activarlo]]&lt;br /&gt;
&amp;lt;span data-link_translate_pt_title=&amp;quot;O que é a autenticação de dois fatores e como ativá-lo&amp;quot;  data-link_translate_pt_url=&amp;quot;O que é a autenticação de dois fatores e como ativá-lo&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:pt:O que é a autenticação de dois fatores e como ativá-lo]][[pt:O que é a autenticação de dois fatores e como ativá-lo]]&lt;br /&gt;
&amp;lt;span data-link_translate_it_title=&amp;quot;Che cos'è l'autenticazione a due fattori e come attivarlo&amp;quot;  data-link_translate_it_url=&amp;quot;Che cos'è l'autenticazione a due fattori e come attivarlo&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:it:Che cos'è l'autenticazione a due fattori e come attivarlo]][[it:Che cos'è l'autenticazione a due fattori e come attivarlo]]&lt;br /&gt;
&amp;lt;span data-link_translate_nl_title=&amp;quot;Wat is de verificatie met twee factoren en hoe om het te activeren&amp;quot;  data-link_translate_nl_url=&amp;quot;Wat is de verificatie met twee factoren en hoe om het te activeren&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:nl:Wat is de verificatie met twee factoren en hoe om het te activeren]][[nl:Wat is de verificatie met twee factoren en hoe om het te activeren]]&lt;br /&gt;
&amp;lt;span data-link_translate_de_title=&amp;quot;Was ist die zwei-Faktor-Authentifizierung und wie Sie es aktivieren&amp;quot;  data-link_translate_de_url=&amp;quot;Was ist die zwei-Faktor-Authentifizierung und wie Sie es aktivieren&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:de:Was ist die zwei-Faktor-Authentifizierung und wie Sie es aktivieren]][[de:Was ist die zwei-Faktor-Authentifizierung und wie Sie es aktivieren]]&lt;br /&gt;
&amp;lt;span data-link_translate_zh_title=&amp;quot;什么是双因素身份验证和如何激活它&amp;quot;  data-link_translate_zh_url=&amp;quot;什么是双因素身份验证和如何激活它&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:zh:什么是双因素身份验证和如何激活它]][[zh:什么是双因素身份验证和如何激活它]]&lt;br /&gt;
&amp;lt;span data-link_translate_ar_title=&amp;quot;ما هو مصادقة ثنائية العامل وكيفية تنشيطه&amp;quot;  data-link_translate_ar_url=&amp;quot;ما هو مصادقة ثنائية العامل وكيفية تنشيطه&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:ar:ما هو مصادقة ثنائية العامل وكيفية تنشيطه]][[ar:ما هو مصادقة ثنائية العامل وكيفية تنشيطه]]&lt;br /&gt;
&amp;lt;span data-link_translate_ja_title=&amp;quot;二要素認証とは、それをアクティブにする方法&amp;quot;  data-link_translate_ja_url=&amp;quot;二要素認証とは、それをアクティブにする方法&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:ja:二要素認証とは、それをアクティブにする方法]][[ja:二要素認証とは、それをアクティブにする方法]]&lt;br /&gt;
&amp;lt;span data-link_translate_pl_title=&amp;quot;Co to jest uwierzytelnianie dwuskładnikowe i jak go włączyć&amp;quot;  data-link_translate_pl_url=&amp;quot;Co to jest uwierzytelnianie dwuskładnikowe i jak go włączyć&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:pl:Co to jest uwierzytelnianie dwuskładnikowe i jak go włączyć]][[pl:Co to jest uwierzytelnianie dwuskładnikowe i jak go włączyć]]&lt;br /&gt;
&amp;lt;span data-link_translate_ru_title=&amp;quot;Что такое Двухфакторная аутентификация и как активировать его&amp;quot;  data-link_translate_ru_url=&amp;quot;Что такое Двухфакторная аутентификация и как активировать его&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:ru:Что такое Двухфакторная аутентификация и как активировать его]][[ru:Что такое Двухфакторная аутентификация и как активировать его]]&lt;br /&gt;
&amp;lt;span data-link_translate_ro_title=&amp;quot;Ce este autentificarea factor de doua şi cum să-l activezi&amp;quot;  data-link_translate_ro_url=&amp;quot;Ce este autentificarea factor de doua şi cum să-l activezi&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:ro:Ce este autentificarea factor de doua şi cum să-l activezi]][[ro:Ce este autentificarea factor de doua şi cum să-l activezi]]&lt;br /&gt;
&amp;lt;span data-link_translate_he_title=&amp;quot;מהו אימות שני הגורמים וכיצד להפעיל אותו&amp;quot;  data-link_translate_he_url=&amp;quot;מהו אימות שני הגורמים וכיצד להפעיל אותו&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:he:מהו אימות שני הגורמים וכיצד להפעיל אותו]][[he:מהו אימות שני הגורמים וכיצד להפעיל אותו]]&lt;br /&gt;
&amp;lt;span data-link_translate_fr_title=&amp;quot;A quoi sert le double facteur d'authentification et comment l'activer&amp;quot;  data-link_translate_fr_url=&amp;quot;A quoi sert le double facteur d'authentification et comment l'activer&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:fr:A quoi sert le double facteur d'authentification et comment l'activer]][[fr:A quoi sert le double facteur d'authentification et comment l'activer]]&lt;br /&gt;
&amp;lt;span data-link_translate_en_title=&amp;quot;What is the two-factor authentication and how to activate it&amp;quot;  data-link_translate_en_url=&amp;quot;What is the two-factor authentication and how to activate it&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:en:What is the two-factor authentication and how to activate it]][[en:What is the two-factor authentication and how to activate it]]&lt;br /&gt;
&amp;lt;span data-link_translate_es_title=&amp;quot;Qué es la autenticación de dos factores y cómo activarlo&amp;quot;  data-link_translate_es_url=&amp;quot;Qué es la autenticación de dos factores y cómo activarlo&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:es:Qué es la autenticación de dos factores y cómo activarlo]][[es:Qué es la autenticación de dos factores y cómo activarlo]]&lt;br /&gt;
&amp;lt;span data-link_translate_pt_title=&amp;quot;O que é a autenticação de dois fatores e como ativá-lo&amp;quot;  data-link_translate_pt_url=&amp;quot;O que é a autenticação de dois fatores e como ativá-lo&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:pt:O que é a autenticação de dois fatores e como ativá-lo]][[pt:O que é a autenticação de dois fatores e como ativá-lo]]&lt;br /&gt;
&amp;lt;span data-link_translate_it_title=&amp;quot;Che cos'è l'autenticazione a due fattori e come attivarlo&amp;quot;  data-link_translate_it_url=&amp;quot;Che cos'è l'autenticazione a due fattori e come attivarlo&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:it:Che cos'è l'autenticazione a due fattori e come attivarlo]][[it:Che cos'è l'autenticazione a due fattori e come attivarlo]]&lt;br /&gt;
&amp;lt;span data-link_translate_nl_title=&amp;quot;Wat is de verificatie met twee factoren en hoe om het te activeren&amp;quot;  data-link_translate_nl_url=&amp;quot;Wat is de verificatie met twee factoren en hoe om het te activeren&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:nl:Wat is de verificatie met twee factoren en hoe om het te activeren]][[nl:Wat is de verificatie met twee factoren en hoe om het te activeren]]&lt;br /&gt;
&amp;lt;span data-link_translate_de_title=&amp;quot;Was ist die zwei-Faktor-Authentifizierung und wie Sie es aktivieren&amp;quot;  data-link_translate_de_url=&amp;quot;Was ist die zwei-Faktor-Authentifizierung und wie Sie es aktivieren&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:de:Was ist die zwei-Faktor-Authentifizierung und wie Sie es aktivieren]][[de:Was ist die zwei-Faktor-Authentifizierung und wie Sie es aktivieren]]&lt;br /&gt;
&amp;lt;span data-link_translate_zh_title=&amp;quot;什么是双因素身份验证和如何激活它&amp;quot;  data-link_translate_zh_url=&amp;quot;什么是双因素身份验证和如何激活它&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:zh:什么是双因素身份验证和如何激活它]][[zh:什么是双因素身份验证和如何激活它]]&lt;br /&gt;
&amp;lt;span data-link_translate_ar_title=&amp;quot;ما هو مصادقة ثنائية العامل وكيفية تنشيطه&amp;quot;  data-link_translate_ar_url=&amp;quot;ما هو مصادقة ثنائية العامل وكيفية تنشيطه&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:ar:ما هو مصادقة ثنائية العامل وكيفية تنشيطه]][[ar:ما هو مصادقة ثنائية العامل وكيفية تنشيطه]]&lt;br /&gt;
&amp;lt;span data-link_translate_ja_title=&amp;quot;二要素認証とは、それをアクティブにする方法&amp;quot;  data-link_translate_ja_url=&amp;quot;二要素認証とは、それをアクティブにする方法&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:ja:二要素認証とは、それをアクティブにする方法]][[ja:二要素認証とは、それをアクティブにする方法]]&lt;br /&gt;
&amp;lt;span data-link_translate_pl_title=&amp;quot;Co to jest uwierzytelnianie dwuskładnikowe i jak go włączyć&amp;quot;  data-link_translate_pl_url=&amp;quot;Co to jest uwierzytelnianie dwuskładnikowe i jak go włączyć&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:pl:Co to jest uwierzytelnianie dwuskładnikowe i jak go włączyć]][[pl:Co to jest uwierzytelnianie dwuskładnikowe i jak go włączyć]]&lt;br /&gt;
&amp;lt;span data-link_translate_ru_title=&amp;quot;Что такое Двухфакторная аутентификация и как активировать его&amp;quot;  data-link_translate_ru_url=&amp;quot;Что такое Двухфакторная аутентификация и как активировать его&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:ru:Что такое Двухфакторная аутентификация и как активировать его]][[ru:Что такое Двухфакторная аутентификация и как активировать его]]&lt;br /&gt;
&amp;lt;span data-link_translate_ro_title=&amp;quot;Ce este autentificarea factor de doua şi cum să-l activezi&amp;quot;  data-link_translate_ro_url=&amp;quot;Ce este autentificarea factor de doua şi cum să-l activezi&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:ro:Ce este autentificarea factor de doua şi cum să-l activezi]][[ro:Ce este autentificarea factor de doua şi cum să-l activezi]]&lt;br /&gt;
&amp;lt;span data-link_translate_he_title=&amp;quot;מהו אימות שני הגורמים וכיצד להפעיל אותו&amp;quot;  data-link_translate_he_url=&amp;quot;מהו אימות שני הגורמים וכיצד להפעיל אותו&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:he:מהו אימות שני הגורמים וכיצד להפעיל אותו]][[he:מהו אימות שני הגורמים וכיצד להפעיל אותו]]&lt;br /&gt;
&amp;lt;br /&amp;gt;This article has been created by an automatic translation software. You can view the article source [[:fr:A quoi sert le double facteur d'authentification et comment l'activer|here]].&amp;lt;br /&amp;gt;&amp;lt;span data-translate=&amp;quot;fr&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;span data-link_translate_fr_title=&amp;quot;What is the two-factor authentication et comment l'activer&amp;quot;  data-link_translate_fr_url=&amp;quot;A quoi sert le double facteur d'authentification et comment l'activer&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:fr:A quoi sert le double facteur d'authentification et comment l'activer]][[fr:A quoi sert le double facteur d'authentification et comment l'activer]]&lt;br /&gt;
&amp;lt;span data-link_translate_pt_title=&amp;quot;O que é a autenticação de dois fatores e como ativá-lo&amp;quot;  data-link_translate_pt_url=&amp;quot;O+que+%C3%A9+a+autentica%C3%A7%C3%A3o+de+dois+fatores+e+como+ativ%C3%A1-lo&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:pt:O que é a autenticação de dois fatores e como ativá-lo]][[pt:O que é a autenticação de dois fatores e como ativá-lo]]&lt;br /&gt;
&amp;lt;span data-link_translate_es_title=&amp;quot;Qué es la autenticación de dos factores y cómo activarlo&amp;quot;  data-link_translate_es_url=&amp;quot;Qu%C3%A9+es+la+autenticaci%C3%B3n+de+dos+factores+y+c%C3%B3mo+activarlo&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:es:Qué es la autenticación de dos factores y cómo activarlo]][[es:Qué es la autenticación de dos factores y cómo activarlo]]&lt;br /&gt;
&amp;lt;span data-link_translate_he_title=&amp;quot;מהו אימות שני הגורמים וכיצד להפעיל אותו&amp;quot;  data-link_translate_he_url=&amp;quot;%D7%9E%D7%94%D7%95+%D7%90%D7%99%D7%9E%D7%95%D7%AA+%D7%A9%D7%A0%D7%99+%D7%94%D7%92%D7%95%D7%A8%D7%9E%D7%99%D7%9D+%D7%95%D7%9B%D7%99%D7%A6%D7%93+%D7%9C%D7%94%D7%A4%D7%A2%D7%99%D7%9C+%D7%90%D7%95%D7%AA%D7%95&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:he:מהו אימות שני הגורמים וכיצד להפעיל אותו]][[he:מהו אימות שני הגורמים וכיצד להפעיל אותו]]&lt;br /&gt;
&amp;lt;span data-link_translate_ro_title=&amp;quot;Ce este autentificarea factor de doua şi cum să-l activezi&amp;quot;  data-link_translate_ro_url=&amp;quot;Ce+este+autentificarea+factor+de+doua+%C5%9Fi+cum+s%C4%83-l+activezi&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:ro:Ce este autentificarea factor de doua şi cum să-l activezi]][[ro:Ce este autentificarea factor de doua şi cum să-l activezi]]&lt;br /&gt;
&amp;lt;span data-link_translate_ru_title=&amp;quot;Что такое Двухфакторная аутентификация и как активировать его&amp;quot;  data-link_translate_ru_url=&amp;quot;%D0%A7%D1%82%D0%BE+%D1%82%D0%B0%D0%BA%D0%BE%D0%B5+%D0%94%D0%B2%D1%83%D1%85%D1%84%D0%B0%D0%BA%D1%82%D0%BE%D1%80%D0%BD%D0%B0%D1%8F+%D0%B0%D1%83%D1%82%D0%B5%D0%BD%D1%82%D0%B8%D1%84%D0%B8%D0%BA%D0%B0%D1%86%D0%B8%D1%8F+%D0%B8+%D0%BA%D0%B0%D0%BA+%D0%B0%D0%BA%D1%82%D0%B8%D0%B2%D0%B8%D1%80%D0%BE%D0%B2%D0%B0%D1%82%D1%8C+%D0%B5%D0%B3%D0%BE&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:ru:Что такое Двухфакторная аутентификация и как активировать его]][[ru:Что такое Двухфакторная аутентификация и как активировать его]]&lt;br /&gt;
&amp;lt;span data-link_translate_pl_title=&amp;quot;Co to jest uwierzytelnianie dwuskładnikowe i jak go włączyć&amp;quot;  data-link_translate_pl_url=&amp;quot;Co+to+jest+uwierzytelnianie+dwusk%C5%82adnikowe+i+jak+go+w%C5%82%C4%85czy%C4%87&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:pl:Co to jest uwierzytelnianie dwuskładnikowe i jak go włączyć]][[pl:Co to jest uwierzytelnianie dwuskładnikowe i jak go włączyć]]&lt;br /&gt;
&amp;lt;span data-link_translate_ja_title=&amp;quot;二要素認証とは、それをアクティブにする方法&amp;quot;  data-link_translate_ja_url=&amp;quot;%E4%BA%8C%E8%A6%81%E7%B4%A0%E8%AA%8D%E8%A8%BC%E3%81%A8%E3%81%AF%E3%80%81%E3%81%9D%E3%82%8C%E3%82%92%E3%82%A2%E3%82%AF%E3%83%86%E3%82%A3%E3%83%96%E3%81%AB%E3%81%99%E3%82%8B%E6%96%B9%E6%B3%95&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:ja:二要素認証とは、それをアクティブにする方法]][[ja:二要素認証とは、それをアクティブにする方法]]&lt;br /&gt;
&amp;lt;span data-link_translate_ar_title=&amp;quot;ما هو مصادقة ثنائية العامل وكيفية تنشيطه&amp;quot;  data-link_translate_ar_url=&amp;quot;%D9%85%D8%A7+%D9%87%D9%88+%D9%85%D8%B5%D8%A7%D8%AF%D9%82%D8%A9+%D8%AB%D9%86%D8%A7%D8%A6%D9%8A%D8%A9+%D8%A7%D9%84%D8%B9%D8%A7%D9%85%D9%84+%D9%88%D9%83%D9%8A%D9%81%D9%8A%D8%A9+%D8%AA%D9%86%D8%B4%D9%8A%D8%B7%D9%87&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:ar:ما هو مصادقة ثنائية العامل وكيفية تنشيطه]][[ar:ما هو مصادقة ثنائية العامل وكيفية تنشيطه]]&lt;br /&gt;
&amp;lt;span data-link_translate_zh_title=&amp;quot;什么是双因素身份验证和如何激活它&amp;quot;  data-link_translate_zh_url=&amp;quot;%E4%BB%80%E4%B9%88%E6%98%AF%E5%8F%8C%E5%9B%A0%E7%B4%A0%E8%BA%AB%E4%BB%BD%E9%AA%8C%E8%AF%81%E5%92%8C%E5%A6%82%E4%BD%95%E6%BF%80%E6%B4%BB%E5%AE%83&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:zh:什么是双因素身份验证和如何激活它]][[zh:什么是双因素身份验证和如何激活它]]&lt;br /&gt;
&amp;lt;span data-link_translate_de_title=&amp;quot;Was ist die zwei-Faktor-Authentifizierung und wie Sie es aktivieren&amp;quot;  data-link_translate_de_url=&amp;quot;Was+ist+die+zwei-Faktor-Authentifizierung+und+wie+Sie+es+aktivieren&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:de:Was ist die zwei-Faktor-Authentifizierung und wie Sie es aktivieren]][[de:Was ist die zwei-Faktor-Authentifizierung und wie Sie es aktivieren]]&lt;br /&gt;
&amp;lt;span data-link_translate_nl_title=&amp;quot;Wat is de verificatie met twee factoren en hoe om het te activeren&amp;quot;  data-link_translate_nl_url=&amp;quot;Wat+is+de+verificatie+met+twee+factoren+en+hoe+om+het+te+activeren&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:nl:Wat is de verificatie met twee factoren en hoe om het te activeren]][[nl:Wat is de verificatie met twee factoren en hoe om het te activeren]]&lt;br /&gt;
&amp;lt;span data-link_translate_it_title=&amp;quot;Che cos'è l'autenticazione a due fattori e come attivarlo&amp;quot;  data-link_translate_it_url=&amp;quot;Che+cos%27%C3%A8+l%27autenticazione+a+due+fattori+e+come+attivarlo&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:it:Che cos'è l'autenticazione a due fattori e come attivarlo]][[it:Che cos'è l'autenticazione a due fattori e come attivarlo]]&lt;br /&gt;
&amp;lt;span data-link_translate_en_title=&amp;quot;What is the two-factor authentication and how to activate it&amp;quot;  data-link_translate_en_url=&amp;quot;What+is+the+two-factor+authentication+and+how+to+activate+it&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:en:What is the two-factor authentication and how to activate it]][[en:What is the two-factor authentication and how to activate it]]&lt;br /&gt;
&lt;br /&gt;
{{#seo:&lt;br /&gt;
|title=Your page title&lt;br /&gt;
|title_mode=append&lt;br /&gt;
|keywords=these,are,your,keywords&lt;br /&gt;
|description=What is the two-factor authentication and how to activate it&lt;br /&gt;
|image=Uploaded_file.png&lt;br /&gt;
|image_alt=Wiki Logo&lt;br /&gt;
}}&lt;br /&gt;
=What is the two-factor authentication ?=&lt;br /&gt;
&lt;br /&gt;
The two-factor authentication is to increase the protection of your Extranet account Ikoula.&lt;br /&gt;
&lt;br /&gt;
Indeed, during the connection you must, in addition to the seizure of your password, enter a special code which is independent and renewed at each connection.&lt;br /&gt;
&lt;br /&gt;
This system allows to add a second security to your account if your password is hacked, the hacker will not be able to connect to your account without being in possession of your random security code.&lt;br /&gt;
&lt;br /&gt;
=How to set up the two-factor authentication ?=&lt;br /&gt;
&lt;br /&gt;
To set up the double authentication factor, go to your extranet in the &amp;quot;double authentication factor&amp;quot; section&lt;br /&gt;
&lt;br /&gt;
You can choose your preferred dual factor authentication system from app, email or SMS authentication (if you wish you can install all three systems).&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Extranet 2fa en step 1.PNG|center]] &lt;br /&gt;
&lt;br /&gt;
==Implementation of a new double authentication token== &lt;br /&gt;
&lt;br /&gt;
===Initialization of the token by application===&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Extranet 2fa en step 2.PNG|center]] &lt;br /&gt;
&lt;br /&gt;
If you choose the token by application, you must first of all choose an application for generating authentication codes (Google authenticator, DUO, FREE Otp, ...).&lt;br /&gt;
Once the application has been chosen, you must scan the QR code in your application.&lt;br /&gt;
Once the token has been added to the application, you must enter the code generated in the field on the extranet in order to validate the installation of your token.&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Extranet 2fa en step 3.PNG|center]]     &lt;br /&gt;
&lt;br /&gt;
Once the token has been validated, you can now log in using this double factor authentication system!&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Extranet 2fa en step 4.PNG|center]] &lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
===Initialization of the token by email===&lt;br /&gt;
&lt;br /&gt;
If you choose the token by email, you will have to enter an email where we can send you the connection code (by default the field will be filled with the email from your extranet account).&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Extranet 2fa en step 8.PNG|center]] &lt;br /&gt;
&lt;br /&gt;
Once the chosen email is validated, you will receive a code on this email address, please use this code in the field provided to validate the initialization of this token.&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Extranet 2fa en step 9.PNG|center]] &lt;br /&gt;
&lt;br /&gt;
Once the token has been validated, you can now log in using this double factor authentication system!&lt;br /&gt;
&lt;br /&gt;
===Initialization of the token by SMS===&lt;br /&gt;
&lt;br /&gt;
If you choose the token by SMS, you will have to enter a number where we can send you the connection code, be sure to prefix your number with the international index of your country (+33 for France for example).&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Extranet 2fa en step 10.PNG|center]] &lt;br /&gt;
&lt;br /&gt;
Once the number has been validated, you will receive a code on this number, please use this code in the field provided to validate the initialization of this token.&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Extranet 2fa en step 9.PNG|center]] &lt;br /&gt;
&lt;br /&gt;
Once the token has been validated, you can now log in using this double factor authentication system!&lt;br /&gt;
&lt;br /&gt;
=How to connect with the double factor of authentication ?=&lt;br /&gt;
&lt;br /&gt;
Once the token is setup, you can connect to the extranet using two-factor authentication.&lt;br /&gt;
&lt;br /&gt;
After entering your password, you are redirect on the interface allowing you to choose how you want to connect.&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Extranet 2fa en step 5.PNG|center]] &lt;br /&gt;
&lt;br /&gt;
You just need to choose the connection option you prefer.&lt;br /&gt;
&lt;br /&gt;
Depending on the method chosen, you must enter the code generated by the application or received by mail / sms in the field provided.&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Extranet 2fa en step 6.PNG|center]] &lt;br /&gt;
&lt;br /&gt;
If the code is correct and the time limit is not exceeded, you will be connected and redirected to your personal space.&lt;br /&gt;
&lt;br /&gt;
=How do I turn off double factor authentication?=&lt;br /&gt;
&lt;br /&gt;
To delete a token, you must go to your double-factor authentication management interface, choose the token you want to delete and click on the token deletion button.&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Extranet 2fa en step 7.PNG|center]] &lt;br /&gt;
&lt;br /&gt;
Please note that if you want to delete your app token, in addition to deleting in the extranet interface, you will need to manually delete the token from the app side.&lt;br /&gt;
&lt;br /&gt;
You can re-enable it at any time using the procedure from the beginning.&lt;br /&gt;
&lt;br /&gt;
[[Category:Extranet]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;comments /&amp;gt;&lt;/div&gt;</summary>
		<author><name>Mschmit52a93</name></author>
	</entry>
	<entry>
		<id>https://en-wiki.ikoula.com/index.php?title=File:Extranet_2fa_en_step_10.PNG&amp;diff=10439</id>
		<title>File:Extranet 2fa en step 10.PNG</title>
		<link rel="alternate" type="text/html" href="https://en-wiki.ikoula.com/index.php?title=File:Extranet_2fa_en_step_10.PNG&amp;diff=10439"/>
		<updated>2020-09-15T07:50:54Z</updated>

		<summary type="html">&lt;p&gt;Mschmit52a93: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mschmit52a93</name></author>
	</entry>
	<entry>
		<id>https://en-wiki.ikoula.com/index.php?title=File:Extranet_2fa_en_step_9.PNG&amp;diff=10438</id>
		<title>File:Extranet 2fa en step 9.PNG</title>
		<link rel="alternate" type="text/html" href="https://en-wiki.ikoula.com/index.php?title=File:Extranet_2fa_en_step_9.PNG&amp;diff=10438"/>
		<updated>2020-09-15T07:50:43Z</updated>

		<summary type="html">&lt;p&gt;Mschmit52a93: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mschmit52a93</name></author>
	</entry>
	<entry>
		<id>https://en-wiki.ikoula.com/index.php?title=File:Extranet_2fa_en_step_8.PNG&amp;diff=10437</id>
		<title>File:Extranet 2fa en step 8.PNG</title>
		<link rel="alternate" type="text/html" href="https://en-wiki.ikoula.com/index.php?title=File:Extranet_2fa_en_step_8.PNG&amp;diff=10437"/>
		<updated>2020-09-15T07:50:25Z</updated>

		<summary type="html">&lt;p&gt;Mschmit52a93: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mschmit52a93</name></author>
	</entry>
	<entry>
		<id>https://en-wiki.ikoula.com/index.php?title=File:Extranet_2fa_en_step_7.PNG&amp;diff=10436</id>
		<title>File:Extranet 2fa en step 7.PNG</title>
		<link rel="alternate" type="text/html" href="https://en-wiki.ikoula.com/index.php?title=File:Extranet_2fa_en_step_7.PNG&amp;diff=10436"/>
		<updated>2020-09-15T07:50:17Z</updated>

		<summary type="html">&lt;p&gt;Mschmit52a93: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mschmit52a93</name></author>
	</entry>
	<entry>
		<id>https://en-wiki.ikoula.com/index.php?title=File:Extranet_2fa_en_step_6.PNG&amp;diff=10435</id>
		<title>File:Extranet 2fa en step 6.PNG</title>
		<link rel="alternate" type="text/html" href="https://en-wiki.ikoula.com/index.php?title=File:Extranet_2fa_en_step_6.PNG&amp;diff=10435"/>
		<updated>2020-09-15T07:50:04Z</updated>

		<summary type="html">&lt;p&gt;Mschmit52a93: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mschmit52a93</name></author>
	</entry>
	<entry>
		<id>https://en-wiki.ikoula.com/index.php?title=File:Extranet_2fa_en_step_5.PNG&amp;diff=10434</id>
		<title>File:Extranet 2fa en step 5.PNG</title>
		<link rel="alternate" type="text/html" href="https://en-wiki.ikoula.com/index.php?title=File:Extranet_2fa_en_step_5.PNG&amp;diff=10434"/>
		<updated>2020-09-15T07:49:54Z</updated>

		<summary type="html">&lt;p&gt;Mschmit52a93: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mschmit52a93</name></author>
	</entry>
	<entry>
		<id>https://en-wiki.ikoula.com/index.php?title=File:Extranet_2fa_en_step_4.PNG&amp;diff=10433</id>
		<title>File:Extranet 2fa en step 4.PNG</title>
		<link rel="alternate" type="text/html" href="https://en-wiki.ikoula.com/index.php?title=File:Extranet_2fa_en_step_4.PNG&amp;diff=10433"/>
		<updated>2020-09-15T07:49:45Z</updated>

		<summary type="html">&lt;p&gt;Mschmit52a93: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mschmit52a93</name></author>
	</entry>
	<entry>
		<id>https://en-wiki.ikoula.com/index.php?title=File:Extranet_2fa_en_step_3.PNG&amp;diff=10432</id>
		<title>File:Extranet 2fa en step 3.PNG</title>
		<link rel="alternate" type="text/html" href="https://en-wiki.ikoula.com/index.php?title=File:Extranet_2fa_en_step_3.PNG&amp;diff=10432"/>
		<updated>2020-09-15T07:49:34Z</updated>

		<summary type="html">&lt;p&gt;Mschmit52a93: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mschmit52a93</name></author>
	</entry>
	<entry>
		<id>https://en-wiki.ikoula.com/index.php?title=File:Extranet_2fa_en_step_2.PNG&amp;diff=10431</id>
		<title>File:Extranet 2fa en step 2.PNG</title>
		<link rel="alternate" type="text/html" href="https://en-wiki.ikoula.com/index.php?title=File:Extranet_2fa_en_step_2.PNG&amp;diff=10431"/>
		<updated>2020-09-15T07:49:25Z</updated>

		<summary type="html">&lt;p&gt;Mschmit52a93: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mschmit52a93</name></author>
	</entry>
	<entry>
		<id>https://en-wiki.ikoula.com/index.php?title=File:Extranet_2fa_en_step_1.PNG&amp;diff=10430</id>
		<title>File:Extranet 2fa en step 1.PNG</title>
		<link rel="alternate" type="text/html" href="https://en-wiki.ikoula.com/index.php?title=File:Extranet_2fa_en_step_1.PNG&amp;diff=10430"/>
		<updated>2020-09-15T07:49:10Z</updated>

		<summary type="html">&lt;p&gt;Mschmit52a93: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mschmit52a93</name></author>
	</entry>
	<entry>
		<id>https://en-wiki.ikoula.com/index.php?title=Test_article&amp;diff=9807</id>
		<title>Test article</title>
		<link rel="alternate" type="text/html" href="https://en-wiki.ikoula.com/index.php?title=Test_article&amp;diff=9807"/>
		<updated>2019-08-21T07:15:59Z</updated>

		<summary type="html">&lt;p&gt;Mschmit52a93: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;span data-link_translate_es_title=&amp;quot;Artículo de prueba&amp;quot;  data-link_translate_es_url=&amp;quot;Artículo de prueba&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:es:Artículo de prueba]][[es:Artículo de prueba]]&lt;br /&gt;
&amp;lt;span data-link_translate_fr_title=&amp;quot;Article Test&amp;quot;  data-link_translate_fr_url=&amp;quot;Article Test&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:fr:Article Test]][[fr:Article Test]]&lt;br /&gt;
&amp;lt;br /&amp;gt;This article has been created by an automatic translation software. You can view the article source [[:fr:Article Test|here]].&amp;lt;br /&amp;gt;&amp;lt;span data-translate=&amp;quot;fr&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:Ikoula Logo.png]]&lt;br /&gt;
&lt;br /&gt;
This is a test article.&lt;br /&gt;
&lt;br /&gt;
Thank you for ignoring it.&amp;lt;br /&amp;gt;&amp;lt;comments /&amp;gt;&lt;/div&gt;</summary>
		<author><name>Mschmit52a93</name></author>
	</entry>
	<entry>
		<id>https://en-wiki.ikoula.com/index.php?title=Oversee_its_hardware_RAID&amp;diff=9725</id>
		<title>Oversee its hardware RAID</title>
		<link rel="alternate" type="text/html" href="https://en-wiki.ikoula.com/index.php?title=Oversee_its_hardware_RAID&amp;diff=9725"/>
		<updated>2015-11-05T14:21:57Z</updated>

		<summary type="html">&lt;p&gt;Mschmit52a93: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;span data-link_translate_en_title=&amp;quot;Oversee its hardware RAID&amp;quot;  data-link_translate_en_url=&amp;quot;Oversee its hardware RAID&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:en:Oversee its hardware RAID]][[en:Oversee its hardware RAID]]&lt;br /&gt;
&amp;lt;span data-link_translate_he_title=&amp;quot;לפקח על החומרה שלו RAID&amp;quot;  data-link_translate_he_url=&amp;quot;%D7%9C%D7%A4%D7%A7%D7%97+%D7%A2%D7%9C+%D7%94%D7%97%D7%95%D7%9E%D7%A8%D7%94+%D7%A9%D7%9C%D7%95+RAID&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:he:לפקח על החומרה שלו RAID]][[he:לפקח על החומרה שלו RAID]]&lt;br /&gt;
&amp;lt;span data-link_translate_ru_title=&amp;quot;Надзор за ее аппаратный RAID&amp;quot;  data-link_translate_ru_url=&amp;quot;%D0%9D%D0%B0%D0%B4%D0%B7%D0%BE%D1%80+%D0%B7%D0%B0+%D0%B5%D0%B5+%D0%B0%D0%BF%D0%BF%D0%B0%D1%80%D0%B0%D1%82%D0%BD%D1%8B%D0%B9+RAID&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:ru:Надзор за ее аппаратный RAID]][[ru:Надзор за ее аппаратный RAID]]&lt;br /&gt;
&amp;lt;span data-link_translate_ja_title=&amp;quot;そのハードウェア RAID を監督します。&amp;quot;  data-link_translate_ja_url=&amp;quot;%E3%81%9D%E3%81%AE%E3%83%8F%E3%83%BC%E3%83%89%E3%82%A6%E3%82%A7%E3%82%A2+RAID+%E3%82%92%E7%9B%A3%E7%9D%A3%E3%81%97%E3%81%BE%E3%81%99%E3%80%82&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:ja:そのハードウェア RAID を監督します。]][[ja:そのハードウェア RAID を監督します。]]&lt;br /&gt;
&amp;lt;span data-link_translate_ar_title=&amp;quot;الإشراف على أجهزة RAID&amp;quot;  data-link_translate_ar_url=&amp;quot;%D8%A7%D9%84%D8%A5%D8%B4%D8%B1%D8%A7%D9%81+%D8%B9%D9%84%D9%89+%D8%A3%D8%AC%D9%87%D8%B2%D8%A9+RAID&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:ar:الإشراف على أجهزة RAID]][[ar:الإشراف على أجهزة RAID]]&lt;br /&gt;
&amp;lt;span data-link_translate_zh_title=&amp;quot;监督其硬件 RAID&amp;quot;  data-link_translate_zh_url=&amp;quot;%E7%9B%91%E7%9D%A3%E5%85%B6%E7%A1%AC%E4%BB%B6+RAID&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:zh:监督其硬件 RAID]][[zh:监督其硬件 RAID]]&lt;br /&gt;
&amp;lt;span data-link_translate_ro_title=&amp;quot;Supraveghea sale articole de fier RAID&amp;quot;  data-link_translate_ro_url=&amp;quot;Supraveghea+sale+articole+de+fier+RAID&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:ro:Supraveghea sale articole de fier RAID]][[ro:Supraveghea sale articole de fier RAID]]&lt;br /&gt;
&amp;lt;span data-link_translate_pl_title=&amp;quot;Nadzorować jego sprzętowych macierzy RAID&amp;quot;  data-link_translate_pl_url=&amp;quot;Nadzorowa%C4%87+jego+sprz%C4%99towych+macierzy+RAID&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:pl:Nadzorować jego sprzętowych macierzy RAID]][[pl:Nadzorować jego sprzętowych macierzy RAID]]&lt;br /&gt;
&amp;lt;span data-link_translate_de_title=&amp;quot;Überwachen Sie ihre Hardware-RAID&amp;quot;  data-link_translate_de_url=&amp;quot;%C3%9Cberwachen+Sie+ihre+Hardware-RAID&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:de:Überwachen Sie ihre Hardware-RAID]][[de:Überwachen Sie ihre Hardware-RAID]]&lt;br /&gt;
&amp;lt;span data-link_translate_nl_title=&amp;quot;Toezicht houden op de inval van de hardware&amp;quot;  data-link_translate_nl_url=&amp;quot;Toezicht+houden+op+de+inval+van+de+hardware&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:nl:Toezicht houden op de inval van de hardware]][[nl:Toezicht houden op de inval van de hardware]]&lt;br /&gt;
&amp;lt;span data-link_translate_it_title=&amp;quot;Sorvegliare il suo hardware RAID&amp;quot;  data-link_translate_it_url=&amp;quot;Sorvegliare+il+suo+hardware+RAID&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:it:Sorvegliare il suo hardware RAID]][[it:Sorvegliare il suo hardware RAID]]&lt;br /&gt;
&amp;lt;span data-link_translate_pt_title=&amp;quot;Supervisionar seu hardware RAID&amp;quot;  data-link_translate_pt_url=&amp;quot;Supervisionar+seu+hardware+RAID&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:pt:Supervisionar seu hardware RAID]][[pt:Supervisionar seu hardware RAID]]&lt;br /&gt;
&amp;lt;span data-link_translate_es_title=&amp;quot;Supervisar su hardware RAID&amp;quot;  data-link_translate_es_url=&amp;quot;Supervisar+su+hardware+RAID&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:es:Supervisar su hardware RAID]][[es:Supervisar su hardware RAID]]&lt;br /&gt;
&amp;lt;span data-link_translate_fr_title=&amp;quot;Superviser son RAID hardware&amp;quot;  data-link_translate_fr_url=&amp;quot;Superviser_son_RAID_hardware&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;[[:fr:Superviser son RAID hardware]][[fr:Superviser son RAID hardware]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This article has been created by an automatic translation software. You can view the article source [[:fr:Superviser son RAID hardware|here]].&amp;lt;br /&amp;gt;&amp;lt;span data-translate=&amp;quot;fr&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Début de l'article. Placez votre texte ci-après et n'hésitez pas à personnaliser les chapitres selon votre besoin --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Introduction== &amp;lt;!--T:1--&amp;gt;&lt;br /&gt;
Lorsque vous disposez d'un serveur dédié loué chez {{iKoula}} with a physical RAID, you have pre-installed tools to monitor your RAID and hard drives in your machine.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Dell Open Manage == &amp;lt;!--T:2--&amp;gt;&lt;br /&gt;
On Dell, the tool servers &amp;lt;span class=&amp;quot;notranslate&amp;quot;&amp;gt;Dell Open Manage&amp;lt;/span&amp;gt; is present and allows you to get various information. This tool is available under &amp;lt;span class=&amp;quot;notranslate&amp;quot;&amp;gt;Windows&amp;lt;/span&amp;gt; or linux and is used the same way regardless of the OS.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:3--&amp;gt;&lt;br /&gt;
Some examples of commands in '''CLI ''', or command line.&lt;br /&gt;
For example  for the global information of the server :&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
$ omreport chassis info&lt;br /&gt;
Chassis Information&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:4--&amp;gt;&lt;br /&gt;
Index                                    : 0&lt;br /&gt;
Chassis Name                             : Main System Chassis&lt;br /&gt;
Host Name                                : serveur_physique&lt;br /&gt;
iDRAC6 Version                           : 1.41.00 (Build 13)&lt;br /&gt;
Chassis Model                            : PowerEdge R710&lt;br /&gt;
Chassis Lock                             : Present&lt;br /&gt;
Chassis Service Tag                      : XXXXXXX&lt;br /&gt;
Express Service Code                     : XXXXXXXXX&lt;br /&gt;
Chassis Asset Tag                        :&lt;br /&gt;
Flash chassis identify LED state         : Off&lt;br /&gt;
Flash chassis identify LED timeout value : 300&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:5--&amp;gt;&lt;br /&gt;
It is possible to have help on the use of this program :&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
$ omreport /?&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:6--&amp;gt;&lt;br /&gt;
omreport         Reports component properties.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:7--&amp;gt;&lt;br /&gt;
The available command(s) are:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:8--&amp;gt;&lt;br /&gt;
Command          Description&lt;br /&gt;
about            Product and version properties.&lt;br /&gt;
system           System component properties.&lt;br /&gt;
licenses         Displays the digital licenses of the installed hardware devices.&lt;br /&gt;
preferences      Report system preferences.&lt;br /&gt;
chassis          Chassis component properties.&lt;br /&gt;
storage     Display storage component properties.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:9--&amp;gt;&lt;br /&gt;
Usage: omreport &amp;lt;command...&amp;gt; [name=value...] ... [option...]&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:10--&amp;gt;&lt;br /&gt;
To know the State of the physical disks, you can use the command :&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
$ omreport {{Template:Espace de stockage}} pdisk&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:11--&amp;gt;&lt;br /&gt;
While the following command will return the State of the virtual disks, i.e. RAID volumes &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
$ omreport {{Template:Espace de stockage}} vdisk&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==MegaCLI  ==  &amp;lt;!--T:12--&amp;gt;&lt;br /&gt;
If you have a linux server, you can also use the utility '''MegaCLI  '''. This tool is particularly useful if your server is not a Dell and the controller card is compatible MegaRAID.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:13--&amp;gt;&lt;br /&gt;
Example to see the virtual disks. Useful to check the status of the RAID and its information.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
# MegaCli64 -LDInfo -Lall -aALL&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:14--&amp;gt;&lt;br /&gt;
For the information of the physical disks :&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
# MegaCli -PDList -aALL&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:15--&amp;gt;&lt;br /&gt;
&amp;lt;!-- Fin de l'article --&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
This article seemed you to be useful ? &amp;lt;vote /&amp;gt;&lt;br /&gt;
&amp;lt;!-- Placez ici la ou les catégories auxquelles se rapporte votre article. Une ligne par catégorie. Ex: &lt;br /&gt;
[[Category:Help]]&lt;br /&gt;
[[Category:Linux]] --&amp;gt;&lt;br /&gt;
[[Category:Dedicated_server]]&lt;br /&gt;
[[Category:Windows]]&lt;br /&gt;
[[Category:Linux]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Gestion SEO. Indiquez les informations manquantes --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;comments /&amp;gt;&lt;/div&gt;</summary>
		<author><name>Mschmit52a93</name></author>
	</entry>
</feed>