Microsoft MVP성태의 닷넷 이야기
.NET Framework: 942. C# - WOL(Wake On Lan) 구현 [링크 복사], [링크+제목 복사]
조회: 12700
글쓴 사람
정성태 (techsharer at outlook.com)
홈페이지
첨부 파일
 

C# - WOL(Wake On Lan) 구현

예전에 구현했던,

라즈베리 파이를 이용해 원격 컴퓨터의 전원 스위치 제어
; https://www.sysnet.pe.kr/2/0/11726

Synology NAS(DS216+II)에 FTDI 장치 연결 후 C#(.NET Core)으로 DTR 제어
; https://www.sysnet.pe.kr/2/0/11734

전원 스위치를 이용해 원격으로 잘 제어하던 PC를 교체했더니,

2020년 작업 PC ^^
; https://www.sysnet.pe.kr/0/0/522

다시 저 피복 벗기고 하는 식의 작업을 새 PC에 하는 것이 귀찮아졌습니다. 그래도 꽤 괜찮게 써먹었던 기능이라서 없으면 무척 아쉬울 것 같아 차선책으로 WoL(Wake on Lan) 기능으로 넘어갔는데요, 검색해 보면 아래의 글이 꽤 적절하게 잘 설명하고 있기 때문에,

Wake On Lan(WOL) : 원격으로 컴퓨터 켜기 설정 및 사용
; https://neoray.org/281

자세한 것은 넘어가고, 곧바로 소스 코드 구현을 보겠습니다. 검색해 보면 아주 많은 소스 코드를 볼 수 있지만, 사실 프로토콜 자체가 매우 쉬우므로 아래와 같이 간단하게 구현할 수 있습니다.

using System;
using System.Collections.Generic;
using System.Globalization;
using System.IO;
using System.Net;
using System.Net.NetworkInformation;
using System.Net.Sockets;
using System.Text.RegularExpressions;

namespace wol
{
    class Program
    {
        const int WOL_PACKET_LEN = 102;

        // Wake-on-Lan (WoL) in C#
        // https://www.fluxbytes.com/csharp/wake-lan-wol-c/
        static void Main(string[] args)
        {
            byte[] wolBuffer = GetWolPacket(args[0]);

            UdpClient udp = new UdpClient();
            udp.EnableBroadcast = true;

            IPAddress ipAddress = IPAddress.Parse("255.255.255.255");
            udp.Send(wolBuffer, wolBuffer.Length, ipAddress.ToString(), 7);
            udp.Send(wolBuffer, wolBuffer.Length, ipAddress.ToString(), 9);
        }

        private static byte[] GetWolPacket(string macAddress)
        {
            byte[] datagram = new byte[WOL_PACKET_LEN];

            byte[] macBuffer = StringToBytes(macAddress);

            MemoryStream ms = new MemoryStream(datagram);
            BinaryWriter bw = new BinaryWriter(ms);

            // 6바이트의 0xff를 선두에 채우고,
            for (int i = 0; i < 6; i++)
            {
                bw.Write((byte)0xff);
            }

            // 이후 WoL로 깨울 PC가 소유한 Network Adapter의 MAC 주소를 16번 반복
            for (int i = 0; i < 16; i++)
            {
                bw.Write(macBuffer, 0, macBuffer.Length);
            }

            return datagram;
        }

        private static byte[] StringToBytes(string macAddress)
        {
            macAddress = Regex.Replace(macAddress, "[-|:]", ""); // Remove any semicolons or minus characters present in our MAC address
            byte[] buffer = new byte[macAddress.Length / 2];

            for (int i = 0; i < macAddress.Length; i += 2)
            {
                string digit = macAddress.Substring(i, 2);
                buffer[i / 2] = byte.Parse(digit, NumberStyles.HexNumber);
            }

            return buffer;
        }
    }
}

여기서 재미있는 것은 Port인데요, 여러 소스 코드들을 보면 0번, 3번, 7번, 9번 등을 사용해 다소 혼란스러울 수 있는데 아래의 문서를 보면,

Wake-on-LAN
; https://en.wikipedia.org/wiki/Wake-on-LAN#Magic_packet

although it is typically sent as a UDP datagram to port 0, 7 or 9, or directly over Ethernet as EtherType 0x0842.

The internet with local broadcasting - some routers permit a packet received from the internet to be broadcast to the entire LAN [26]; the default TCP or UDP ports preconfigured to relay WOL requests are usually ports 7 (Echo Protocol) and/or 9 (Discard Protocol). This proxy setting must be enabled in the router, and port forwarding rules may need to be configured in its embedded firewall in order to accept magic packets coming from the internet side to these restricted port numbers, and to allow rebroadcasting them on the local network (normally to the same ports and the same TCP or UDP protocol). Such routers may also be configurable to use different port numbers for this proxying service.


Router의 영향을 고려해 7번 또는 9번을 사용하는 것이 좋아 보입니다. (이 글의 소스 코드에서는 2개 모두 사용했습니다.) 또한, 255.255.255.255 자체의 Broadcasting에 대한 제약을 따져 봤을 때,

UDP 브로드캐스트 주소 255.255.255.255와 192.168.0.255의 차이점과 이를 고려한 C# UDP 서버/클라이언트 예제
; https://www.sysnet.pe.kr/2/0/11368

모든 어댑터를 통해 보낼 수 있도록 Send 부분을 다음과 같이 변경해 주면 더 좋을 것입니다.

foreach (IPAddress ipAddress in GetDirectedBroadcastAddresses())
{
    udp.Send(wolBuffer, wolBuffer.Length, ipAddress.ToString(), port);
}

private static IPAddress[] GetDirectedBroadcastAddresses()
{
    List<IPAddress> list = new List<IPAddress>();

    foreach (NetworkInterface item in NetworkInterface.GetAllNetworkInterfaces())
    {
        if (item.NetworkInterfaceType == NetworkInterfaceType.Loopback)
        {
            continue;
        }

        if (item.OperationalStatus != OperationalStatus.Up)
        {
            continue;
        }

        UnicastIPAddressInformationCollection unicasts = item.GetIPProperties().UnicastAddresses;

        foreach (UnicastIPAddressInformation unicast in unicasts)
        {
            IPAddress ipAddress = unicast.Address;

            if (ipAddress.AddressFamily != AddressFamily.InterNetwork)
            {
                continue;
            }

            byte[] addressBytes = ipAddress.GetAddressBytes();
            byte[] subnetBytes = unicast.IPv4Mask.GetAddressBytes();

            if (addressBytes.Length != subnetBytes.Length)
            {
                continue;
            }

            byte[] broadcastAddress = new byte[addressBytes.Length];
            for (int i = 0; i < broadcastAddress.Length; i++)
            {
                broadcastAddress[i] = (byte)(addressBytes[i] | (subnetBytes[i] ^ 255));
            }

            list.Add(new IPAddress(broadcastAddress));
        }
    }

    return list.ToArray();
}

Github에도 소스 코드 및 빌드된 바이너리를 올려두었습니다.

stjeong / Utilities / wol
; https://github.com/stjeong/Utilities/tree/master/wol

Utilities.zip - wol.exe
; https://github.com/stjeong/Utilities/releases/

참고로, 컴퓨터를 끄는 것은 "작업 스케줄러"에 "shutdown /h" 명령어를 원하는 시간에 실행하도록 등록하면 됩니다.




직접 실습을 해보니까, 제가 테스트한 4대의 컴퓨터 중에 구형 컴퓨터 2대(각각 11년, 8년)는 BIOS 설정과 윈도우의 Adapter 속성창에서 WoL 관련 설정을 했지만 동작하지 않았습니다. 반면 4년 된 컴퓨터와 새로 구매한 컴퓨터는 정상 동작했습니다. (그러고 보니, 저 4대의 컴퓨터가 모두 ASUS 보드군요. ^^)




검색하다가 낚인 것이 있어 ^^ 공유해 봅니다. 아래의 글에 대한 제목만 보면 Hyper-V의 가상 머신(VM)을 WoL 방식으로 깨우는 호스트 측의 기능이 있을 것 같은데요,

Wake on LAN for Hyper-V Guests
; https://deploymentpros.wordpress.com/2016/11/28/wake-on-lan-for-hyper-v-guests/

PowerShell Script (psHyper-V_WoL.ps1)
; https://gallery.technet.microsoft.com/scriptcenter/Wake-on-LAN-for-Hyper-V-21578819

실상은 Hyper-V 호스트가 VM에 대한 WoL을 지원하는 것은 아닙니다. 단지, 위의 스크립트가 UDP 소켓을 만들어 Receive로 대기하고 있다가 VM이 소유한 네트워크 어댑터의 WoL 신호가 들어오면 Start-VM 명령어를 이용하는 역할을 하는 것입니다.




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







[최초 등록일: ]
[최종 수정일: 7/9/2021]

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)
13599정성태4/17/2024243닷넷: 2241. C# - WAV 파일의 PCM 사운드 재생(Windows Multimedia)파일 다운로드1
13598정성태4/16/2024259닷넷: 2240. C# - WAV 파일 포맷 + LIST 헤더파일 다운로드1
13597정성태4/15/2024328닷넷: 2239. C# - WAV 파일의 PCM 데이터 생성 및 출력파일 다운로드1
13596정성태4/14/2024613닷넷: 2238. C# - WAV 기본 파일 포맷파일 다운로드1
13595정성태4/13/2024735닷넷: 2237. C# - Audio 장치 열기 (Windows Multimedia, NAudio)파일 다운로드1
13594정성태4/12/2024950닷넷: 2236. C# - Audio 장치 열람 (Windows Multimedia, NAudio)파일 다운로드1
13593정성태4/8/20241027닷넷: 2235. MSBuild - AccelerateBuildsInVisualStudio 옵션
13592정성태4/2/20241201C/C++: 165. CLion으로 만든 Rust Win32 DLL을 C#과 연동
13591정성태4/2/20241162닷넷: 2234. C# - WPF 응용 프로그램에 Blazor App 통합파일 다운로드1
13590정성태3/31/20241071Linux: 70. Python - uwsgi 응용 프로그램이 k8s 환경에서 OOM 발생하는 문제
13589정성태3/29/20241138닷넷: 2233. C# - 프로세스 CPU 사용량을 나타내는 성능 카운터와 Win32 API파일 다운로드1
13588정성태3/28/20241191닷넷: 2232. C# - Unity + 닷넷 App(WinForms/WPF) 간의 Named Pipe 통신파일 다운로드1
13587정성태3/27/20241147오류 유형: 900. Windows Update 오류 - 8024402C, 80070643
13586정성태3/27/20241288Windows: 263. Windows - 복구 파티션(Recovery Partition) 용량을 늘리는 방법
13585정성태3/26/20241092Windows: 262. PerformanceCounter의 InstanceName에 pid를 추가한 "Process V2"
13584정성태3/26/20241046개발 환경 구성: 708. Unity3D - C# Windows Forms / WPF Application에 통합하는 방법파일 다운로드1
13583정성태3/25/20241147Windows: 261. CPU Utilization이 100% 넘는 경우를 성능 카운터로 확인하는 방법
13582정성태3/19/20241221Windows: 260. CPU 사용률을 나타내는 2가지 수치 - 사용량(Usage)과 활용률(Utilization)파일 다운로드1
13581정성태3/18/20241568개발 환경 구성: 707. 빌드한 Unity3D 프로그램을 C++ Windows Application에 통합하는 방법
13580정성태3/15/20241135닷넷: 2231. C# - ReceiveTimeout, SendTimeout이 적용되지 않는 Socket await 비동기 호출파일 다운로드1
13579정성태3/13/20241493오류 유형: 899. HTTP Error 500.32 - ANCM Failed to Load dll
13578정성태3/11/20241626닷넷: 2230. C# - 덮어쓰기 가능한 환형 큐 (Circular queue)파일 다운로드1
13577정성태3/9/20241861닷넷: 2229. C# - 닷넷을 위한 난독화 도구 소개 (예: ConfuserEx)
13576정성태3/8/20241540닷넷: 2228. .NET Profiler - IMetaDataEmit2::DefineMethodSpec 사용법
13575정성태3/7/20241674닷넷: 2227. 최신 C# 문법을 .NET Framework 프로젝트에 쓸 수 있을까요?
[1]  2  3  4  5  6  7  8  9  10  11  12  13  14  15  ...