Network protocols: Difference between revisions

From HPCWIKI
Jump to navigation Jump to search
(Fix: remove --- horizontal lines (7 removed))
 
(8 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Status
|status=Draft
|owner=Knowledge Agent
|last_update=2026-07-16
|review=Pending
}}
{{TOC}}
== Overview ==
Network protocols에 대한 기술 문서입니다.
=== Summary ===
* 무엇인가? - Network protocols
* 왜 필요한가? - HPC 및 서버 환경에서 필수 개념
* 언제 사용하는가? - 서버 구성, 성능 튜닝, 문제 해결 시
== Purpose ==
이 문서가 존재하는 이유
* Goal: Network protocols에 대한 기술 정보 제공
* Scope: Network protocols의 개념, 사용법, 설정
* Non-goals: 다른 주제로의 확장
== Key Concepts ==


== List of Protocols ==
{| class="wikitable"
! Concept
! Description
! Related
|-
| Network protocols
| HPC/서버 환경에서 중요한 기술 개념
| [[Linux]], [[Server]]
|}
 
 
== Detailed Explanation ==
 
* [[Network]]
{| class="wikitable"
{| class="wikitable"
!Protocol
!Protocol
!Spec or RFC<ref>http://www.faqs.org/rfcs/</ref>
!Port
!Port
!TCP/UDP
!TCP/UDP
Line 8: Line 52:
|-
|-
|HTTP
|HTTP
|(<nowiki>RFC 2616</nowiki>)
|80
|80
|TCP
|TCP
Line 13: Line 58:
|-
|-
|HTTPS
|HTTPS
|RFC 2818
|443
|443
|TCP
|TCP
|HTTP over TLS/SSL encryption
|HTTP over TLS/SSL encryption
|-
|-
|FTP
|21
|TCP
|File Transfer Protocol
|-
|SSH
|22
|TCP
|Secure Shell
|-
|Telnet
|23
|TCP
|Remote terminal access
|-
|SMTP
|25
|TCP
|Simple Mail Transfer Protocol
|-
|DNS
|53
|TCP/UDP
|Domain Name System
|-
|BOOTP
|67/68
|UDP
|BOOTP is used for automatically assigning IP addresses and other network configuration parameters to network devices. It operates on ports 67 (server) and 68 (client) using UDP.
|-
|[[DHCP]]
|67/68
|UDP
|Dynamic Host Configuration Protocol
|-
|TFTP
|69
|UDP
|Trivial File Transfer Protocol
|-
|SNMP
|161
|UDP
|Simple Network Management Protocol
|-
|NTP
|123
|UDP
|Network Time Protocol
|-
|RDP
|3389
|TCP
|Remote Desktop Protocol
|-
|SIP
|5060
|UDP
|Session Initiation Protocol
|-
|ICMP
| -
|ICMP
|Internet Control Message Protocol
|-
|IGMP
| -
|IGMP
|Internet Group Management Protocol
|-
|POP3
|110
|TCP
|Post Office Protocol v3
|-
|IMAP
|143
|TCP
|Internet Message Access Protocol
|-
|POP3 SSL
|995
|TCP
|Secure POP3
|-
|IMAP SSL
|993
|TCP
|Secure IMAP
|-
|SMTP SSL
|465
|TCP
|Secure SMTP
|-
|LDAP
|389
|TCP
|Lightweight Directory Access Protocol
|-
|LDAPS
|636
|TCP
|Secure Lightweight Directory Access Protocol
|-
|RADIUS
|1812
|UDP
|Remote Authentication Dial-In User Service
|-
|RADIUS Accounting
|1813
|UDP
|RADIUS accounting protocol
|-
|BGP
|179
|TCP
|Border Gateway Protocol
|-
|OSPF
|89
|IP
|Open Shortest Path First
|-
|ICMPv6
| -
|ICMPv6
|ICMP for IPv6
|-
|IPv6
| -
|IPv6
|Internet Protocol version 6
|-
|PPTP
|1723
|TCP
|Point-to-Point Tunneling Protocol
|-
|L2TP
|1701
|UDP
|Layer 2 Tunneling Protocol
|-
|IPsec
| -
| -
|Internet Protocol Security
|-
|SNMP Trap
|162
|UDP
|SNMP traps (notifications)
|-
|NNTP
|119
|TCP
|Network News Transfer Protocol
|-
|HTTP Proxy
|3128
|TCP
|HTTP proxy server
|-
|SOCKS
|1080
|TCP
|SOCKS proxy server
|-
|NFS
|2049
|TCP/UDP
|Network File System
|-
|MySQL
|3306
|TCP
|MySQL database server
|-
|PostgreSQL
|5432
|TCP
|PostgreSQL database server
|-
|MSSQL
|1433
|TCP
|Microsoft SQL Server
|-
|Rsync
|873
|
|
|}


== Reference ==
 
<references />
== Best Practices ==
 
* 최신 버전 사용 권장
* 공식 문서 참고
* 테스트 환경에서 먼저 검증
 
 
== References ==
 
* [https://wiki.hpcmate.com Network protocols]
 
 
== Related Pages ==
 
* [[Linux]]
* [[Server]]
* [[Hardware]]
* [[Network]]
 
 
[[Category:Network]]
== Knowledge Graph ==
 
Related
 
→ [[Network performance test]]
→ [[RDMA]]
→ [[NIC Bonding]]
→ [[Network]]
→ [[IPMI]]
→ [[SDN]]
→ [[NFS]]
 
[[Category:Configuration]]

Latest revision as of 11:29, 17 July 2026

Template:Status

Template:TOC

Overview

Network protocols에 대한 기술 문서입니다.

Summary

  • 무엇인가? - Network protocols
  • 왜 필요한가? - HPC 및 서버 환경에서 필수 개념
  • 언제 사용하는가? - 서버 구성, 성능 튜닝, 문제 해결 시


Purpose

이 문서가 존재하는 이유

  • Goal: Network protocols에 대한 기술 정보 제공
  • Scope: Network protocols의 개념, 사용법, 설정
  • Non-goals: 다른 주제로의 확장


Key Concepts

Concept Description Related
Network protocols HPC/서버 환경에서 중요한 기술 개념 Linux, Server


Detailed Explanation

Best Practices

  • 최신 버전 사용 권장
  • 공식 문서 참고
  • 테스트 환경에서 먼저 검증


References


Related Pages

Knowledge Graph

Related

Network performance testRDMANIC BondingNetworkIPMISDNNFS

Protocol Spec or RFC[1] Port TCP/UDP Description
HTTP (RFC 2616) 80 TCP Hypertext Transfer Protocol
HTTPS RFC 2818 443 TCP HTTP over TLS/SSL encryption