# 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:

After you can just connect the hardware togheter like we did in our lab asignment:

## 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:

If thats the case, save again ?
#### Configere both networks
`sho ip int` Check what interfaces there are to put the network on.
##### Network 1

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

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

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 
#### Preparing to add network router
Basicly adding a swtich and testing the connection again

pinging the laptop0 still works :) 
#### Adding internet acces