0

提供裸机服务器:

使用下面提到的博客,我可以按小时提供裸机服务器。

http://sldn.softlayer.com/blog/bpotter/ordering-bare-metal-servers-using-softlayer-api

但我无法在请求对象中设置 VLAN 详细信息。如果我在有效负载中传递 VLAN 详细信息,则会收到以下错误消息:

"error":"VLANs may not be specified for Bare Metal Server configurations.","code":"SoftLayer_Exception_Public"}.

另外我想知道我是否可以将私有网络标志设置为真?

4

1 回答 1

0

很高兴看到您的有效负载,但 VLAN 的配置在这里http://sldn.softlayer.com/reference/services/SoftLayer_Hardware/createObject

你的有效载荷应该是这样的:

hw = {
    'datacenter': {'name': 'tor01'},
    'hostname': 'simplebmi',
    'domain': 'test.com',
    'hourlyBillingFlag': True,
    'fixedConfigurationPreset': {'keyName': 'S1270_8GB_2X1TBSATA_NORAID'},
    'networkComponents': [{
        'maxSpeed': 1000,
    }],
    'operatingSystemReferenceCode': 'UBUNTU_14_64',
     "primaryNetworkComponent": { 
        "networkVlan": { 
            "id": 52123
        } 
    }, 
   "primaryBackendNetworkComponent": { 
        "networkVlan": { 
            "id": 2 
        } 
    } 
}

是的,您可以设置专用网络,只需将其添加到有效负载中:

"privateNetworkOnlyFlag": true

问候

于 2016-02-11T12:35:53.383 回答