Lab 6 1 - zacharylongo/Tech-Journals GitHub Wiki
Lab Assignment:

**Commands/Config **
R1:
R0:

Routing configuration:
- R1(config)#ip route 30.0.0.0 255.0.0.0 20.0.0.1
- R0(config)#ip route 50.0.0.0 255.0.0.0 20.0.0.2
** Static Nat on R1 **
-
First, we must define the "outside" and "inside" for the NAT interface

-
Create a static rule (as the lab explains)

Functionality Test
- Connect to 50.0.0.1 on the web browser on any of your desktops, the following should appear:

Relevant Commands
- config t (Configure terminal in shorthand) Puts terminal into config mode
- no shutdown Keeps port open
- Interface fastethernet 0/0 interface is used to access the individual interface of each connection. In this example it was fastethernet 0/0
- ip route 30.0.0.0 255.0.0.0 20.0.0.1 Enables routing between two routers. Syntax is Switch Address + subnet mask + router address.
- ip nat inside/outside Dictates what the Inside / Outside would be for a NAT interface
- ip nat inside source static 10.0.0.2 50.0.1 Sets a static rule for desired NAT connection.
Issues/Struggles: I had no issues.
Lab Questions: N/A