Riverbed Steelhead 不会对等

网络工程 河床
2022-02-21 21:02:25

如图所示,我有简单的 Riverbed Steelhead 设置:

在此处输入图像描述

路径内接口可以相互 ping 通,但是我无法让 Steelheads 对等。有人可以阐明这个问题吗?即使我将带有“固定目标”的路径内规则配置为每个路径内 IP 地址的地址,它们仍然不会对等。

任何帮助将不胜感激。

1个回答

如果你需要超过一天的时间才能站起来,那你就想多了。这些东西超级简单。听取制造商的建议/最佳做法。

请参阅SteelHead™ 部署指南 > SteelHead 部署的最佳实践

使用路径内设计- 尽可能使用物理路径内部署——最常见的SteelHead 部署类型。物理路径内部署比 WCCP、PBR 和第 4 层设计更易于管理和配置。路径内设计通常不需要对连接的路由器或交换机进行额外配置。如果需要,您可以限制要在 SteelHead 上优化的流量。有关详细信息,请参阅物理路径内部署。

另请参阅配置主要和备份部署以获取要复制和粘贴的配置。

1.  Connect to the primary SteelHead CLI and enter the following commands:

    -- Primary SteelHead.<br>
    interface primary ip address 10.0.1.2/24<br>
    ip default gateway 10.0.1.1<br>
    interface inpath0_0 ip address 10.0.1.3/24<br>
    ip in-path-gateway inpath0_0 10.0.1.1<br>
    -- Failover should point to the inpath0_0 address.<br>
    failover steelhead addr 10.0.1.5<br>
    failover master<br>
    failover enable<br>
    in-path enable<br>
    -- Although not required, RiOS data store synchronization is usually enabled
    -- in primary/backup deployments.<br>
    datastore sync master<br>
    -- RiOS data store should point to peer primary or aux interface address.<br>
    datastore sync peer-ip 10.0.1.4<br>
    datastore sync enable<br>
    write memory<br>
    restart<br>
2.  Connect to the backup SteelHead CLI and enter the following commands:
    -- Backup SteelHead.<br>
    interface primary ip address 10.0.1.4/24<br>
    ip default gateway 10.0.1.1<br>
    interface inpath0_0 ip address 10.0.1.5/24<br>
    ip in-path-gateway inpath0_0 10.0.1.1<br>
    -- Failover should point to the inpath0_0 address.<br>
    failover steelhead addr 10.0.1.3<br>
    no failover master<br>
    failover enable<br>
    in-path enable<br>
    -- Although not required, RiOS data store synchronization is usually enabled in
    -- primary/backup deployments.<br>
    no datastore sync master<br>
    -- RiOS data store should point to peer's primary or aux interface address.<br>
    datastore sync peer-ip 10.0.1.2<br>
    datastore sync enable<br>
    write memory<br>
    restart<br>