Week 6 Lab 6 1 - JadenGil/Jaden-Tech-Journal GitHub Wiki

Once I started the lab I opened R1 and entered the following commands

Router>enable

Router#configure terminal

Router(config)#hostname R1

R1(config)#interface fastethernet 0/0

R1(config-if)#ip address 10.0.0.1 255.0.0.0

R1(config-if)#no shutdown

R1(config-if)#exit

R1(config)#interface serial 0/0/0

R1(config-if)#ip address 20.0.0.2 255.0.0.0

R1(config-if)#no shutdown

R1(config-if)#exit

Then I went to R0 and entered these commands

Router>enable

Router#configure terminal

Router(config)#hostname R0

R0(config)#interface fastethernet 0/0

R0(config-if)#ip address 30.0.0.1 255.0.0.0

R0(config-if)#no shutdown

R0(config-if)#exit

R0(config)#interface serial 0/0/0

R0(config-if)#ip address 20.0.0.1 255.0.0.0

R0(config-if)#clock rate 64000

R0(config-if)#bandwidth 64

R0(config-if)#no shutdown

R0(config-if)#exit

I then went back to R1 and entered:

R1(config)#ip route 30.0.0.0 255.0.0.0 20.0.0.1

Then I went int R0 and entered

R0(config)#ip route 50.0.0.0 255.0.0.0 20.0.0.2

After all of those commands were entered I ran test pings on all of the PCs and they all went through

I then went to R1 CLI and entered:

R1(config)#interface fastEthernet 0/0

R1(config-if)#ip nat inside

R1(config-if)#exit

R1(config)#interface serial 0/0/0

R1(config-if)#ip nat outside

R1(config-if)#exit

R1(config)#ip nat inside source static 10.0.0.2 50.0.0.1