본문 바로가기

Programming318

[RTSP] TCPClient를 이용하여 OPTIONS 요청 결과 받기 RTP 패킷에 대한 구조나 개념에 대한 학습 방법을 찾아 보고 있습니다. TCP 전문을 전송하여 OPTIONS 응답에 대한 결과를 받아 보는 테스트를 진행 하였습니다. using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Net; using System.Net.Sockets; namespace BlockingSocketTest { class Program { static void Main(string[] args) { TcpClient client = new TcpClient(new IPEndPoint(IPAddress.Parse("192.168.14.15"),0)); // RTSP.. 2022. 3. 3.
[RTSP] curl 명령어로 IP Camera 상태 체크 예시 출처 : Is it possible to do a simple health check of RTSP stream with curl tool? - Stack Overflow Is it possible to do a simple health check of RTSP stream with curl tool? I'm trying to do a simple health check of RTSP stream with curl tool. But command like this always gives me 404 Stream Not Found error: curl -v --url rtsp://192.168.1.80/h264/ --user admin:1234 ... stackoverflow.com 간단하게 IP Came.. 2022. 3. 2.
VirtualBox 호스트와 멀티캐스트(Multicast) 패킷 송/수신 테스트 진행 출처 : #8698 (VirtualBox Host-Only Network Adapter prevents multicast traffic) – Oracle VM VirtualBox #8698 (VirtualBox Host-Only Network Adapter prevents multicast traffic) – Oracle VM VirtualBox After installing Oracle VirtualBox and VirtualBox installing the "VirtualBox Host-Only Network" on my Windows 7 64-bit machine, I am no longer able to receive multicast streams on the host machine. This .. 2022. 3. 2.
Samba 및 NFS Server 구성 요소 설치 진행 하여 동일한 디렉터리 공유 진행 Samba 및 NFS Server 구성 요소 설치 진행 하여 동일한 디렉터리 공유 진행 [ 디렉터리 공유 진행 , 정상적인 방법은 아닐수도 있습니다 -.- ] 1. Samba 구성요소 설치 진행 $ sudo yum install samba* -y 2. smb.conf 파일 설정 진행 , data 디렉터리 및 data라는 명칭으로 디렉터리를 공유 진행 $ vi /etc/samba/smb.conf -------------------------------------------------------------------------------- # See smb.conf.example for a more detailed config file or # read the smb.conf manpage. # Run 't.. 2022. 3. 2.