쉐도잉 연습: Every Networking Concept Explained | Networking 101 (2026) - YouTube로 영어 말하기 배우기

C1
Networking.
⏸ 일시 정지
176 문장
문장이 너무 짧거나 길면 Edit를 눌러 조정하세요.
1
Networking.
2
In this video I'm going to explain every major networking concept.
3
From the cable that connects your computer,
4
all the way up to VPNs, TLS and load balancers.
5
My name is Diego, I'm a senior DevOps engineer based in Paris
6
and I like breaking down tech concepts into simple and visual explanations.
7
If you want to see more videos like this one,
8
feel free to subscribe and that's all.
9
Back to the video.
10
Okay, so let's start from scratch.
11
We have a single computer.
12
If we want this device to talk to anything,
13
we need to at least connect a cable.
14
Ethernet.
15
It's the standard for wired connections.
16
Physical cables like copper or fiber optic.
17
Wi-Fi.
18
It does the same thing by sending data through the air.
19
Same concept, but different medium to carry the data.
20
Let's pick a cable for now.
21
So now that we have our cable,
22
let's connect a second device.
23
Even though they are already connected,
24
there is a problem here.
25
Neither of them knows who is on the other side.
26
MAC address.
27
Every network device is born with a unique hardware identifier.
28
It looks something like this and it's meant to be unique for each device.
29
When two devices are directly connected,
30
they use MAC addresses to recognize each other and that's pretty cool.
31
But what happens if you need to connect 10 devices or 100 switch?
32
A switch connects multiple devices on the same network.
33
It reads the destination MAC address on each request and sends it only to the right device.
34
However, there is a limitation.
35
MAC addresses only work locally.
36
You cannot use it to reach a device on a different network.
37
That means that we need a different type of address.
38
IP address.
39
A logical address assigned to your device,
40
so it can be identified across networks.
41
They look like this.
42
These ones are different.
43
They can change.
44
To get an IP address, you have two options.
45
One, you can assign it manually to your device.
46
You go into your network settings and type it yourself that's called a static IP address.
47
Or two, you can use DHCP, Dynamic Host Configuration Protocol.
48
When your device joins a network,
49
DHCP assigns an IP automatically, avoiding the manual setup.
50
Now that our device has an IP address,
51
it can communicate with hundreds,
52
even thousands of devices across different networks.
53
And networks can be really big, but also really small.
54
Subnet.
55
A subnet defines the size of your local network.
56
It tells your device how big or small the network is.
57
So now our device is ready to explore the outside world.
58
But how can it do it? router.
59
A router connects different networks together.
60
It looks at the destination IP and decides where to forward the data next.
61
It is the exit door of your local network,
62
but a network can have multiple routers connected to it,
63
so your device needs to know which one to use.
64
That's our default gateway.
65
It's basically our device saying,
66
I have no idea where this packet needs to go.
67
I will just send it to my default gateway and let it figure it out.
68
But now that the router has that packet,
69
how does it know where to send it?
70
Routes.
71
A route is a rule that tells the router where to forward traffic based on the destination.
72
You can send this manually.
73
That's called static routing.
74
You tell the router to reach this network, use this path.
75
For two small networks, static routing works fine.
76
But imagine dozens of networks inside a company.
77
That gets complex.
78
OSPF.
79
It is a routing protocol that allows routers inside the same organization to talk to each other,
80
to find the best paths automatically.
81
But what about the Internet?
82
Millions of networks run by different companies.
83
BGP, Border Gateway Protocol.
84
BGP is the routing protocol that large companies like Internet service providers use to exchange routing information with each other.
85
It's basically the protocol that makes the Internet.
86
So, static routing for small setups,
87
OSPF for larger internal networks in a single company,
88
and BGP for companies to companies.
89
This is basically how the internet is made.
90
A lot of companies talking to a lot of companies.
91
Now we have a full network,
92
devices connected locally, routers forwarding traffic,
93
and routing protocols making sure everything is reachable.
94
Let's test it.
95
We can send a simple ping.
96
Ping sends a small packet to a destination and waits for a response.
97
If the other side replies, you know it's alive.
98
Ping uses ICMP.
99
It is a protocol used for network troubleshooting.
100
It succeeded.
101
Our data can reach the other side.
102
But there are different ways to send data.
103
Different protocols for different needs.
104
TCP.
105
It creates a connection between two devices before sending any data.
106
It's to make sure every packet arrives without errors.
107
If a packet gets lost, TCP sends it again.
108
TCP is safe, but slow,
109
because it needs to wait for the confirmation that every packet was delivered.
110
That's why it's used for things like file transfers, UDP.
111
This one is different.
112
If a packet gets lost,
113
it's gone forever, but it's faster,
114
because we don't need to wait for confirmations.
115
That's why it's used for things like video calls, gaming, and live streaming.
116
A few packets lost won't break anything.
117
So TCP when you need reliability,
118
UDP when you need speed.
119
But I have a question.
120
Your PC can transfer files and make video calls at the same time, right?
121
How does it use both protocols at the same time?
122
The answer, ports.
123
A port is a number that tells the device which application should handle the data.
124
IP gets you to the right device.
125
The port gets you to the right application.
126
For example, port 443 for web traffic and this one for your video call.
127
So our device sends a packet to port 443 on a remote server.
128
But it's not working, like if something is blocking it.
129
Firewall.
130
A firewall controls what traffic is allowed in and out of a network.
131
It can block specific ports,
132
IP addresses, or types of traffic.
133
We need to add a firewall rule so that our packet can finally reach the server.
134
Now we are communicating.
135
Wait, who is this guy?
136
It is a hacker sitting between us and the server and he can read everything we are sending.
137
Password, messages, all of it.
138
That's because our data is being sent in plain text.
139
TLS, Transport Layer Security.
140
It encrypts the connection between two devices so no one in the middle can read or change the data.
141
You have also probably heard about SSL before.
142
TLS is basically the modern version of it.
143
Same idea, newer version.
144
So TLS protects one connection,
145
like our browser talking to that server.
146
But what if you want to protect everything?
147
Every connection from our network to this other one, VPN, Virtual Private Network network.
148
It creates an encrypted tunnel between your device or network and another one.
149
The traffic you send through the tunnel is protected,
150
so no one in the middle can see what you are sending or receiving.
151
So far, we have been using IP addresses to reach other devices.
152
But when you open your browser,
153
you don't type an IP address to visit a website.
154
You type a name, something like google.com, DNS, domain name system.
155
It translates domain names into IP addresses,
156
so you don't have memorize something like this okay
157
so now we have tcp to send the data tls to
158
encrypt the data now we are just missing the data http it's the way our browser uses to request
159
and receive web traffic like web pages for example give me this page here it is
160
and if you combine http with tls you get https now our device can finally use
161
that server this other device too this one as well
162
and this one and this other one and thousands of them
163
that server is not going to keep up load balancer a load balancer sits in front of multiple servers
164
and distributes requests across them this prevents overload and keeps the service running
165
so let's zoom out
166
and see everything we have covered we started with a single device in a cable
167
and we ended up balancing traffic across the internet That's networking.
168
Every concept builds on top of another one.
169
Every concept has its own role.
170
A good rule for learning something is to always ask yourself,
171
why do I need this?
172
And what problem does it solve?
173
If this video helped you to understand networking better,
174
give me some feedback in the comments.
175
I will appreciate it.
176
Thanks for watching and see you in the next one.

앱 다운로드

당신이 말하는 모든 문장을 AI가 채점

TRENDING

인기 동영상

이 비디오로 말하기 연습을 해야 하는 이유는?

이 비디오는 네트워킹의 기본 개념을 설명합니다. 이런 기술적 주제는 일상 대화에서 사용하기 어려울 수 있지만, 네트워킹 관련 용어와 장치들을 이해하는 데 큰 도움을 줍니다. 영어 쉐도잉 연습을 통해 비디오의 내용을 반복하고, 실제 상황에서 사용할 수 있는 능력을 키울 수 있습니다. 또한, 이 비디오는 다양한 기술적 영어 표현을 가르쳐 줄 뿐 아니라, IELTS 스피킹 준비에도 유용한 자료가 됩니다.

문법 및 표현 분석

  • “We need to at least connect a cable.” — 여기서 "need to"는 필수성을 강조하며, 법조동사의 좋은 예입니다.
  • “Neither of them knows who is on the other side.” — "neither/nor" 구조는 부정적 의미를 전달하는 데 효과적이며, 문법적으로 중요합니다.
  • “IP address, a logical address assigned to your device.” — "assigned to" 표현은 수동태 구조를 사용하여 누가 무엇을 하는지를 강조합니다.
  • “You can assign it manually to your device.” — "assign manually"는 방법을 설명하는 간결한 표현으로, 직접 조작하는 것을 나타냅니다.

이러한 문장 구조는 비즈니스 및 기술적인 영어 대화에서 자주 사용되며, 학생들은 이 표현들을 통해 더 나은 의사소통 능력을 기를 수 있습니다.

일반적인 발음 장벽

비디오에서 발음이 어려운 단어들이 존재합니다. "Ethernet", "dynamic", "configuration"와 같은 단어들은 특히 주의가 필요합니다. 영어의 음절 구조와 억양이 다르기 때문에 처음 듣는 학습자는 발음하기 어려울 수 있습니다. shadow speak 연습을 통해 이러한 단어들을 반복해서 발음하는 것은 매우 효과적입니다. 또한, shadow speech 테크닉을 활용하여 발음의 미세한 차이를 익히는 것도 좋습니다.

기술적인 주제를 영어로 자연스럽게 연습하는 것은 IELTS 스피킹 뿐만 아니라 다양한 대화 상황에서도 도움이 될 것입니다. 이 비디오를 활용해 자신만의 말하기 연습을 만들어 보세요!

쉐도잉이란? 영어 실력을 빠르게 키우는 과학적 방법

쉐도잉(Shadowing)은 원래 전문 통역사 훈련을 위해 개발된 언어 학습 기법으로, 다언어 학자인 Dr. Alexander Arguelles에 의해 대중화된 방법입니다. 핵심 원리는 간단하지만 매우 강력합니다: 원어민의 영어를 들으면서 1~2초의 짧은 지연으로 즉시 소리 내어 따라 말하는 것——마치 '그림자(shadow)'처럼 화자를 따라가는 것입니다. 문법 공부나 수동적인 청취와 달리, 쉐도잉은 뇌와 입 근육이 동시에 실시간으로 영어를 처리하고 재현하도록 훈련합니다. 연구에 따르면 이 방법은 발음 정확도, 억양, 리듬, 연음, 청취력, 말하기 유창성을 크게 향상시킵니다. IELTS 스피킹 준비와 자연스러운 영어 소통을 원하는 분들에게 특히 효과적입니다.

커피 한 잔 사주기