Net330 OSPF Class Hardware Lab - ConnorEast/Tech-Journal GitHub Wiki
![image](https://private-user-images.githubusercontent.com/157134218/379043859-a6d5fa43-9c9f-4a17-a29c-5f384b8b518e.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3MzQ4MzIwNDAsIm5iZiI6MTczNDgzMTc0MCwicGF0aCI6Ii8xNTcxMzQyMTgvMzc5MDQzODU5LWE2ZDVmYTQzLTljOWYtNGExNy1hMjljLTVmMzg0YjhiNTE4ZS5wbmc_WC1BbXotQWxnb3JpdGhtPUFXUzQtSE1BQy1TSEEyNTYmWC1BbXotQ3JlZGVudGlhbD1BS0lBVkNPRFlMU0E1M1BRSzRaQSUyRjIwMjQxMjIyJTJGdXMtZWFzdC0xJTJGczMlMkZhd3M0X3JlcXVlc3QmWC1BbXotRGF0ZT0yMDI0MTIyMlQwMTQyMjBaJlgtQW16LUV4cGlyZXM9MzAwJlgtQW16LVNpZ25hdHVyZT00YjVmOTdkNWIxNGJlZGVjNDk5Mjk3ODM0NmU4MzZhYzQ5OWM3OGIwZDAwNjUwMTU1MWQzYzlmMDQ2NmMxYzkyJlgtQW16LVNpZ25lZEhlYWRlcnM9aG9zdCJ9.ZuVpq1SPPsOSmh6pNX5HgdjDjFM6ulZJpgmm-yquG0I)
VLAN | Network Name | Net Address | Subnet | Slash | Default | Gateway Router |
---|---|---|---|---|---|---|
100 | Border to DC | 10.17.1.0 | 255.255.255.248 | /29 | 10.17.1.1 | Border |
110 | East-Router2 to DC | 10.17.1.20 | 255.255.255.252 | /30 | 10.17.1.21 | East-Router |
120 | DC to WestRouter | 10.17.1.32 | 255.255.255.252 | /30 | 10.17.1.33 | Data Center Router |
130 | East | 10.17.20.0 | 255.255.255.0 | /24 | 10.17.20.1 | East Router |
140 | West | 10.17.40.0 | 255.255.255.0 | /24 | 10.17.40.1 | West Router |
(Config-if)# |
|
(Config-if)# | No shut |
(config)# | Interface ge1/0/1 | Switchport access vlan 100 |
(config)# | Interface ge1/0/2 | Switchport access vlan 110 |
(config)# | Interface ge1/0/3 | Switchport access vlan 120 |
Switch(config)# | router ospf 1 |
Switch(config-router)# | network 10.17.1.1 0.0.0.7 area 0 |
Switch(config-router)# | network 10.17.1.20 0.0.0.3 area 0 |
Switch(config-router)# | 10.17.1.32 0.0.0.3 area 0 |
Step 1: Select the port interfaces which will be plugged in and set them equal to their respective and set their port interfaces = to the default gateway. Examples: East Router FA0/0 = IP address 10.17.1.21.
Step 2: Confirm each interface is set to no shut
Step 3: Configure OSPF using the NET ID and the reversed Subnet mask: Example - Network 10.17.1.21 0.0.0.7 area 0
The original cabling is not correctly done in the original packet tracer file. As such confirm that the correct ether/fa port is connected to each machine. This can be done by hovering over the connector.
In the table where it lists the Network address. The first address should be set on the main device. For instance where it says "East-Router2 to DC" the East router IP should be 10.17.1.21 while the DC address for the connected port should be 10.7.1.22
Setting up OSPF on west router requires the network address of the systems on the west router 10.7.40.0/24 and that of the DC 10.7.32 /30. The command syntax would be the same as what is used on the DC server