Azure 게이트웨이 서브넷에 대한 주소 공간 계산기
다른 네트워크에 연결된 Azure 인프라 서비스의 VNet(가상 네트워크)에는 게이트웨이 서브넷이 있어야 합니다. 게이트웨이 서브넷을 정의하는 모범 사례는 다음과 같습니다.
- 게이트웨이 서브넷의 접두사 길이는 최대 접두사 길이가 29(예: 10.119.255.248/29)일 수 있지만 현재 권장 사항은 접두사 길이가 27(예: 10.119.255.224/27)인 경우입니다.
- 게이트웨이 서브넷의 주소 공간을 정의할 때 VNet 주소 공간의 마지막 부분을 사용합니다.
두 번째 권장 사항의 경우 게이트웨이 서브넷에 사용되는 비트를 0으로 설정하고 VNet 주소 공간의 나머지 비트를 1로 설정하여 게이트웨이 서브넷의 주소 공간을 결정할 수 있습니다. 이진으로 변환하지 않고도 게이트웨이 서브넷 주소 공간을 빠르게 계산하고 10진수로 되돌리려면 C# 또는 Python으로 작성된 콘솔 애플리케이션 또는 PowerShell 명령 블록과 함께 사용할 수 있습니다.
이 문서에는 VNet 주소 접두사 및 게이트웨이 서브넷 접두사 길이에 대한 w.x.y.z/n 값을 기반으로 게이트웨이 서브넷 주소 공간을 계산하는 C#, Python 및 PowerShell 코드 블록이 포함되어 있습니다.
C# 코드 블록
이 코드 블록을 사용하여 C#에서 콘솔 앱을 만듭니다.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
// Declare variables.
const long wOctet = 16777216;
const long xOctet = 65536;
const long yOctet = 256;
double D;
int w, x, y, z, vnetPrefLen, gwPrefLen;
long d, w2, x2, y2, z2;
// Get the five values needed from the keyboard.
Console.WriteLine("**************************************************************************");
Console.WriteLine("*** Gateway subnet address space calculator for Azure virtual networks ***");
Console.WriteLine("**************************************************************************");
Console.WriteLine();
Console.WriteLine("Please supply your virtual network address space in the form of w.x.y.z/n.");
Console.WriteLine();
Console.WriteLine("w=");
w = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("x=");
x = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("y=");
y = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("z=");
z = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("n=");
vnetPrefLen = Convert.ToInt32(Console.ReadLine());
Console.WriteLine();
Console.WriteLine("Now supply the prefix length of your gateway subnet:");
gwPrefLen = Convert.ToInt32(Console.ReadLine());
Console.WriteLine();
// Perform the calculation.
D = w * wOctet + x * xOctet + y * yOctet + z;
for (int i = vnetPrefLen + 1; i < gwPrefLen + 1; i++)
{
D = D + Math.Pow(2, 32 - i);
}
d = Convert.ToInt64(D);
w2 = d / wOctet;
x2 = (d - w2 * wOctet) / xOctet;
y2 = (d - w2 * wOctet - x2 * xOctet) / yOctet;
z2 = d - w2 * wOctet - x2 * xOctet - y2 * yOctet;
// Display the result.
Console.WriteLine("**************************************************************************");
Console.WriteLine("For the Azure virtual address space {0}.{1}.{2}.{3}/{4}", w, x, y, z, vnetPrefLen);
Console.WriteLine("and gateway prefix length of {0}, the gateway subnet address space is:", gwPrefLen);
Console.WriteLine();
Console.WriteLine("{0}.{1}.{2}.{3}/{4}", w2, x2, y2, z2, gwPrefLen);
Console.WriteLine();
Console.WriteLine("Press ENTER to quit.");
Console.ReadLine();
}
}
}
Python 코드 블록
이 코드 블록을 사용하여 Python에서 콘솔 앱을 만듭니다.
import math
# Collect the values of w.x.y.z/n for your VNet address space and g, the prefix length of your gateway subnet
print("**************************************************************************")
print("*** Gateway subnet address space calculator for Azure virtual networks ***")
print("**************************************************************************\n")
print("Please supply your virtual network address space in the form of w.x.y.z/n.");
w=int(input("w = "))
x=int(input("x = "))
y=int(input("y = "))
z=int(input("z = "))
n=int(input("n = "))
print("")
g=int(input("Now supply the prefix length of your gateway subnet: "))
print("")
# Calculate
wOctet = 16777216
xOctet = 65536
yOctet = 256
D = w * wOctet + x * xOctet + y * yOctet + z
for index in range(n + 1,g + 1):
D += 2**(32 - index)
w2 = math.floor(D / wOctet)
x2 = math.floor((D - w2 * wOctet) / xOctet)
y2 = math.floor((D - w2 * wOctet - x2 * xOctet) / yOctet)
z2 = D - w2 * wOctet - x2 * xOctet - y2 * yOctet
# Display the result
gwAddrPref= "Your gateway address prefix is: " + str(w2) + "." + str(x2) + "." + str(y2) + "." + str(z2) + "/" + str(g)
print(gwAddrPref)
PowerShell 명령 블록
값을 입력하고 PowerShell 창 또는 POWERShell ISE(통합 스크립트 환경)에서 결과 명령 블록을 실행합니다.
# Specify the values of w.x.y.z/n for your VNet address space and g, the prefix length of your gateway subnet:
$w=
$x=
$y=
$z=
$n=
$g=
# Calculate
$wOctet = 16777216
$xOctet = 65536
$yOctet = 256
[long]$D = $w * $wOctet + $x * $xOctet + $y * $yOctet + $z;
for ($i = $n + 1; $i -lt $g + 1; $i++)
{
$D = $D + [math]::pow(2, 32 - $i)
}
$w2 = [math]::floor($D / $wOctet)
$x2 = [math]::floor( ($D - $w2 * $wOctet) / $xOctet )
$y2 = [math]::floor( ($D - $w2 * $wOctet - $x2 * $xOctet) / $yOctet )
$z2 = $D - $w2 * $wOctet - $x2 * $xOctet - $y2 * $yOctet
# Display the result
$dx= [string]$w2 + "." + [string]$x2 + "." + [string]$y2 + "." + [string]$z2 + "/" + [string]$g
Write-Host "Your gateway address prefix is: " $dx