> For the complete documentation index, see [llms.txt](https://developers.oxylabs.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developers.oxylabs.io/products/cn/proxies/dedicated-isp-proxies/enterprise.md).

# 企业版

进一步了解企业版独享ISP代理及其项目使用方法。访问 IP 列表、设置认证，并通过代码示例发起首次代理请求。

{% hint style="info" %}
本文档适用于通过我们的销售或账户团队购买的独享ISP代理。
{% endhint %}

在开始之前，请确保您已从销售代表、专属客户经理或支持团队处收到用户名、密码，以及所有指向您的 IP 列表的 URL。

获取您的 IP 列表有两种方式。您可以在浏览器中直接打开收到的 URL 访问 IP 列表（例如， `https://proxy.oxylabs.io/all`）。随后系统会要求您输入登录凭据（HTTP Basic Authentication）。

或者，您也可以通过向收到的 URL 发起 GET 请求来获取该列表（例如， `https://proxy.oxylabs.io/all`）。别忘了将 `USERNAME` 和 `PASSWORD` 替换为您的代理用户凭据。

```shell
curl -u "USERNAME:PASSWORD" https://proxy.oxylabs.io/all
```

要使用代理发起请求，您必须从获取的列表中选择一个 IP 地址，并在请求参数中指定它。下面的 cURL 中可以看到示例。您可以在其他语言中找到更多代码示例 [**此处**](/products/cn/proxies/dedicated-isp-proxies/enterprise/making-requests.md) 或查看我们在 [**GitHub**](https://github.com/oxylabs/product-integrations/tree/master/datacenter-proxies).

```shell
curl -x 1.2.3.4:60000 -U "USERNAME:PASSWORD" http://ip.oxylabs.io/location
```

如果本说明中有任何未涵盖的问题，请联系您的专属客户经理或我们的支持团队，联系： [**support@oxylabs.io**](mailto:support@oxylabs.io).


---

# 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://developers.oxylabs.io/products/cn/proxies/dedicated-isp-proxies/enterprise.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.
