-->

ABOUT US

Our development agency is committed to providing you the best service.

OUR TEAM

The awesome people behind our brand ... and their life motto.

  • Kumar Atul Jaiswal

    Ethical Hacker

    Hacking is a Speed of Innovation And Technology with Romance.

  • Kumar Atul Jaiswal

    CEO Of Hacking Truth

    Loopholes are every major Security,Just need to Understand it well.

  • Kumar Atul Jaiswal

    Web Developer

    Techonology is the best way to Change Everything, like Mindset Goal.

OUR SKILLS

We pride ourselves with strong, flexible and top notch skills.

Marketing

Development 90%
Design 80%
Marketing 70%

Websites

Development 90%
Design 80%
Marketing 70%

PR

Development 90%
Design 80%
Marketing 70%

ACHIEVEMENTS

We help our clients integrate, analyze, and use their data to improve their business.

150

GREAT PROJECTS

300

HAPPY CLIENTS

650

COFFEES DRUNK

1568

FACEBOOK LIKES

STRATEGY & CREATIVITY

Phasellus iaculis dolor nec urna nullam. Vivamus mattis blandit porttitor nullam.

PORTFOLIO

We pride ourselves on bringing a fresh perspective and effective marketing to each project.

  • NAT Network Address Translation practical in cisco packet tracer

     

    NAT Network Address Translation practical in cisco packet tracer



    NAT (Network Address Translation)


    NAT is a process that translates private IP addresses into public IP addresses to enable communication with external networks like the internet. NAT Network Address Translation practical in cisco packet tracer



    This is used in:


    • Home WiFi routers
    • Offices
    • Enterprises
    • ISPs
    • Firewalls


    Without NAT:

    👉 Private IP devices cannot access the internet.



    🎯 Why NAT Exists


    Private IPs:

    • 192.168.x.x
    • 10.x.x.x
    • 172.16.x.x


    ❌ Cannot work directly on internet.

    So router does:

    Private IP  →  Public IP


    🔥 What You Will Learn


    • ✔ Inside vs Outside interfaces
    • ✔ Private/Public IP
    • ✔ NAT translation
    • ✔ Internet simulation
    • ✔ PAT overload
    • ✔ Enterprise internet access


    🧪 Practical Topology


    In Cisco Packet Tracer create:


    PC0 ---- Switch ---- Router ---- Server
    



    🌐 IP Addressing

    🔹 Internal LAN



    NAT Network Address Translation practical in cisco packet tracer


    🔹 External Network





    🔌 Wiring


    PC → Switch

    Use:

    ✅ Copper Straight-Through

    Switch → Router

    Use:

    ✅ Copper Straight-Through

    Router → Server

    Use:

    ✅ Copper Straight-Through



    🔥 Physical Port Connections




    Like - 


    NAT Network Address Translation practical in cisco packet tracer



    ⚙️ Step 1: Configure Router Interfaces



    enable
    configure terminal
    
    interface g0/0
    ip address 192.168.1.1 255.255.255.0
    ip nat inside
    no shutdown
    
    interface g0/1
    ip address 200.1.1.1 255.255.255.0
    ip nat outside
    no shutdown
    



    🧠 Important Concept


    NAT Network Address Translation practical in cisco packet tracer



    ⚙️ Step 2: Configure PC


     



    ⚙️ Step 3: Configure Server



    NAT Network Address Translation practical in cisco packet tracer


    🔥 Step 4: Create Access List


    access-list 1 permit 192.168.1.0 0.0.0.255
    


    🧠 Why ACL?


    Tells router:

    👉 Which internal IPs should be translated.



    🔥 Step 5: Enable NAT Overload (PAT)



    ip nat inside source list 1 interface g0/1 overload
    



    🧠 Meaning


    NAT Network Address Translation practical in cisco packet tracer


    🎯 Full NAT Configuration



    enable
    configure terminal
    
    interface g0/0
    ip address 192.168.1.1 255.255.255.0
    ip nat inside
    no shutdown
    
    interface g0/1
    ip address 200.1.1.1 255.255.255.0
    ip nat outside
    no shutdown
    
    access-list 1 permit 192.168.1.0 0.0.0.255
    
    ip nat inside source list 1 interface g0/1 overload
    




    🧪 Step 6: Test Connectivity


    From PC0:

    ping 200.1.1.2

    ✔ Success



    🔍 What Happens Internally


    192.168.1.10
    ↓
    Router translates
    ↓
    200.1.1.1
    ↓
    Server
    



    🔥 Verify NAT Translation


    On router:

    show ip nat translations

    You’ll see:

    Inside local → Inside global



    NAT Network Address Translation practical in cisco packet tracer



    🔥 Most Important Interview Questions


    ❓ Difference Between NAT and PAT?


    NAT Network Address Translation practical in cisco packet tracer


    ❓ What is Overload?

    PAT (Port Address Translation)

    ❓ Why NAT Important?

    Conserves public IPv4 addresses.

    ❓ What command verifies NAT?

    show ip nat translations



    🔥 Common Mistakes


    NAT Network Address Translation practical in cisco packet tracer



    🎯 What You Learned


    • ✔ NAT basics
    • ✔ Private/Public IP
    • ✔ PAT overload
    • ✔ ACL for NAT
    • ✔ Enterprise internet logic




    Disclaimer



    All tutorials are for informational and educational purposes only and have been made using our own routers, servers, websites and other vulnerable free resources. we do not contain any illegal activity. We believe that ethical hacking, information security and cyber security should be familiar subjects to anyone using digital information and computers. Hacking Truth is against misuse of the information and we strongly suggest against it. Please regard the word hacking as ethical hacking or penetration testing every time this word is used. We do not promote, encourage, support or excite any illegal activity or hacking.



  • OSPF Open Shortest Path First practical in cisco packet tracer

     


    OSPF Open Shortest Path First practical in cisco packet tracer



    🌐 OSPF (Open Shortest Path First)


    OSPF is a link-state dynamic routing protocol that automatically exchanges routing information between routers and calculates the shortest path using the SPF algorithm.


    This is dynamic routing.

    Until now in static routing:

    👉 You manually added routes.

    Now with OSPF:

    👉 Routers automatically learn routes from each other.



    This is heavily used in:


    • Enterprise networks
    • ISPs
    • Data centers
    • Corporate environments



    🎯 What You Will Learn


    • ✔ Dynamic route learning
    • ✔ Neighbor relationships
    • ✔ Route advertisement
    • ✔ Automatic path selection
    • ✔ Scalable routing



    🔥 Difference: Static vs OSPF



    OSPF Open Shortest Path First practical in cisco packet tracer




    🧪 Practical Topology


    In Cisco Packet Tracer create:

    PC0 --- R1 --- R2 --- R3 --- PC1



    🌐 IP Addressing Plan


    🔹 LAN Networks






    🔹 Router-to-Router Links



    OSPF Open Shortest Path First practical in cisco packet tracer



    🔌 Wiring (IMPORTANT)


    PC Connections



    OSPF Open Shortest Path First practical in cisco packet tracer


    Router Connections


    OSPF Open Shortest Path First practical in cisco packet tracer



    ⚙️ Step 1: Configure Router Interfaces


    🔹 Router1



    enable
    configure terminal
    
    interface g0/0
    ip address 10.0.0.1 255.255.255.0
    no shutdown
    
    interface g0/1
    ip address 192.168.1.1 255.255.255.252
    no shutdown
    




    OSPF Open Shortest Path First practical in cisco packet tracer



    🔹 Router2



    enable
    configure terminal
    
    interface g0/0
    ip address 192.168.1.2 255.255.255.252
    no shutdown
    
    interface g0/1
    ip address 192.168.2.1 255.255.255.252
    no shutdown
    
    
    
    
    


    OSPF Open Shortest Path First practical in cisco packet tracer



    🔹 Router3



    enable
    configure terminal
    
    interface g0/0
    ip address 192.168.2.2 255.255.255.252
    no shutdown
    
    interface g0/1
    ip address 20.0.0.1 255.255.255.0
    no shutdown
    




    OSPF Open Shortest Path First practical in cisco packet tracer



    ⚙️ Step 2: Configure PCs


    PC0

    IP: 10.0.0.10

    Gateway: 10.0.0.1

    PC1

    IP: 20.0.0.10

    Gateway: 20.0.0.1



    ❌ Test Before OSPF


    From PC0:

    ping 20.0.0.10

    ❌ Fail


    Because routers don’t know remote networks yet.



    OSPF Open Shortest Path First practical in cisco packet tracer



    🔥 Step 3: Configure OSPF


    🔹 Router1



    router ospf 1
    
    network 10.0.0.0 0.0.0.255 area 0
    network 192.168.1.0 0.0.0.3 area 0
    




    OSPF Open Shortest Path First practical in cisco packet tracer



    🔹 Router2



    router ospf 1
    
    network 192.168.1.0 0.0.0.3 area 0
    network 192.168.2.0 0.0.0.3 area 0
    








    🔹 Router3


    router ospf 1
    
    network 192.168.2.0 0.0.0.3 area 0
    network 20.0.0.0 0.0.0.255 area 0
    








    🧠 Important Concept


    What is Area 0?

    👉 Backbone area of OSPF

    All routers communicate inside Area 0.



    🔥 Step 4: Verify Neighbor Relationship


    Run:

    show ip ospf neighbor

    You should see neighboring routers.

    OSPF Open Shortest Path First practical in cisco packet tracer



    🔥 Step 5: Verify Routing Table


    Run:

    show ip route

    You’ll see routes marked:

    O

    👉 Means learned through OSPF



    OSPF Open Shortest Path First practical in cisco packet tracer




    🧪 Final Test


    From PC0:

    ping 20.0.0.10

    ✔ SUCCESS



    OSPF Open Shortest Path First practical in cisco packet tracer





    Disclaimer



    All tutorials are for informational and educational purposes only and have been made using our own routers, servers, websites and other vulnerable free resources. we do not contain any illegal activity. We believe that ethical hacking, information security and cyber security should be familiar subjects to anyone using digital information and computers. Hacking Truth is against misuse of the information and we strongly suggest against it. Please regard the word hacking as ethical hacking or penetration testing every time this word is used. We do not promote, encourage, support or excite any illegal activity or hacking.

  • DHCP Dynamic Host Configuration Protocol practical in cisco packet tracer

     

    DHCP is a network protocol used to automatically assign IP configuration to clients in a network.



    🌐 DHCP (Dynamic Host Configuration Protocol)



    DHCP is a network protocol used to automatically assign IP configuration to clients in a network.

    This is used in:


    • Offices
    • Companies
    • Schools
    • WiFi routers
    • ISPs
    • Enterprise networks


    Almost every modern network uses DHCP.


    🎯 What DHCP Does


    Instead of manually assigning IP addresses to every PC:


    ❌ Manual:



    PC1 = 192.168.1.10
    PC2 = 192.168.1.11
    PC3 = 192.168.1.12
    



    ✅ DHCP automatically gives:


    • IP Address
    • Subnet Mask
    • Default Gateway
    • DNS Server




    🔥 Real-Life Example


    When you connect:

    Mobile to WiFi

    Laptop to office LAN

    👉 Router automatically gives IP

    That is DHCP.



    🎯 What You Will Learn


    • ✔ Automatic IP allocation
    • ✔ DHCP pool creation
    • ✔ Default gateway assignment
    • ✔ DNS assignment
    • ✔ Lease process
    • ✔ Enterprise networking basics



    🧪 Practical Topology


    In Cisco Packet Tracer create:



    PC0 ----\
    PC1 ----- Switch ---- Router
    PC2 ----/
    



    🌐 IP Plan





    🔌 Wiring

    PCs → Switch

    Use:


    Copper Straight-Through

    Switch → Router

    Use:

    Copper Straight-Through



    ⚙️ Step 1: Configure Router Interface


    On router:



    enable
    configure terminal
    
    interface g0/0
    ip address 192.168.1.1 255.255.255.0
    no shutdown
    
    


    🔥 Step 2: Configure DHCP Service


    ip dhcp pool OFFICE
    


    👉 Creates DHCP pool named OFFICE


    Configure Network


    network 192.168.1.0 255.255.255.0
    



    Configure Default Gateway


    default-router 192.168.1.1
    



    Configure DNS


    dns-server 8.8.8.8
    



    🔥 Full DHCP Configuration



    enable
    configure terminal
    
    interface g0/0
    ip address 192.168.1.1 255.255.255.0
    no shutdown
    
    ip dhcp pool OFFICE
    network 192.168.1.0 255.255.255.0
    default-router 192.168.1.1
    dns-server 8.8.8.8
    



    🔥 Step 3: Exclude Router IP


    VERY IMPORTANT


    ip dhcp excluded-address 192.168.1.1
    






    🧠 Why?

    👉 Prevents DHCP from assigning router IP to PCs.


    🔥 Step 4: Configure PCs


    On every PC:

    Desktop → IP Configuration

    Select:


    DHCP
    



    🎯 Result


    PC automatically gets:




    🧪 Step 5: Verify


    From PC:

    ipconfig

    You’ll see DHCP-assigned IP.






    🧪 Step 6: Test Connectivity


    ping 192.168.1.1

    ✔ Success






    🔍 DHCP Process (VERY IMPORTANT)


    DORA Process





    🧠 How It Works


    • 1️⃣ PC broadcasts DHCP Discover
    • 2️⃣ Router replies DHCP Offer
    • 3️⃣ PC sends Request
    • 4️⃣ Router sends Acknowledgement


    ✔ IP assigned



    🔥 Verification Commands


    On router:

    show ip dhcp binding

    👉 Shows assigned IPs







    show ip dhcp pool

    👉 Shows DHCP pool details







    🧠 Important Interview Questions


    ❓ What port does DHCP use?

    UDP 67 & 68

    ❓ What is APIPA?



    If DHCP fails:


    169.254.x.x

    ❓ Why exclude addresses?

    Prevent important IP assignment conflicts.

    ❓ What is lease time?

    Duration client can use IP.



    🔥 Common Mistakes





    🎯 What You Learned


    • ✔ Automatic IP assignment
    • ✔ DHCP pool
    • ✔ DORA process
    • ✔ Enterprise IP management
    • ✔ Router as DHCP server




    Disclaimer



    All tutorials are for informational and educational purposes only and have been made using our own routers, servers, websites and other vulnerable free resources. we do not contain any illegal activity. We believe that ethical hacking, information security and cyber security should be familiar subjects to anyone using digital information and computers. Hacking Truth is against misuse of the information and we strongly suggest against it. Please regard the word hacking as ethical hacking or penetration testing every time this word is used. We do not promote, encourage, support or excite any illegal activity or hacking.


  • Static Routing — Practical + Interview Guide

     

    Static Routing — Practical + Interview Guide



    🌐 Static Routing — Practical + Interview Guide


    📌 What is Static Routing?

    Static routing is a method where routes are manually configured on routers to define how packets should reach different networks.


    👉 Simple:

    “Router ko manually batate hain traffic kahan bhejna hai.”


    🎯 What You Will Learn


    • Communication between different networks
    • How routers forward packets
    • Real-world routing logic


    🧪 Lab Setup (in Cisco Packet Tracer)


    🔹 Topology

    PC1 --- Router1--- Router2 --- PC2



    Lab Topology & IP Addressing Plan



    Static Routing — Practical + Interview Guide


    Step 1 — Build topology in Packet Tracer


    • Drag 2 x Router 2911 and 2 x PC
    • Connect PC1 → Router1 with Copper Straight-Through
    • Connect Router1 → Router2 with Copper Cross-Over (or Serial DCE)
    • Connect Router2 → PC2 with Copper Straight-Through



    Static Routing — Practical + Interview Guide




    Step 2 — Configure IP addresses


    Router 1:



    Router> enable
    Router# configure terminal
    Router(config)# hostname R1
    R1(config)# interface GigabitEthernet 0/0
    R1(config-if)# ip address 192.168.1.1 255.255.255.0
    R1(config-if)# no shutdown
    R1(config-if)# exit
    R1(config)# interface GigabitEthernet 0/1
    R1(config-if)# ip address 10.0.0.1 255.255.255.252
    R1(config-if)# no shutdown
    R1(config-if)# end
    
    





    Router 2:



    Router> enable
    Router# configure terminal
    Router(config)# hostname R2
    R2(config)# interface GigabitEthernet 0/0
    R2(config-if)# ip address 10.0.0.2 255.255.255.252
    R2(config-if)# no shutdown
    R2(config-if)# exit
    R2(config)# interface GigabitEthernet 0/1
    R2(config-if)# ip address 192.168.3.1 255.255.255.0
    R2(config-if)# no shutdown
    R2(config-if)# end
    
    
    
    



    Static Routing — Practical + Interview Guide



    Step 3 — Add Static Routes ⭐ (Most important!)



    ip route [destination network] [subnet mask] [next-hop IP]
    On Router 1 — tell it how to reach Network 3:
    R1(config)# ip route 192.168.3.0 255.255.255.0 10.0.0.2
    
    On Router 2 — tell it how to reach Network 1: R2(config)# ip route 192.168.1.0 255.255.255.0 10.0.0.1











    Step 4 — Configure PCs


    On PC1 → Desktop → IP Configuration:

    IP: 192.168.1.10, Mask: 255.255.255.0, Gateway: 192.168.1.1

    On PC2 → Desktop → IP Configuration:

    IP: 192.168.3.10, Mask: 255.255.255.0, Gateway: 192.168.3.1



    Static Routing — Practical + Interview Guide



    Static Routing — Practical + Interview Guide



    Static Routing — Practical + Interview Guide


    Static Routing — Practical + Interview Guide




    Step 5 — Test with Ping


    • On PC1 → Desktop → Command Prompt:
    • ping 192.168.3.10
    • You should see 4 replies ✅



    Might be possible first time when you will ping it will only 2 replies came and others packets loss but second time if you try definitely ping successfully and winner winner !!



    Static Routing — Practical + Interview Guide




    Verify on Router


    R1# show ip route
    
    R1# show running-config
    



    Static Routing — Practical + Interview Guide




    Common mistakes to avoid:


    • Forgetting no shutdown on interfaces
    • Wrong next-hop IP (must be the directly connected neighbor's IP)
    • Missing the return route (both routers need static routes!)
    • Wrong subnet mask in the ip route command







  • WHAT WE DO

    We've been developing corporate tailored services for clients for 30 years.

    CONTACT US

    For enquiries you can contact us in several different ways. Contact details are below.

    Hacking Truth.in

    • Street :Road Street 00
    • Person :Person
    • Phone :+045 123 755 755
    • Country :POLAND
    • Email :contact@heaven.com

    Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

    Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation.