The Beauty of the Internet Protocol

  Рет қаралды 22,410

Hussein Nasser

Hussein Nasser

Күн бұрын

In this episode of the backend engineering show we discuss the Internet Protocol. A beautiful, elegant protocol that made the Internet possible. We discuss why we need an IP address, how routing is done and how VPNs take advantage of the agnostic nature to encrypt traffic
Fundamentals of Database Engineering udemy course (link redirects to udemy with coupon)
database.husseinnasser.com
Introduction to NGINX (link redirects to udemy with coupon)
nginx.husseinnasser.com
Python on the Backend (link redirects to udemy with coupon)
python.husseinnasser.com
Become a Member on KZbin
/ @hnasr
🔥 Members Only Content
• Members-only videos
🏭 Backend Engineering Videos in Order
backend.husseinnasser.com
💾 Database Engineering Videos
• Database Engineering
🎙️Listen to the Backend Engineering Podcast
husseinnasser.com/podcast
Gears and tools used on the Channel (affiliates)
🖼️ Slides and Thumbnail Design
Canva
partner.canva.com/c/2766475/6...
Stay Awesome,
Hussein

Пікірлер: 35
@hnasr
@hnasr 2 жыл бұрын
Get my Fundamentals of Networking for Effective Backends udemy course Head to network.husseinnasser.com (link redirects to udemy with coupon)
@probhakarsarkar2430
@probhakarsarkar2430 2 жыл бұрын
Done! ❤️
@gregtaylor9806
@gregtaylor9806 2 жыл бұрын
I really enjoy the occasional inclusion of Arabic expressions. Before I started studying web dev, I was taking Arabic lessons. Great work as always, Hussein. It brings me joy that when I first started watching your videos years ago, I understood so little. Now I understand a great deal more. I really appreciate you and hope one day I can approach your level of understanding and passion for this craft. In sha’Allah
@anupamchakrawarti1803
@anupamchakrawarti1803 2 жыл бұрын
No useless intro, dum dang dum and straight to the point. Saved some bandwidth 😆
@dealerofdeeth6043
@dealerofdeeth6043 2 жыл бұрын
:0 your voice sounds like butter to my American ears
@abdhelal
@abdhelal 2 жыл бұрын
Great video 👍 as always 😊
@girdharvikash195
@girdharvikash195 2 жыл бұрын
Hi Hussein, i recently joined your channel and i love the way you tell complex topic very easily. can you make a video on wifi technology. I mean on which layer wifi technology comes?
@kumar16pawan
@kumar16pawan 2 жыл бұрын
Hi Hussein, great insights , Thanks. Just wanted to know the good references you are following, Because I've been going through a book(Top Down approach- Kurose and Ross ) also . Thanks
@mmanuel
@mmanuel 2 жыл бұрын
you should add visual examples or drawings, i always zone out :(
@MysterCannabis
@MysterCannabis 2 жыл бұрын
same here, I do my best to focus on the entire thing but fail every time
@anasabdullahsaber6954
@anasabdullahsaber6954 2 жыл бұрын
Very good video as always. Would be great to get videos about transaction in blockchain and how smart contract work We need real example how consensus with smart contract work maybe with nodejs. Thanks
@maurin5266
@maurin5266 2 жыл бұрын
keep it up man 💪
@khalid5d3
@khalid5d3 2 жыл бұрын
Can you talk about this: 1Password syncing went down for a few hours today during a database upgrade
@r3sist197
@r3sist197 2 жыл бұрын
Love your playstation t shirt! Where can we get it too?
@mdshehab8947
@mdshehab8947 5 ай бұрын
Great ❤
@Theemightyone
@Theemightyone 2 жыл бұрын
Maybe read into the shared registry system and explain this from that perspective.
@saikatdutta1991
@saikatdutta1991 9 ай бұрын
what about the proxy compare to vpn.. isn't both look same ?
@bashardlaleh2110
@bashardlaleh2110 2 жыл бұрын
I always wondered why don't forbidden destinations block packets based on x-forwarded-to header since it has the actual source IP ? I mean this way even VPNs can't make you access a forbidden website in your country, maybe I'm missing something but I would like to get an answer
@monarch0243
@monarch0243 2 жыл бұрын
commenting to get notification of this
@probhakarsarkar2430
@probhakarsarkar2430 2 жыл бұрын
21:22 ISP is like wtf is going on 🤣🤣🤣
@mahmutbayri
@mahmutbayri 2 жыл бұрын
Could you fix the link of `Python on the Backend ` course in the description, please?
@hnasr
@hnasr 2 жыл бұрын
Thanks! Fixed
@autohmae
@autohmae 2 жыл бұрын
If anyone cares the current Internet search space is over 900 000 prefixes/subnets (smallest are /24). And over 150 000 prefix/subnets for IPv6 (smallest are /48). PS Hi Hussein 🙂
@MartinsTalbergs
@MartinsTalbergs 2 жыл бұрын
I constantly zone out into the sea of product placement (in the background)
@blingsingh1057
@blingsingh1057 2 жыл бұрын
Great content as always.👍 1.5x speed 🚄
@hsjsjssnnsjsjs1666
@hsjsjssnnsjsjs1666 2 жыл бұрын
Please bro iptables part 3
@tooru
@tooru 2 жыл бұрын
love you
@prashanth_js
@prashanth_js 2 жыл бұрын
wild wild web is totally accurate
@sanilkhurana3991
@sanilkhurana3991 2 жыл бұрын
Hey Hussein, great video, the protocol bit does have an option for "IP in IP"(en.wikipedia.org/wiki/List_of_IP_protocol_numbers), so would the ISP know when we are using a VPN or can a VPN just set that bit to some other protocol?
@supernovaw39
@supernovaw39 11 ай бұрын
IP in IP is a very niche protocol that doesn't even perform encryption, and it's in the same way on top of IP as TCP and UDP. Chances are your VPN uses UDP (hopefully not TCP!). Your ISP can still tell it's VPN traffic from a lot of characteristics of the traffic, including: - it goes to the same IP address, the VPN's IP addresses are public knowledge; - it probably uses UDP on a common port like 1194 (OpenVPN) or 51820 (WireGuard) which identifies the VPN protocol; - even if packets don't go to a common port, it could be easy to tell the protocol by inspecting packets. You could try obfuscating your VPN traffic by routing it through HTTPS or SSH (using "sshuttle"). This way it looks like you're using those protocols, which encrypt your traffic, including the signs of the VPN protocol inside. Since HTTPS and SSH use TCP, it's suboptimal and can lead to TCP meltdown (tunneling TCP inside of TCP is a bad idea). Also, by observing the timings and payload sizes it is still possible to tell that you're hiding a VPN connecton inside, but that's very advanced and unless you live in PRC nobody's probably gonna go that far to spy on you.
@proactivex
@proactivex 2 жыл бұрын
Put this in watch later. Then hit play.
@CyberTronics
@CyberTronics 2 жыл бұрын
More Arabic expressions ! Your videos great keep going.
@whoknows3679
@whoknows3679 2 жыл бұрын
Third! 👨‍💻
@sump2155
@sump2155 2 жыл бұрын
Feeling proud. 2nd comment. Who cares what he says.
@neonx9356
@neonx9356 2 ай бұрын
مصختونها 🤣🤣🤣
Threads and Connections | The Backend Engineering Show
49:30
Hussein Nasser
Рет қаралды 62 М.
О, сосисочки! (Или корейская уличная еда?)
00:32
Кушать Хочу
Рет қаралды 7 МЛН
La final estuvo difícil
00:34
Juan De Dios Pantoja
Рет қаралды 25 МЛН
ОДИН ДОМА #shorts
00:34
Паша Осадчий
Рет қаралды 6 МЛН
The OSI Model - Explained by Example
25:16
Hussein Nasser
Рет қаралды 173 М.
What is a Protocol? (Deepdive)
18:14
LiveOverflow
Рет қаралды 154 М.
Network Address Translation - NAT Explained
21:28
Hussein Nasser
Рет қаралды 58 М.
The effect of Random UUID on database performance
18:51
Hussein Nasser
Рет қаралды 67 М.
How Alt-Svc switches HTTP/2 clients to use HTTP/3
23:10
Hussein Nasser
Рет қаралды 8 М.
An Overview of the Internet Computer
6:29
DFINITY
Рет қаралды 76 М.
Why 0177.0.0.1 is also localhost
8:14
Hussein Nasser
Рет қаралды 10 М.
Приехала Большая Коробка от Anker! А Внутри...
20:09
РасПаковка ДваПаковка
Рет қаралды 84 М.
👎Главный МИНУС планшета Apple🍏
0:29
Demin's Lounge
Рет қаралды 194 М.
How Neuralink Works 🧠
0:28
Zack D. Films
Рет қаралды 31 МЛН
wyłącznik
0:50
Panele Fotowoltaiczne
Рет қаралды 18 МЛН
Wow AirPods
0:17
ARGEN
Рет қаралды 1,2 МЛН
Эффект Карбонаро и бумажный телефон
1:01
История одного вокалиста
Рет қаралды 2,5 МЛН