This content has been machine translated dynamically.
Dieser Inhalt ist eine maschinelle Übersetzung, die dynamisch erstellt wurde. (Haftungsausschluss)
Cet article a été traduit automatiquement de manière dynamique. (Clause de non responsabilité)
Este artículo lo ha traducido una máquina de forma dinámica. (Aviso legal)
此内容已经过机器动态翻译。 放弃
このコンテンツは動的に機械翻訳されています。免責事項
이 콘텐츠는 동적으로 기계 번역되었습니다. 책임 부인
Este texto foi traduzido automaticamente. (Aviso legal)
Questo contenuto è stato tradotto dinamicamente con traduzione automatica.(Esclusione di responsabilità))
This article has been machine translated.
Dieser Artikel wurde maschinell übersetzt. (Haftungsausschluss)
Ce article a été traduit automatiquement. (Clause de non responsabilité)
Este artículo ha sido traducido automáticamente. (Aviso legal)
この記事は機械翻訳されています.免責事項
이 기사는 기계 번역되었습니다.책임 부인
Este artigo foi traduzido automaticamente.(Aviso legal)
这篇文章已经过机器翻译.放弃
Questo articolo è stato tradotto automaticamente.(Esclusione di responsabilità))
Translation failed!
配置 ISIS
Citrix ADC 设备支持中间系统到中间系统 (IS-IS 或 ISIS) 动态路由协议。此协议支持 IPv4 以及 IPv6 路由交换。IS‑S 是一种链路状态协议,因此不太容易进行路由循环。ISIS 在 Internet 服务提供商 (ISP) 网络中具有更快的融合和支持更大的网络的优势。
配置 ISIS 的必备条件
在开始配置 ISIS 之前,请执行以下操作:
- 请确保您了解 ISIS 协议。
- 对于 IPV6 路由,启用:
- IPv6 协议转换功能。
- 要运行 ISIS 协议的 VLAN 上的 IPv6 动态路由选项。
启用 ISIS
使用以下过程之一在 Citrix ADC 设备上启用 ISIS 路由功能。
要使用 CLI 启用 ISIS 路由,请执行以下操作:
在命令提示符下,键入:
enable ns feature ISIS
要使用 GUI 启用 ISIS 路由,请执行以下操作:
- 导航到“系统”>“设置”,在“模式和功能”组中,单击“更改高级功能”。
- 选择或清除 ISIS 路由选项。
创建 ISIS 路由进程并在 VLAN 上启动它
要创建 ISIS 路由过程,您必须使用 VTYSH 命令行。
在命令提示符下,按所示顺序键入以下命令:
命令 | 说明 |
---|---|
VTYSH | 显示 VTYSH 命令提示符。 |
configure terminal | 进入全局配置模式。 |
路由器 ISIS [标签] | 为路由过程创建 ISIS 路由流程和配置模式。 |
net XX….XXXX.YYYY.YYYY.YYYY.00 | 指定路由过程的一个 NET 值,其中: ·XX… .XXXX 是区域地址(可以是 1-13 字节), ·YYYYYYYYYYYYY 是系统 ID(6 字节), ·00 是 N 选择器(1 字节)。 |
is-type (level-1|level-1-2|level-2-only) | 将 ISIS 路由过程设置为指定的路由级别。默认值:level-1-2。 |
ns IPv6-routing | 启动 IPv6 动态路由守护进程。 |
interface |
进入 VLAN 配置模式。 |
ip router ISIS | 在 VLAN 上启用 IPv4 路由交换的 ISIS 路由流程。 |
ipv6 router ISIS | 在 VLAN 上启用 IPv6 路由交换的 ISIS 路由过程。 |
示例:
> VTYSH
NS# configure terminal
NS(config)# router isis 11
NS(config-router)# net 15.aabb.ccdd.0097.00
NS(config-router)# is-type level-1
NS(config-router)# exit
NS(config)# ns IPv6-routing
NS(config)# interface vlan0
NS(config-if)# ip router isis 11
NS(config-if)# ipv6 router isis 11
<!--NeedCopy-->
广告路线
路由播发使上游路由器能够跟踪位于 Citrix ADC 设备后面的网络实体。
要使用 VTYSH 命令行将 ISIS 配置为通告路由,请执行以下操作:
在命令提示符下,按所示顺序键入以下命令:
命令 | 说明 |
---|---|
VTYSH | 显示 VTYSH 命令提示符。 |
configure terminal | 进入全局配置模式。 |
路由器 ISIS[标签] | 启动 ISIS 路由实例并进入路由过程的配置模式。 |
重新分配连接(level-1、level-1-2 或 level-2) | 重新分配连接的路由,其中:level-1:将连接的路由重新分配到 Level-1,level-1-2:将连接的路由重新分配到 Level-1 和 Level-2,level-2:将连接的路由重新分配到 Level-2。 |
重新分发内核(level-1、level-1-2 或 level-2) | 重新分配内核路由,其中:level-1:将内核路由重新分配到 Level-1,level-1-2:将内核路由重新分配到 Level-1 和 Level-2,level-2:将内核路由重新分配到 Level-2。 |
示例:
>VTYSH
NS# configure terminal
NS(config)# router isis 11
NS(config-router)# redistribute connected level-1
NS(config-router)# redistribute kernel level-1
<!--NeedCopy-->
限制 ISIS 的传播
如果您需要对配置进行故障排除,可以在任何给定 VLAN 上配置只听模式。
要使用 VTYSH 命令行限制 ISIS 传播,请执行以下操作:
在命令提示符下,按所示顺序键入以下命令:
命令 | 说明 |
---|---|
VTYSH | 显示 VTYSH 命令提示符。 |
configure terminal | 进入全局配置模式。 |
router isis [标签] | 进入路由过程的配置模式。 |
passive-interface |
禁止绑定到指定 VLAN 的接口上的路由更新。 |
示例:
>VTYSH
NS# configure terminal
NS(config)# router isis 11
NS(config-router)# passive-interface VLAN0
<!--NeedCopy-->
验证 ISIS 配置
您可以使用 VTYSH 显示指定 VLAN 的 ISIS 路由表和 ISIS 信息。
要使用 VTYSH 命令行查看 ISIS 设置,请执行以下操作:
在命令提示符下,按所示顺序键入以下命令:
命令 | 说明 |
---|---|
VTYSH | 显示 VTYSH 命令提示符。 |
show ip isis route | 显示更新的 IPv4 ISIS 路由表。 |
show ipv6 isis route | 显示更新的 IPv6 ISIS 路由表。 |
sh isis interface |
显示指定 VLAN 的 IPv6 ISIS 信息。 |
示例:
NS# VTYSH
NS# show ip isis route
NS# show ipv6 isis route
NS# sh isis interface VLAN0
<!--NeedCopy-->
共享
共享
This Preview product documentation is Cloud Software Group Confidential.
You agree to hold this documentation confidential pursuant to the terms of your Cloud Software Group Beta/Tech Preview Agreement.
The development, release and timing of any features or functionality described in the Preview documentation remains at our sole discretion and are subject to change without notice or consultation.
The documentation is for informational purposes only and is not a commitment, promise or legal obligation to deliver any material, code or functionality and should not be relied upon in making Cloud Software Group product purchase decisions.
If you do not agree, select I DO NOT AGREE to exit.