Networking With Vagrant
In this lesson, we'll learn about networking concepts in Vagrant and how to implement them.
We'll cover the following...
Networking
Private IP addresses
Some IP addresses are set aside so that they can’t be used in the public space/Internet.
These IP addresses are for internal private use only and are not routable on the public internet.
The public and private IP addresses lie in specific ranges, and we can use these ranges to identify whether a given IP is private or public.
From | To |
---|---|
10.0.0.0 | 10.255.255.255 |
172.16.0.0 | 172.31.255.255 |
192.168.0.0 | 192.168.255.255 |
Any IP address residing between these ranges are private addresses.
Public IP addresses
This course does not require a deep understanding of public IP addresses. We will only look ...