Microsoft MVP성태의 닷넷 이야기
글쓴 사람
정성태 (techsharer at outlook.com)
홈페이지
첨부 파일
 
(연관된 글이 1개 있습니다.)
(시리즈 글이 3개 있습니다.)
Windows: 131. 윈도우 10에서 사라진 "Adapters and Bindings" 네트워크 우선 순위 조정 기능
; https://www.sysnet.pe.kr/2/0/11083

Windows: 152. 윈도우 10에서 사라진 "Adapters and Bindings" 네트워크 우선순위 조정 기능 - 두 번째 이야기
; https://www.sysnet.pe.kr/2/0/11782

개발 환경 구성: 505. 윈도우 - (네트워크 어댑터의 우선순위로 인한) 열거되는 IP 주소 순서를 조정하는 방법
; https://www.sysnet.pe.kr/2/0/12304




윈도우 - (네트워크 어댑터의 우선순위로 인한) 열거되는 IP 주소 순서를 조정하는 방법

예를 들어, 다음과 같은 코드를,

using System;
using System.Net.NetworkInformation;
using System.Net.Sockets;

namespace ConsoleApp1
{
    class Program
    {
        static void Main(string[] args)
        {
            foreach (NetworkInterface item in NetworkInterface.GetAllNetworkInterfaces())
            {
                if (item.NetworkInterfaceType == NetworkInterfaceType.Ethernet
                    && item.OperationalStatus == OperationalStatus.Up)
                {
                    foreach (UnicastIPAddressInformation ip in item.GetIPProperties().UnicastAddresses)
                    {
                        if (ip.Address.AddressFamily == AddressFamily.InterNetwork)
                        {
                            Console.WriteLine(ip.Address.ToString());
                        }
                    }
                }
            }
        }
    }
}

실행하면 이렇게 출력이 되는 시스템을 가정해보겠습니다.

C:\test> ConsoleApp1.exe
172.26.48.6
192.168.0.167

저 순서는 ipconfig을 했을 때와 동일합니다.

PS C:\WINDOWS\system32> ipconfig

Windows IP Configuration

Ethernet adapter Ethernet 4:

   Connection-specific DNS Suffix  . :
   Link-local IPv6 Address . . . . . : fe80::8162:af6a:2f6c:ec60%13
   IPv4 Address. . . . . . . . . . . : 172.26.48.6
   Subnet Mask . . . . . . . . . . . : 255.255.240.0
   Default Gateway . . . . . . . . . :

Ethernet adapter Ethernet 5:

   Connection-specific DNS Suffix  . :
   Link-local IPv6 Address . . . . . : fe80::b5d3:1eaa:1fd3:6197%12
   IPv4 Address. . . . . . . . . . . : 192.168.0.167
   Subnet Mask . . . . . . . . . . . : 255.255.255.0
   Default Gateway . . . . . . . . . : 192.168.0.1

PS C:\WINDOWS\system32>  Get-NetIPInterface | where {$_.ConnectionState -eq "Connected" -and $_.AddressFamily -eq "IPv4" } | select ifIndex,InterfaceAlias,InterfaceMetric,AddressFamily,ConnectionState | sort InterfaceMetric | FT

ifIndex InterfaceAlias              InterfaceMetric AddressFamily ConnectionState
------- --------------              --------------- ------------- ---------------
     13 Ethernet 4                               15          IPv4       Connected
     12 Ethernet 5                               35          IPv4       Connected
      1 Loopback Pseudo-Interface 1              75          IPv4       Connected

이 순서를 바꾸는 방법은 전에 한 번 설명한 적이 있습니다. ^^

윈도우 10에서 사라진 "Adapters and Bindings" 네트워크 우선순위 조정 기능 - 두 번째 이야기
; https://www.sysnet.pe.kr/2/0/11782

위의 글에서 설명했지만, 결국 중요한 것은 ROUTE 테이블에서 보이는 Metric 수치가 낮아야 우선 순위가 높으므로, 차이가 얼마나 나는지 확인을 해야 합니다.

C:\WINDOWS\system32> route PRINT -4
===========================================================================
Interface List
 12...00 15 5d 00 13 33 ......Microsoft Hyper-V Network Adapter #5
 13...00 15 5d 00 13 34 ......Microsoft Hyper-V Network Adapter #4
  1...........................Software Loopback Interface 1
===========================================================================

IPv4 Route Table
===========================================================================
Active Routes:
Network Destination        Netmask          Gateway       Interface  Metric
          0.0.0.0          0.0.0.0      192.168.0.1    192.168.0.167     35
        127.0.0.0        255.0.0.0         On-link         127.0.0.1    331
        127.0.0.1  255.255.255.255         On-link         127.0.0.1    331
  127.255.255.255  255.255.255.255         On-link         127.0.0.1    331
      172.26.48.0    255.255.240.0         On-link       172.26.48.6    271
      172.26.48.6  255.255.255.255         On-link       172.26.48.6    271
    172.26.63.255  255.255.255.255         On-link       172.26.48.6    271
      192.168.0.0    255.255.255.0         On-link     192.168.0.167    291
    192.168.0.167  255.255.255.255         On-link     192.168.0.167    291
    192.168.0.255  255.255.255.255         On-link     192.168.0.167    291
        224.0.0.0        240.0.0.0         On-link         127.0.0.1    331
        224.0.0.0        240.0.0.0         On-link     192.168.0.167    291
        224.0.0.0        240.0.0.0         On-link       172.26.48.6    271
  255.255.255.255  255.255.255.255         On-link         127.0.0.1    331
  255.255.255.255  255.255.255.255         On-link     192.168.0.167    291
  255.255.255.255  255.255.255.255         On-link       172.26.48.6    271
===========================================================================
Persistent Routes:
  None

172.26.48.0 네트워크의 Metric이 271, 192.168.0.0 네트워크가 291이므로 20의 차이가 납니다. 따라서 172.26.48.0 네트워크의 InterfaceMetric 값을 +21 이상으로 설정해 준다면 192.168.0.0 네트워크의 우선 순위가 더 높아질 수 있습니다. 기존 값이 "15"니까, (보기 좋게 ^^;) 5 단위로 떨어지게 +25를 해 "40"으로 설정한 후,

PS C:\WINDOWS\system32> Set-NetIPInterface -InterfaceIndex 13 -InterfaceMetric 40

PS C:\WINDOWS\system32> Get-NetIPInterface | where {$_.ConnectionState -eq "Connected" -and $_.AddressFamily -eq "IPv4" } | select ifIndex,InterfaceAlias,InterfaceMetric,AddressFamily,ConnectionState | sort InterfaceMetric | FT

ifIndex InterfaceAlias              InterfaceMetric AddressFamily ConnectionState
------- --------------              --------------- ------------- ---------------
     12 Ethernet 5                               35          IPv4       Connected
     13 Ethernet 4                               40          IPv4       Connected
      1 Loopback Pseudo-Interface 1              75          IPv4       Connected

ROUTE 테이블을 확인하면,

C:\WINDOWS\system32> route PRINT -4
===========================================================================
Interface List
 12...00 15 5d 00 13 33 ......Microsoft Hyper-V Network Adapter #5
 13...00 15 5d 00 13 34 ......Microsoft Hyper-V Network Adapter #4
  1...........................Software Loopback Interface 1
===========================================================================

IPv4 Route Table
===========================================================================
Active Routes:
Network Destination        Netmask          Gateway       Interface  Metric
          0.0.0.0          0.0.0.0      192.168.0.1    192.168.0.167     35
        127.0.0.0        255.0.0.0         On-link         127.0.0.1    331
        127.0.0.1  255.255.255.255         On-link         127.0.0.1    331
  127.255.255.255  255.255.255.255         On-link         127.0.0.1    331
      172.26.48.0    255.255.240.0         On-link       172.26.48.6    296
      172.26.48.6  255.255.255.255         On-link       172.26.48.6    296
    172.26.63.255  255.255.255.255         On-link       172.26.48.6    296
      192.168.0.0    255.255.255.0         On-link     192.168.0.167    291
    192.168.0.167  255.255.255.255         On-link     192.168.0.167    291
    192.168.0.255  255.255.255.255         On-link     192.168.0.167    291
        224.0.0.0        240.0.0.0         On-link         127.0.0.1    331
        224.0.0.0        240.0.0.0         On-link     192.168.0.167    291
        224.0.0.0        240.0.0.0         On-link       172.26.48.6    296
  255.255.255.255  255.255.255.255         On-link         127.0.0.1    331
  255.255.255.255  255.255.255.255         On-link     192.168.0.167    291
  255.255.255.255  255.255.255.255         On-link       172.26.48.6    296
===========================================================================
Persistent Routes:
  None

정상적으로 우선 순위에 변동이 생겼으니, 이제 우리의 C# 프로그램에서도 IP 순서가 바뀌어서 나오게 됩니다.

C:\test> ConsoleApp1.exe
192.168.0.167
172.26.48.6




[이 글에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.]

[연관 글]






[최초 등록일: ]
[최종 수정일: 5/9/2023]

Creative Commons License
이 저작물은 크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이센스에 따라 이용하실 수 있습니다.
by SeongTae Jeong, mailto:techsharer at outlook.com

비밀번호

댓글 작성자
 




1  2  3  [4]  5  6  7  8  9  10  11  12  13  14  15  ...
NoWriterDateCnt.TitleFile(s)
13525정성태1/13/20242012오류 유형: 891. Visual Studio - Web Application을 실행하지 못하는 IISExpress
13524정성태1/12/20242063오류 유형: 890. 한국투자증권 KIS Developers OpenAPI - GW라우팅 중 오류가 발생했습니다.
13523정성태1/12/20241887오류 유형: 889. Visual Studio - error : A project with that name is already opened in the solution.
13522정성태1/11/20242024닷넷: 2200. C# - HttpClient.PostAsJsonAsync 호출 시 "Transfer-Encoding: chunked" 대신 "Content-Length" 헤더 처리
13521정성태1/11/20242101닷넷: 2199. C# - 한국투자증권 KIS Developers OpenAPI의 WebSocket Ping, Pong 처리
13520정성태1/10/20241858오류 유형: 888. C# - Unable to resolve service for type 'Microsoft.Extensions.ObjectPool.ObjectPool`....'
13519정성태1/10/20241936닷넷: 2198. C# - Reflection을 이용한 ClientWebSocket의 Ping 호출파일 다운로드1
13518정성태1/9/20242168닷넷: 2197. C# - ClientWebSocket의 Ping, Pong 처리
13517정성태1/8/20242014스크립트: 63. Python - 공개 패키지를 이용한 위성 이미지 생성 (pystac_client, odc.stac)
13516정성태1/7/20242102닷넷: 2196. IIS - AppPool의 "Disable Overlapped Recycle" 옵션의 부작용
13515정성태1/6/20242374닷넷: 2195. async 메서드 내에서 C# 7의 discard 구문 활용 사례 [1]
13514정성태1/5/20242064개발 환경 구성: 702. IIS - AppPool의 "Disable Overlapped Recycle" 옵션
13513정성태1/5/20242003닷넷: 2194. C# - WebActivatorEx / System.Web의 PreApplicationStartMethod 특성
13512정성태1/4/20241978개발 환경 구성: 701. IIS - w3wp.exe 프로세스의 ASP.NET 런타임을 항상 Warmup 모드로 유지하는 preload Enabled 설정
13511정성태1/4/20241995닷넷: 2193. C# - ASP.NET Web Application + OpenAPI(Swashbuckle) 스펙 제공
13510정성태1/3/20241933닷넷: 2192. C# - 특정 실행 파일이 있는지 확인하는 방법 (Linux)
13509정성태1/3/20241966오류 유형: 887. .NET Core 2 이하의 프로젝트에서 System.Runtime.CompilerServices.Unsafe doesn't support netcoreapp2.0.
13508정성태1/3/20242012오류 유형: 886. ORA-28000: the account is locked
13507정성태1/2/20242694닷넷: 2191. C# - IPGlobalProperties를 이용해 netstat처럼 사용 중인 Socket 목록 구하는 방법파일 다운로드1
13506정성태12/29/20232187닷넷: 2190. C# - 닷넷 코어/5+에서 달라지는 System.Text.Encoding 지원
13505정성태12/27/20232694닷넷: 2189. C# - WebSocket 클라이언트를 닷넷으로 구현하는 예제 (System.Net.WebSockets)파일 다운로드1
13504정성태12/27/20232315닷넷: 2188. C# - ASP.NET Core SignalR로 구현하는 채팅 서비스 예제파일 다운로드1
13503정성태12/27/20232186Linux: 67. WSL 환경 + mlocate(locate) 도구의 /mnt 디렉터리 검색 문제
13502정성태12/26/20232287닷넷: 2187. C# - 다른 프로세스의 환경변수 읽는 예제파일 다운로드1
13501정성태12/25/20232086개발 환경 구성: 700. WSL + uwsgi - IPv6로 바인딩하는 방법
13500정성태12/24/20232175디버깅 기술: 194. Windbg - x64 가상 주소를 물리 주소로 변환
1  2  3  [4]  5  6  7  8  9  10  11  12  13  14  15  ...