Этот коммит содержится в:
Ihar Hancharenka 2024-07-08 22:12:36 +03:00
родитель 18f2ba190f
Коммит c048e410f5
6 изменённых файлов: 22 добавлений и 1 удалений

7
net/proto/nat.txt Обычный файл
Просмотреть файл

@ -0,0 +1,7 @@
2024
MerionAcademy - How NAT Saved Inet ru of 11:41
https://www.youtube.com/watch?v=LqkIJc0rEfs
! 3:30 - NAT translates local address to a global one
! Router has a pool of global addresses
! Static and Dynamic NAT
! PAT - port-address translation (can translate multiple local addresses (port) to a single global one)

Просмотреть файл

@ -1,5 +1,5 @@
2024
SpringIO - IntelliJ IDEA Tips and Tricks for Spring Developers by Anton Arhipov 11:00 of 56:15
SpringIO - IntelliJ IDEA Tips and Tricks for Spring Developers by Anton Arhipov 13:00 of 56:15
https://www.youtube.com/watch?v=1kum1N_-cb0
https://www.jetbrains.com/idea/spring/
C-E - Recent Files (with shortcuts)

Просмотреть файл

@ -0,0 +1,14 @@
2016
NaumenTalks - Rogozin - What Every Java Developer Need to Know About Networks 24:00 of 59:39
https://www.youtube.com/watch?v=yYxypJRjgJM
! 8:00 - After socket.close() it still lives at OS-level, sending buffered data
! FIN - graceful shutdown of connection
! RST - connection reset (terminated in unknown state)
! Closing TCP Connection
! all buffered data is sent
! ... TIME_WAIT ...
! SO_LINGER is enabled
! OS will keep connection for some timeout
! if timeout is reached, connection will be reset
! 17:00 - TCP FSM inside Kernell (wiki/Transmission_Control_Protocol)
! TCP Sliding Window (send window - 64 kb - SO_RCVBUF - at receiving side)