Skip to main content

Part 24- IP address ( Introduction and types part 2) - Computer Networking- CCNA





Hello friends my name is Vasu Birla and today will discuss third method or idea on which we can divide IP address types. So Let’s start … in previous part we have discussed two methods already  now third method is here 

3. Public and Private IP address 

 Public IP address -   When Classful addresses were introduced , IANA  made available IP address of three classes A B and C  for public 

Means these IP addresses  -  Class A  begins 1 to 126  for government  or very big organizations 

                                             Class B begins 128 to 191  available  for medium size companies 

                                             Class C  begins 192 to 223 available for small organization 

And with this basic idea IANA started assignments of IP addresses. Means  those people who wanted to connect with public network or Internet they had to assign IP address among these public IP adds ranges and for that they had to pay IANA, but  these IP adds were not distributed directly by IANA to users , IANA provides These Public IP ranges to Service provider and  Servicer providers distribute these IPs to organizations or to particular users.

Private IP address -   But here IANA defines one more concept of private IP addresses for those people who don’t want to pay for network and  don’t want to connect with public network or Internet Although  users can assign any kind of IP adds in private network but whenever they want to make their private network to public they can not do it because they did not paid for such public IP adds 
That is why IANA  provides some special ranges from each class  for private networks and these ranges are free of cost.  Private IP address are not routable.

Ranges of Private IP address -     Class A-    10.0.0.0    to   10.255.255.255

                                                    Class B -  172.16.0.0    to   172.31.255.255


                                                    Class C -  192.168.0.0   to   192.168.255.255

So above given private IP address ranges are free of cost you don’t have to pay with these ip addresses  and you can assign IP address to your private network hosts.
But if you wants to connect your private Network to internet so you have to use some translation methods like  NAT (Network Address Translation)  we will discuss about it later.




Thanks for reading  in the next part we will discuss about some special kind of addresses  you will get very deeply and sharp knowledge about IP address......  good luck     Hare krishna.

Comments

Popular posts from this blog

Part 15- What is Repeater (Networking Devices)- Computer Networking- CCNA

Repeater  hello friends i am Vasu Birla and today i am starting new segment of CCNA computer networking  its a Networking Devices. we will discuss every important Devices used in networks. Repeater is a first networking devices. What is Repeater  Repeater is a device that receives signals and re-transmits by amplifying or regenerating signals. Repeater has two port one is for receive signals from previous network and second port is for retransmit signals to the next extended network. Two Port Repeater Repeater is a device which is used to Regenerate or replicate signal (Pichhe se aa rahe signal ko regenerate karke ya amplify karke aage strong signals bhej sakte he) Analog and digital both type of signals can be retransmitted by repeater. Here there is difference between regeneration and amplifying.  Amplification means , received signals will be amplified as it is , whether there are impurities in signals  and Regeneration means repeate...

How to Kill the Process: ( Port Process )

If you are seeing a Error like  -   Error: listen EADDRINUSE: address already in use :::3000   then you can easily kill it by running these commands  Find the Process Using Port 3006 : On Windows   netstat -ano | findstr :3000 On Linux/macOS lsof -i :3000       Terminate the Process :       On Windows taskkill /PID <PID> /F    means       taskkill /PID 17780 /F On Linux/macOS kill -9 <PID>     means kill -9 17780                ==============END ==========  

GitHub Repo Collaboration Work on single project

 =============================================== To collaborate effectively with your friend on the same project, you should use Git branches to manage different lines of development. Here's a step-by-step procedure you can follow to streamline collaboration: 1. Create Separate Branches for Each Developer Create a New Branch for Your Friend: On your local repository, create a new branch for your friend. For example if your friend name is kilvish , if you want to create a branch named kilvish , you would run: make sure you would be on main branch already   command->  git checkout -b kilvish git push origin kilvish 2. Set Up Your Friend’s Environment( On your Friend's System )  at kilvish side  run ->  Clone the Repository (if not already done): If your friend hasn’t cloned the repository yet, they should do so: command ->  git clone https://github.com/Vasu-Birla/your-repo.git   // your your main clone line  Fetch All Bran...