简体   繁体   English

POD与VLAN之间的关系

[英]Relationships between PODs and VLANs and re

I am looking to confirm if the vlanNumber is unique to a specific POD? 我想确认vlanNumber对于特定POD是否唯一? My assumption is that I could have a vlanNumber 802 in wdc01.pod5a and another VLAN with the same number in potentially wdc01.pod1a. 我的假设是,在wdc01.pod5a中可以有一个vlanNumber 802,而在潜在的wdc01.pod1a中可以有另一个具有相同编号的VLAN。 Is that correct? 那是对的吗?

I am trying to figure out what the relationship between PODs and VLANs; 我试图弄清楚POD和VLAN之间的关系。 what is the best API calls to get the list of VLANs in a specific POD. 获取特定POD中的VLAN列表的最佳API调用是什么? Right now it seems that I can only map VLAN -> SUBNET to POD and not VLAN to POD directly. 现在看来,我只能将VLAN-> SUBNET映射到POD,而不能将VLAN直接映射到POD。 What would you suggest? 你有什么建议?

the numbers are unique. 这些数字是唯一的。 Use this RESTFul rquest: 使用以下RESTFul请求:

GET https://$USERID:$APIKEY@api.softlayer.com/rest/v3.1/SoftLayer_Account/getNetworkVlans?objectMask=mask[id,vlanNumber,primaryRouter[id,hostname,datacenter]]

note: Replace $USERID and $APIKEY

The request aboce will return all the VLANs in your account the POD they belong and their location 再次请求将返回您帐户中所有VLAN所属的POD及其位置

The VLANs are unique to a POD, but more specifically to the POD public or private network. VLAN对于POD是唯一的,但更具体地说,对于POD公共或专用网络而言。

You can have two VLAN 802 in a POD... one on the public network and one on the private network. POD中可以有两个VLAN 802 ...一个在公共网络上,一个在私有网络上。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM