전체 글

몇 달만 지나도 가물가물해서 만든 곳
서버 스크립트 (iperf-server.bat) 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 @echo off @REM iperf-server @REM launch the iperf server which will wait for the iperf client to connect @REM Updated 2021-04-20 SET PORT=5201 SET FORMAT="m" IF NOT EXIST Lib\iperf3.exe ECHO Unable to find iperf3.exe. Unable to continue & EXIT 1 @REM 서버IP표시 echo ------------------------------------------..
· Windows
윈도우 명령 프롬프트에서 arp -a 실행하면 현재 네트워크 맥어드레스를 가져옵니다. 이 과정을 동일한 프로세스로 구현 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 using System; using System.Collections.Generic; using System.Text.RegularExpressions; namespace ConsoleARP { class Program { static void Main(string[] args) { var pairs = GetMacIpPairs();..
· Windows
https://docs.microsoft.com/en-us/previous-versions/windows/silverlight/dotnet-windows-silverlight/ms613054(v=vs.95) SolidColorBrush.Color Property (System.Windows.Media) Namespace: System.Windows.Media Assembly: System.Windows (in System.Windows.dll) Syntax 'Declaration Public Property Color As Color public Color Color { get; set; } - or - - or - - or - - or - - or - - or - XAML Values predefine..
· Linux/Cloud
설정공유기IP(192.168.1.xxx), 한국만 접근 가능하도록 하는 규칙   체크사항 1. 패키지 설치시 방화벽 재확인    패키지 설치시 방화벽에 규칙이 등록되는 경우가 발생, 해외에서도 접근하기에 패키지 설치후 방화벽 재확인  2. 인증서 등록&재등록시 방화벽 해제   인증서 작업은 해외IP차단시 실패합니다.   잠시 방화벽 해제후 작업  3. 사설IP대역 확인공유기를 사용하는 경우에는 공유기 IP대역만 등록하면 정상적으로 사용 가능하다.하지만 사내 복잡한 네트워크(내부망, 외부망, 무선망)에서 사용한다면 사설IP대역을 지정하기 힘듬예를 들어 공유기 IP 대역 192.168.1.xxx, 남한만 허용했을경우사내 네트워크 무선망(10.124.6.xxx)에서 접근하려고 하면 차단됨이때는 사내 사설IP대..
· Windows
.NET Framework 4.0부터 사용가능 다중쓰레드 안정성 보장 Dictionary보다 속도는 느림 Dictionary와 ConcurrentDictionary 다중 쓰레드 테스트 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.Threading; namespace ConsoleApp1 { public class Program { s..
zosystem
동방노트