-1

我在 AzureStack (win2k16) 和 SRX210 之间配置了 BGP。在瞻博网络上,我看到所有路由都已通告,但瞻博网络仅通告其物理接口网络。我希望瞻博网络还包括配置为 2k16 机器的所有静态路由。

立即配置(在瞻博网络上)

policy-statement send-direct {
    term 1 {
        from protocol direct;
        then accept;
    }

group AzureStack {
    type internal;
    multihop {
        ttl 50;
    }
    export send-direct;
    neighbor 172.16.7.14 {
        local-address 172.16.7.1;
        peer-as 65050;
        local-as 65050;
    }
}

2k16 收到

DestinationNetwork NextHop

172.16.4.0/29    172.16.7.1  Juniper
172.16.5.0/24    172.16.7.1  Juniper
172.16.6.0/24    172.16.7.1  Juniper

但是例如我的瞻博网络有一条到 172.16.8.0/22 的静态路由,我想将它包含在 bgp 广告中。

4

1 回答 1

0

您可能希望修改策略以通告静态路由。也许在您的政策中创建另一个术语。

set policy-options policy-statement send-direct term2 from protocol static 
set policy-options policy-statement send-direct term2 then accept
于 2017-11-16T20:12:34.470 回答