# Lab01 -- packet tracer edition ###### tags: `Lab` Documentation while playing around in packet tracer... ## Virtual hardware After some experimenting, router 1841 apears to be the most simular to the one we used during our lab, you'll have to add a serial connector to it though: ![](https://i.imgur.com/ePpPeMs.png) After you can just connect the hardware togheter like we did in our lab asignment: ![](https://i.imgur.com/HVIrXCw.png) ## Steps ### Allow pinging from one laptop to the other #### Configure the serial one on one connection ##### configureer router Kies no ``` Would you like to enter the initial configuration dialog? [yes/no] ``` duw enter ##### Router 1 Disable domain lookup, no time to waste :) ``` ena conf t no ip domain-lookup end copy r s ``` configure the serial connector ``` conf t int Serial0/0/1 ip add 91.182.207.205 255.255.255.252 no shut end ``` ##### Router 2 Disable domain lookup, no time to waste :) ``` ena conf t no ip domain-lookup end copy r s ``` configure the serial connector ``` conf t int Serial0/0/0 ip add 91.182.207.206 255.255.255.252 no shut end ``` #### Result If it was succesfully configured you should see visable feedback that it can detect each other: ![](https://i.imgur.com/uCSmdjm.png) If thats the case, save again ? #### Configere both networks `sho ip int` Check what interfaces there are to put the network on. ##### Network 1 ![](https://i.imgur.com/EiwvrJ9.png) Use the available interface to host the local network on ``` conf t int fa0/0 ip add 10.8.8.1 255.255.255.0 no shut ``` ##### Network 2 ![](https://i.imgur.com/pTS2pqb.png) Use the available interface to host the local network on ``` conf t int fa0/0 ip add 172.16.8.1 255.255.254.0 no shut ``` ##### Result If everything is connected properly it should light up green ![](https://i.imgur.com/k3l6u4R.png) It's also possible to check it by pinging the router from the designated laptop #### Adding routing to get things connected over the Serial connection ##### Router 1 ``` conf t ip route 0.0.0.0 0.0.0.0 91.182.207.206 end ``` ##### Router 2 ``` conf t ip route 10.8.8.0 255.255.255.0 91.182.207.205 end ``` ##### Result laptop can succesfully ping over the serial bridge ![](https://i.imgur.com/f5ljhxT.png) #### Preparing to add network router Basicly adding a swtich and testing the connection again ![](https://i.imgur.com/qkCnv1x.png) pinging the laptop0 still works :) ![](https://i.imgur.com/Tw4ITcQ.png) #### Adding internet acces