跳到主要内容

创建防火墙规则

描述

创建防火墙规则,创建出防火墙之后系统会自动创建常用的默认规则。

请求参数

参数名参数类型是否必填参数说明
ActionString操作方法:CreateFirewallRule
RegionString机房标识,取值参见地域列表
FirewallIdString防火墙ID
NameString名称
DirectionString方向:
  • ingress:下行
  • egress:上行
  • PortStartString端口起始,TCP、UPD、ICMP协议时必传,其他协议不能传此参数
    PortEndString端口结束,TCP、UPD、ICMP协议时必传,其他协议不能传此参数
    ProtocolString协议:
  • TCP
  • UDP
  • ICMP
  • GRE
  • ESP
  • AH
  • IPIP
  • ALL:所有协议
  • PriorityString优先级,默认为1
    RemoteIpPrefixString允许的IP地址范围,允许所有传0.0.0.0/0
    EnabledBoolean是否启用

    返回参数

    名称类型说明
    ActionString执行的操作
    TaskIdString请求标识
    FirewallRuleIdString防火墙规则标识

    请求示例

    https://api.chinac.com/v2/?Action=CreateFirewallRule
    &Region=cn-wuxi1
    &Name=test1
    &Direction=ingress
    &Protocol=ALL
    &RemoteIpPrefix=10.10.10.1/20
    &<公共请求参数>

    返回示例

    {
    "code": 10000,
    "message": "",
    "data": {
    "TaskId": "bb112c20170506133720502",
    "Action": "CreateFirewallRule",
    "FirewallRuleId":"fr-sdffsdxx"
    }
    }