全部产品
Search
文档中心

资源编排:ALIYUN::VPC::BgpGroup

更新时间:Sep 18, 2024

ALIYUN::VPC::BgpGroup类型用于为指定的边界路由器(VBR)创建一个BGP(多线)组。

您可以通过BGP实现边界路由器与本地数据中心(IDC)的互通。每个BGP组关联一个VBR,您仅需将与VBR通信的BGP邻居添加到对应的BGP组中,然后在VBR中宣告BGP网络即可。BGP组主要用于简化BGP配置,您可以将需要不断重复的配置合并到一个组中,减少配置复杂度。您需根据AS号码建立一个BGP组。

说明
  • BGP组支持的BGP版本为BGP4。

  • BGP组支持IPv4 BGP,不支持IPv6 BGP。

语法

{
  "Type": "ALIYUN::VPC::BgpGroup",
  "Properties": {
    "Description": String,
    "LocalAsn": Integer,
    "AuthKey": String,
    "RouterId": String,
    "PeerAsn": Integer,
    "IsFakeAsn": Boolean,
    "Name": String,
    "RouteQuota": Integer,
    "IpVersion": String
  }
}

属性

属性名称

类型

必须

允许更新

描述

约束

Description

String

BGP组的描述信息。

长度为2~256个字符,必须以英文字母或汉字开头,不能以http://https://开头。

LocalAsn

Integer

云上设备的AS号码。

AuthKey

String

BGP组的认证密钥。

RouterId

String

边界路由器ID。

PeerAsn

Integer

本地设备的AS号码。

IsFakeAsn

Boolean

AS号码是否为假。

取值:

  • true

  • false

Name

String

BGP组的名称。

长度为2~128个字符,必须以英文字母或汉字开头,但不能以http://https://开头。可包含英文字母、汉字、数字、半角句号(.)、下划线(_)和短划线(-)。

RouteQuota

Integer

BGP 邻居的路由条目上限。

单位:条。

IpVersion

String

IP 版本。

取值:

  • IPv4(默认值):IPv4 版本。

  • IPv6:IPv6 版本,只有当创建 BGP 组的 VBR 开通 IPv6 功能时,支持 IPv6 版本。

返回值

Fn::GetAtt

  • BgpGroupId:BGP组的ID。

  • Name:BGP组的名称。

示例

YAML格式

ROSTemplateFormatVersion: '2015-09-01'
Parameters:
  PeerAsn:
    Type: Number
    Description: The AS number of the BGP peer.
  RouterId:
    Type: String
    Description: The ID of the VBR.
Resources:
  BgpGroup:
    Type: ALIYUN::VPC::BgpGroup
    Properties:
      PeerAsn:
        Ref: PeerAsn
      RouterId:
        Ref: RouterId
Outputs: {}

JSON格式

{
  "ROSTemplateFormatVersion" : "2015-09-01",
  "Parameters" : {
    "PeerAsn": {
      "Type": "Number",
      "Description": "The AS number of the BGP peer."
    },
    "RouterId": {
      "Type": "String",
      "Description": "The ID of the VBR."
    }
  },
  "Resources" : {
    "BgpGroup": {
      "Type": "ALIYUN::VPC::BgpGroup",
      "Properties": {
        "PeerAsn": {
          "Ref": "PeerAsn"
        },
        "RouterId": {
          "Ref": "RouterId"
        }
      }
    }
  },
  "Outputs": {
  }
}