본문 바로가기

Linux17

[CentOS 7.8] iptables 명령어를 이용한 DNAT 테스트 진행 [CentOS 7.8] iptables 명령어를 이용한 DNAT 테스트 진행 출처1 : 노력이 나를 만든다. :: [Centos] Routing 서버(NAT 서버) 만들기 (경유지 서버 만들기) (tistory.com) [Centos] Routing 서버(NAT 서버) 만들기 (경유지 서버 만들기) 1. 조사 목적 - 망분리가 되어 있고 - 특정 서버를 통해서만 내부로 들어올 수 있음 2. 아이디어 - 특정서버에서 IP 포워딩을 통해 내부로 들어오게 한다. 3. 생성 방법 1) /etc/sysctl.conf를 편집하여 net effortmakesme.tistory.com 출처2 : IPTABLES 옵션 정리 - Honey Blog (blessu1201.github.io) IPTABLES 옵션 정리 - H.. 2022. 4. 7.
[Ubuntu 18.04] Docker 및 potainer 설치 테스트 진행 [Ubuntu 18.04] Docker 및 potainer 설치 테스트 진행 출처 : Ubuntu 20.04 Docker 설치하기. - 달소씨의 하루 (dalso.org) Ubuntu 20.04 Docker 설치하기. - 달소씨의 하루 이번에는 Ubuntu 20.04 LTS Server 버전에서 Docker 설치를 한번 진행해보겠습니다. 설치방법은 매번 하던대로라서.. 크게 달라지지않지만 기록용으로 남겨봅니다. 설치하기전에 기본적으로 apt update & ap blog.dalso.org (1) 패키지 업데이트 $ sudo apt update & sudo apt upgrade (2) Docker 필수 패키지 설치 $ sudo apt-get install apt-transport-https ca-certi.. 2022. 3. 15.
[Docker] Docker 이용 MariaDB 설치 테스트 진행 [Docker] Docker 이용 MariaDB 설치 테스트 진행 출처 : Docker - 도커로 Mariadb 컨테이너 간편하게 설치하기 (tistory.com) Docker - 도커로 Mariadb 컨테이너 간편하게 설치하기 도커(Docker)를 이용하면 손쉽고 빠르게 Mariadb를 설치해서 사용할 수 있습니다. Mariadb 뿐만 아니라 가상화되어 있는 수많은 이미지들을 컨테이너로 만들어 사용할 수 있습니다. 처음 도커를 사용 7942yongdae.tistory.com $ sudo docker run \ > --name mariadb \ > -d \ > -p 3306:3306 \ > --restart=always \ > -e MYSQL_ROOT_PASSWORD=qwe123!@# \ > mariad.. 2022. 3. 14.
[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.