├── SETUP WLAN.pkt ├── telnetOnRouter.pkt ├── dnsConfiguration.pkt ├── RouterAsDHCPServer.pkt ├── TelnetConfigFor Switch.pkt ├── HttpServerConfiguration.pkt ├── DNS+DHCP+HTTP Configuration.pkt ├── GenericServerAsDHCPServer.pkt ├── Telnet on Router ├── Telnet configuration for router.pkt └── About Experiment.md ├── CONTRIBUTING.md └── README.md /SETUP WLAN.pkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swati-gwc/Cisco-Packet-Tracer-Practicals/HEAD/SETUP WLAN.pkt -------------------------------------------------------------------------------- /telnetOnRouter.pkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swati-gwc/Cisco-Packet-Tracer-Practicals/HEAD/telnetOnRouter.pkt -------------------------------------------------------------------------------- /dnsConfiguration.pkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swati-gwc/Cisco-Packet-Tracer-Practicals/HEAD/dnsConfiguration.pkt -------------------------------------------------------------------------------- /RouterAsDHCPServer.pkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swati-gwc/Cisco-Packet-Tracer-Practicals/HEAD/RouterAsDHCPServer.pkt -------------------------------------------------------------------------------- /TelnetConfigFor Switch.pkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swati-gwc/Cisco-Packet-Tracer-Practicals/HEAD/TelnetConfigFor Switch.pkt -------------------------------------------------------------------------------- /HttpServerConfiguration.pkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swati-gwc/Cisco-Packet-Tracer-Practicals/HEAD/HttpServerConfiguration.pkt -------------------------------------------------------------------------------- /DNS+DHCP+HTTP Configuration.pkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swati-gwc/Cisco-Packet-Tracer-Practicals/HEAD/DNS+DHCP+HTTP Configuration.pkt -------------------------------------------------------------------------------- /GenericServerAsDHCPServer.pkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swati-gwc/Cisco-Packet-Tracer-Practicals/HEAD/GenericServerAsDHCPServer.pkt -------------------------------------------------------------------------------- /Telnet on Router/Telnet configuration for router.pkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swati-gwc/Cisco-Packet-Tracer-Practicals/HEAD/Telnet on Router/Telnet configuration for router.pkt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # CONTRIBUTE TO THIS CISCO PACKET TRACER PRACTICALS REPOSITORY 2 | 3 | ### Steps to make a PR 4 | 5 | > - Make sure you open an issue first before making your pull request 6 | > - Make sure you give a meaningful name to whatever file or folder you are adding 7 | 8 | * Step 1: Fork the repo and Go to your Git terminal and clone it on your machine. 9 | * Step 2: Add a upstream link to main branch in your cloned repo 10 | ``` 11 | git remote add upstream https://github.com/swati-gwc/Cisco-Packet-Tracer-Practicals.git 12 | ``` 13 | * Step 3: Keep your cloned repo upto date by pulling from upstream (this will also avoid any merge conflicts while committing new changes) 14 | ``` 15 | git pull upstream main https://github.com/swati-gwc/Cisco-Packet-Tracer-Practicals.git 16 | ``` 17 | * Step 4: Create your feature branch 18 | ``` 19 | git checkout -b 20 | ``` 21 | * Step 5: Commit all the changes 22 | ``` 23 | git commit -m "Write a meaningfull but small commit message" 24 | ``` 25 | * Step 6: Push the changes for review 26 | ``` 27 | git push origin 28 | ``` 29 | * Step 7: Create a PR on Github. 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /Telnet on Router/About Experiment.md: -------------------------------------------------------------------------------- 1 | ## INSTRUCTIONS 2 | 3 | 4 | ### CLI OF ROUTER 5 | 6 | Would you like to enter the initial configuration dialog? [yes/no]: n \ 7 | Press RETURN to get started!\ 8 | Router>en\ 9 | Router#conf t\ 10 | Enter configuration commands, one per line. End with CNTL/Z.\ 11 | Router(config)#hostname R1\ 12 | R1(config)#enable secret cisco\ 13 | R1(config)#int f0/0\ 14 | R1(config-if)#ip add 192.168.1.1 255.255.0.0\ 15 | R1(config-if)#no shut\ 16 | R1(config-if)#\ 17 | %LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up\ 18 | %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up\ 19 | R1(config-if)#end\ 20 | R1#\ 21 | %SYS-5-CONFIG_I: Configured from console by console\ 22 | R1#wr\ 23 | Building configuration...\ 24 | [OK]\ 25 | R1#\ 26 | R1#conf t\ 27 | Enter configuration commands, one per line. End with CNTL/Z.\ 28 | R1(config)#line vty 0 5\ 29 | R1(config-line)#login\ 30 | % Login disabled on line 132, until 'password' is set\ 31 | % Login disabled on line 133, until 'password' is set\ 32 | % Login disabled on line 134, until 'password' is set\ 33 | % Login disabled on line 135, until 'password' is set\ 34 | % Login disabled on line 136, until 'password' is set\ 35 | % Login disabled on line 137, until 'password' is set\ 36 | R1(config-line)#password pass\ 37 | R1(config-line)#end\ 38 | R1#\ 39 | %SYS-5-CONFIG_I: Configured from console by console\ 40 | R1#exit\ 41 | 42 | ### Command prompt of PC 0 (to check if telnet configuration in successful or not) 43 | 44 | Packet Tracer PC 0 Command Line 1.0\ 45 | C:\>ping 192.168.1.1\ 46 | Pinging 192.168.1.1 with 32 bytes of data:\ 47 | Reply from 192.168.1.1: bytes=32 time<1ms TTL=255\ 48 | Reply from 192.168.1.1: bytes=32 time<1ms TTL=255\ 49 | Reply from 192.168.1.1: bytes=32 time<1ms TTL=255\ 50 | Reply from 192.168.1.1: bytes=32 time<1ms TTL=255\ 51 | Ping statistics for 192.168.1.1:\ 52 | Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),\ 53 | Approximate round trip times in milli-seconds:\ 54 | Minimum = 0ms, Maximum = 0ms, Average = 0ms\ 55 | C:\>telnet 192.168.1.1\ 56 | Trying 192.168.1.1 ...Open\ 57 | User Access Verification\ 58 | Password: \ 59 | R1>en\ 60 | Password: \ 61 | R1#\ 62 | 63 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Cisco Packet Tracer Practicals 2 | 3 | [![Tweet](https://img.shields.io/twitter/url/http/shields.io.svg?style=social)](https://twitter.com/intent/tweet?text=Important%20Cisco%20Packet%20Tracer%20Practicals%20created%20by%20Swati%20Tripathi.%20Go%20and%20Check%20it%20out%20here:&url=https://github.com/swati-gwc/Cisco-Packet-Tracer-Practicals&hashtags=ccna,ciscopackettracer,telnet,router,switch) 4 |
5 | :star: Star it on GitHub — it helps! 6 | 7 | ### About Packet Tracer:
8 | Packet Tracer is an important tool because it is an essential part of preparing for networking exams like the CCNA. Cisco certifications like the CCNA require candidates to complete practice labs, virtual environments that imitate a live networking environment.
9 | 10 | Tools like Packet tracer are used for practice labs and help students to take their book learning and apply it to a real-time environment. Being able to design networks with topology elements like nodes, routers and cables teaches the user how networks are made.
11 | 12 | ### Purpose of this repository:
13 | It contains the lab experiments performed on Cisco Packet Tracer.
You can download these .pkt files and run them on cisco packet tracer on your laptop/desktop and play around with the network topology, designs, etc that has already been created. 14 | 15 | ### How to use this repo: 16 | Make sure you have Cisco Packter tracer installed on your local machine (laptop, desktop). Then go to any .pkt file that you want to see, use or try on your Packet Tracer. Click on download button to download that file. After installation, you will be able to open it on your Packet Tracer and make changes to it. 17 | 18 | ### List of experiments : 19 | 20 | 1. [DNS, DHCP and HTTP Server configuration](https://github.com/swati-gwc/Cisco-Packet-Tracer-Practicals/blob/master/DNS%2BDHCP%2BHTTP%20Configuration.pkt) 21 | 2. [DNS Configuration](https://github.com/swati-gwc/Cisco-Packet-Tracer-Practicals/blob/master/dnsConfiguration.pkt) 22 | 3. [Http Server Configuration](https://github.com/swati-gwc/Cisco-Packet-Tracer-Practicals/blob/master/HttpServerConfiguration.pkt) 23 | 4. [TELNET on Router](https://github.com/swati-gwc/Cisco-Packet-Tracer-Practicals/blob/master/telnetOnRouter.pkt) 24 | 5. [TELNET on Switch](https://github.com/swati-gwc/Cisco-Packet-Tracer-Practicals/blob/master/TelnetConfigFor%20Switch.pkt) 25 | 6. [WLAN configuration](https://github.com/swati-gwc/Cisco-Packet-Tracer-Practicals/blob/master/SETUP%20WLAN.pkt) 26 | 27 | ### YouTube Videos (Step By Step Tutorials on following topics) 28 | 29 | 1. [Telnet on Switch](https://youtu.be/hP7mrNW9HFo) 30 | 2. [Telnet on Router](https://youtu.be/lpBblkiUUuU) 31 | 32 | ### Read Blogs Written By Me 33 | 34 | 1. [Telnet on Switch](https://swatispeaks.medium.com/configure-telnet-on-switch-in-cisco-packet-tracer-48b4473da2f8) 35 | 36 | 37 | 38 | ### Want to Contribute?
39 | Feel free to open an issue if you think there is any error, changes or addition required in this repo. 40 | Then make a PR and help everyone around who want to learn packet tracer. 41 | Before proceeding you MUST read CONTRIBUTING.md 42 | 43 | --------------------------------------------------------------------------------