피어 투 피어 (P2P)

중앙 집중식 중개자 없이 당사자 간의 직접적인 상호 작용.

번역 대기 중인 콘텐츠입니다. 영어 버전을 표시하고 있습니다.

P2P is about power returning to the edges of the network. In the early days of the internet, P2P was seen primarily as a tool for 'piracy', but today it is the architect of 'Sovereignty'. By removing the middleman, P2P allows for cheaper global payments (crypto), censorship-resistant news (Mastodon), and private messaging. The biggest strength of P2P is 'High Availability'. A government can shut down a website by seizing its server, but it is nearly impossible to shut down a P2P network like Bitcoin because it lives on 100,000+ computers in every country on Earth simultaneously. For developers, P2P requires a shift in mindset—dealing with 'Eventually Consistent' data and managing trust via cryptography instead of user accounts.

        graph LR
  Center["피어 투 피어 (P2P)"]:::main
  Rel_decentralization["decentralization"]:::related -.-> Center
  click Rel_decentralization "/terms/decentralization"
  Rel_testnet["testnet"]:::related -.-> Center
  click Rel_testnet "/terms/testnet"
  Rel_decentralized_social_network["decentralized-social-network"]:::related -.-> Center
  click Rel_decentralized_social_network "/terms/decentralized-social-network"
  classDef main fill:#7c3aed,stroke:#8b5cf6,stroke-width:2px,color:white,font-weight:bold,rx:5,ry:5;
  classDef pre fill:#0f172a,stroke:#3b82f6,color:#94a3b8,rx:5,ry:5;
  classDef child fill:#0f172a,stroke:#10b981,color:#94a3b8,rx:5,ry:5;
  classDef related fill:#0f172a,stroke:#8b5cf6,stroke-dasharray: 5 5,color:#94a3b8,rx:5,ry:5;
  linkStyle default stroke:#4b5563,stroke-width:2px;

      

🧒 5살도 이해할 수 있게 설명

P2P is like a classroom where everyone has a book. If you need to know what's on page 50, you can ask any of your friends. You don't have to wait in line to ask the teacher. Even if the teacher goes home, the students can still keep learning from each other because everyone has their own copy of the information.

🤓 Expert Deep Dive

## The Three Generations of P2P

### 1st Gen: Centralized Indices
Systems like the original Napster. The files were on users' computers, but there was a central server that kept a list of who had what. This was easy to shut down.

### 2nd Gen: Full Decentralization
Systems like Gnutella or Kazaa. No central servers at all. Users searched by 'shouting' to their neighbors. Very hard to shut down but very slow and inefficient.

### 3rd Gen: DHT and Hybrid Systems
Modern BitTorrent and IPFS. These use 'Distributed Hash Tables' to provide the speed of a central server with the resilience of a decentralized network. They also use 'Trackers' or 'Bootstrap Nodes' to help you find your first few friends on the network.

### Crypto-Economic P2P
The newest phase. Here, P2P isn't just about sharing; it's about guaranteeing service. Filecoin uses P2P technology to create a market for storage, where you pay peers in tokens to host your data safely.

❓ 자주 묻는 질문

Is P2P legal?

Yes. P2P is just a networking technology. It is used for many legal things like Windows updates, Skype, and Bitcoin. Legal issues only arise if people use it to share copyrighted material without permission.

What is a P2P exchange in crypto?

It is a platform where you buy crypto directly from another person. The platform usually provides a 'Escrow' service to make sure neither person gets cheated.

📚 출처