> For the complete documentation index, see [llms.txt](https://docs.1kosmos.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.1kosmos.com/authentication/authentication-broker/faqs.md).

# FAQs

<details>

<summary><strong>Where is Auth Proxy configured?</strong></summary>

Auth Proxy configurations are created and managed in AdminX under **Applications > Auth Proxy**.

</details>

<details>

<summary><strong>What is the Configuration ID used for?</strong></summary>

The Configuration ID is generated when creating an Auth Proxy configuration in AdminX.

It is required to execute the LDAP Auth Proxy using:

```bash
goauthproxy ldap --configId <CONFIG_ID>
```

</details>

<details>

<summary><strong>Is Configuration ID required for RADIUS?</strong></summary>

No.\
RADIUS Auth Proxy is executed using:

```
goauthproxy radius
```

</details>

<details>

<summary><strong>How do I start the Auth Proxy?</strong></summary>

• RADIUS

```
goauthproxy radius
```

• LDAP

```
goauthproxy ldap --configId <CONFIG_ID>
```

</details>

<details>

<summary><strong>How do I stop the Auth Proxy?</strong></summary>

Auth Proxy runs as a process.

* If running in terminal → Press `Ctrl + C`
* If running in background:

Linux / macOS:

```
ps -ef | grep goauthproxykill -9 <PID>
```

Windows:

```
tasklist | findstr goauthproxytaskkill /PID <PID> /F
```

</details>

<details>

<summary><strong>What authentication methods are supported?</strong></summary>

* Push authentication
* Interactive Voice Response (IVR)
* Passcodes

</details>

<details>

<summary><strong>What happens if the Configuration ID is not provided for LDAP?</strong></summary>

The LDAP Auth Proxy cannot be executed.

</details>

<details>

<summary><strong>What happens if the RADIUS shared secret does not match?</strong></summary>

Authentication between the RADIUS client and Auth Proxy will not succeed.

</details>

<details>

<summary><strong>Does LDAP support failover?</strong></summary>

Yes. Multiple LDAP endpoints can be configured. If the primary server is unavailable, the next available server is used.

</details>

<details>

<summary><strong>Where can logs be accessed?</strong></summary>

Logs are generated on the system where the Auth Proxy is running and can be used for troubleshooting.

</details>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.1kosmos.com/authentication/authentication-broker/faqs.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
