How to access FTP from client with firewall in Windows OS Explorer

How to access FTP from client with firewall in Windows OS Explorer
techcommunity.microsoft.com

Problem (문제점)

윈도우즈 OS, File Explorer를 통해 FTP 접속을 하는 경우 아래와 같은 에러메시지를 보게 됩니다. (방화벽 네트워크 장비를 사용하는 회사에서 접속할 경우)

Active Mode vs Passive Mode

원인은 FTP서버는 기본적으로 Passive Mode데이터 전송 포트를 별도로 사용하는데 비해 회사 방화벽에서는 Well Known (잘 알려진) 포트 외에는 기본적으로 허용하지 않기 때문입니다. Windows OS, File Explorer는 기본적으로 FTP 사용시 Active Mode를 사용합니다.

Difference between Active and Passive FTP - GeeksforGeeks
A Computer Science portal for geeks. It contains well written, well thought and well explained computer science and programming articles, quizzes and practice/competitive programming/company interview Questions.

Solution (해결방법)

Uncheck below option in Windows OS (아래 설정을 해제합니다.)

제어판 -> 인터넷 옵션 -> 체크박스 해제 (Use Passive FTP)

윈도우즈 OS를 재시작합니다.

What is SFTP

종단간 보안 강화를 위해 FTP가 아니라 아래와 같이 Secure FTP 사용을 권장합니다. 통신포트는 22번을 사용합니다.

Encryption
geeksforgeeks.org

Read more

Building AI Sales Pipeline That Actually Researches: Multi-Agent Orchestration with tool-use

Building AI Sales Pipeline That Actually Researches: Multi-Agent Orchestration with tool-use

계속 우리를 괴롭혔던 문제 세일즈 파이프라인이 작동하고 있었습니다. 여섯 개의 Claude 에이전트가 각자 역할을 수행했습니다: 회사를 조사하고, 솔루션을 매핑하고, 제안서를 작성하고, 딜 규모를 추정하고, 이메일을 작성합니다. CLI 명령어 하나면 몇 분 안에 개인화된 세일즈 제안서가 완성되었습니다. 하지만 거기에는 거짓말이 내재되어 있었습니다. "리서처" 에이전트는 실제로 아무것도 조사하지 않았습니다. "Koelle GmbH, Germany"

By Sardor Madaminov
배타적 서브타입(Exlusive Subtype) 테이블 설계와 백엔드 구현

배타적 서브타입(Exlusive Subtype) 테이블 설계와 백엔드 구현

배타적 서브타입이란? 데이터베이스 테이블 설계에서 슈퍼타입(Super Type)과 서브타입(Sub Type)은 공통 속성을 기준으로 엔티티(테이블)를 상위/하위로 나누는 데이터 모델링 기법입니다. * Super Type (상위 엔티티) * 여러 엔티티가 공통으로 가지는 속성을 모아 놓은 엔티티 * 식별자(PK, ID)를 포함한 공통 정보를 가지고 있음 * Sub Type (하위 엔티티)

By Plato Jung