1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Power Systems Virtual Server on IBM Cloud (AIX) で VLAN が正しく構成されているか確認する(ibmcloudコマンド版)

Last updated at Posted at 2020-03-09

#1. はじめに
Power Systems Virutal ServerでのVLAN構成を確認するために、Power Systems Virtual Server on IBM Cloud (AIX) で VLAN が正しく構成されているか確認するという記事が紹介されていますが、その記事ではREST APIが利用されています。本記事では代わりに、ibmcloudコマンドで実施する方法を紹介します。

2020/06/12追記
現在は、システム側で設定されているVLAN番号がCustomer Portalから確認できるようになったため、#2および#3の作業は不要になりました。いきなり#4を実施することで、Customer Portalでの結果と、実機との比較を直接行うことが可能です。
image.png

#2. 事前準備

Power Systems Virtual Server用Pluginの導入しておきます。

PowerSystemsVirtualServer用Pluginの導入と更新
# ibmcloud update
# ibmcloud plugin install power-iaas
(最新バージョンへの更新が必要な場合)
# ibmcloud plugin update

#3. ibmcloud piの実施
Power Systems Virtual Serverは、ibmcloud piで実行します。

リージョンの選択
# ibmcloud target -r us-south
ターゲットサービスの列挙
# ibmcloud pi service-list
Listing services under account IBM as user xxxxxx in region us-south...
ID                                                                                                                    Name
crn:v1:bluemix:public:power-iaas:us-south:a/039dbe6794084c7cb514a276dd2345da:01595fe7-55ac-42b9-ad3e-44a58a846a8e::   Power Systems Virtual Server-tmgw
crn:v1:bluemix:public:power-iaas:us-south:a/039dbe6794084c7cb514a276dd2345da:6fd0e16f-4be8-4236-88f7-1dcb0f0ff750::   Power Systems Virtual Server-demo
ターゲットサービスの選択
# ibmcloud pi service-target crn:v1:bluemix:public:power-iaas:us-south:a/039dbe6794084c7cb514a276dd2345da:01595fe7-55ac-42b9-ad3e-44a58a846a8e::
ネットワーク一覧
# ibmcloud pi networks
Listing networks under account IBM as user xxxxxx...
ID                                     Name                                 Address
2ac53d0e-5eda-49dc-b434-1c66dbb76ecf   public-192_168_130_88-29-VLAN_2071   /pcloud/v1/cloud-instances/a9bb79554562403f9453353e45d6d8a9/networks/2ac53d0e-5eda-49dc-b434-1c66dbb76ecf
e045a93e-0cfe-4f4e-ab30-3157ecfd0e0f   subnet-web                           /pcloud/v1/cloud-instances/a9bb79554562403f9453353e45d6d8a9/networks/e045a93e-0cfe-4f4e-ab30-3157ecfd0e0f
ネットワーク詳細
# ibmcloud pi network subnet-web
Getting Network subnet-web under account IBM as user xxxxxx...

ID           e045a93e-0cfe-4f4e-ab30-3157ecfd0e0f
Name         subnet-web
Type         vlan
VLAN         234
CIDR Block   192.168.100.0/24
IP Range     [192.168.100.3  192.168.100.254]
Gateway      192.168.100.2
DNS          8.8.8.8

#4. AIX側での確認

AIXでのVLAN構成
# entstat -d ent1 | grep VLAN
Invalid VLAN ID Packets: 0
Port VLAN ID:   234
VLAN Tag IDs:  None
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?