3
5

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.

Azure 勉強メモ (Azure VNet)

Posted at

1. VNetを利用する理由

  • 安全な通信
    • Azureリソース~インターネット間
      • VNet -> Internet: デフォルトで可能
      • VNet < Internet: パブリックIP, パブリックロードバランサーを利用した場合に可能
    • Azureリソース~Azureリソース間
      • 同一VNet内
      • 2つの異なるVNet内: VNetピアリング
      • VNetリソース〜非VNetリソース: VNetエンドポイント
        • private endpoint (AWSでいうところのinterface型)
        • service endpoint (AWSでいうところのgateway型)
    • Azureリソース~オンプレミス間
      • S2S/P2S VPN
      • ExpressRoute
  • ネットワークトラフィックのフィルタリング
    • ネットワーク(NSG)
    • アプリケーション(ASG)
  • ネットワークトラフィックのルーティング
    • サブネット作成時にルートテーブル
    • カスタムルートでオーバーライド可能

vnet_overview.png

2. VNet内のリソースにアクセスする方法

2.1. VMにSSH/RDPしたい

  • Azure Portal経由からBastionを使う

vnet_topology_1.png

2.2. オンプレから 直接 VNet内のリソースにアクセスする

2.2.1. VNetが1つだけの場合

  • オンプレと対象VNetをS2S/P2S VPN(or ExpressRoute)で接続する
    • オンプレのクライアントから、インターネットを経由せずにVNet内のサーバにアクセスしたいケースを想定
      • e.g. DBクライアントの操作, インターネットを経由したくないwebアプリ
    • オンプレから直接アクセスする必要がない場合、VNet内に踏み台WindowsとなるVMを作成して、その踏み台に対して先述のBastion経由でアクセスする方法がある

vnet_topology_2.png

2.2.2. VNetが複数で、ハブスポーク構成をとる場合

  • オンプレとVNet(Hub)をS2S/P2S VPN(or ExpressRoute)で接続する
  • VNet(Hub)とVNet(Spoke)をピアリングで接続する
  • ピアリングのゲートウェイ転送を有効にする

vnet_topology_3.png

参考資料

3
5
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
3
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?