Network Config Report

Network config docs

Network Assignment

Router-on-a-stick, VLSM subnetting, static routing, LAN security, DHCP, EtherChannel and SSH.

64 subnets on Newton16 subnets on Einstein31 steps completed

Task 1 โ€” Router on a Stick

Create sub-interfaces on Newton and Einstein for VLANs 10 and 20 using dot1Q trunking.

COMPLETE
STEP 03Newton โ€” WAN interface (Gi0/0/0)

Assigns 99.0.0.1 to Newton's WAN-facing port. Without this the two routers cannot communicate at all.

interface GigabitEthernet0/0/0
 ip address 99.0.0.1 255.255.255.0
 no shutdown
ping 99.0.0.2 from Newton โ€” 100% success
STEP 04Einstein โ€” WAN interface (Gi0/0/0)

Assigns 99.0.0.2 to Einstein's WAN-facing port, completing the point-to-point WAN link.

interface GigabitEthernet0/0/0
 ip address 99.0.0.2 255.255.255.0
 no shutdown
STEP 05Newton โ€” Sub-interfaces for VLAN 10 and 20 (Gi0/0/1)

Router-on-a-stick: one physical cable to Heisenberg carries both VLANs. dot1Q encapsulation tags traffic so the router separates them logically into two sub-interfaces.

interface GigabitEthernet0/0/1
 no shutdown

interface GigabitEthernet0/0/1.10
 encapsulation dot1Q 10
 ip address 172.16.0.1 255.255.255.252
 no shutdown

interface GigabitEthernet0/0/1.20
 encapsulation dot1Q 20
 ip address 172.16.0.5 255.255.255.252
 no shutdown
show ip interface brief โ€” both sub-interfaces up/up
STEP 06Heisenberg โ€” VLANs and port assignments

Fa0/6โ€“12 assigned to VLAN 10, Fa0/13โ€“18 to VLAN 20. Fa0/5 is the trunk port carrying both VLANs tagged up to Newton on one cable.

vlan 10
 name VLAN10
vlan 20
 name VLAN20

interface range FastEthernet0/6 - 12
 switchport mode access
 switchport access vlan 10
 no shutdown

interface range FastEthernet0/13 - 18
 switchport mode access
 switchport access vlan 20
 no shutdown

interface FastEthernet0/5
 switchport mode trunk
 switchport trunk allowed vlan 10,20
 no shutdown
show vlan brief โ€” VLAN 10 on Fa0/6โ€“12, VLAN 20 on Fa0/13โ€“18
STEP 07PC0 โ€” Static IP configuration

PC0 gets the only remaining /30 address after Newton takes .1. Connected to Heisenberg Fa0/6 (VLAN 10).

FieldValue
IP Address172.16.0.2
Subnet Mask255.255.255.252
Default Gateway172.16.0.1
ping 99.0.0.1 from PC0 โ€” 100% success
STEP 08Einstein โ€” Sub-interfaces for VLAN 10 and 20 (Gi0/0/1)

Same as Step 5 but using Einstein's /28 subnets โ€” 14 usable hosts per subnet compared to Newton's tight /30.

interface GigabitEthernet0/0/1
 no shutdown

interface GigabitEthernet0/0/1.10
 encapsulation dot1Q 10
 ip address 192.168.0.1 255.255.255.240
 no shutdown

interface GigabitEthernet0/0/1.20
 encapsulation dot1Q 20
 ip address 192.168.0.17 255.255.255.240
 no shutdown
show ip interface brief โ€” both sub-interfaces up/up
STEP 09Schrodinger โ€” VLANs and port assignments

Mirror of Heisenberg. VLAN 10 on Fa0/6โ€“12, VLAN 20 on Fa0/13โ€“18, trunk on Fa0/5 to Einstein.

vlan 10
 name VLAN10
vlan 20
 name VLAN20

interface range FastEthernet0/6 - 12
 switchport mode access
 switchport access vlan 10
 no shutdown

interface range FastEthernet0/13 - 18
 switchport mode access
 switchport access vlan 20
 no shutdown

interface FastEthernet0/5
 switchport mode trunk
 switchport trunk allowed vlan 10,20
 no shutdown
show vlan brief โ€” correct VLAN assignments
STEP 10PC1 โ€” Static IP configuration

PC1 connects to Schrodinger Fa0/18 (VLAN 20). Einstein's sub-interface holds .17, so PC1 gets .18.

FieldValue
IP Address192.168.0.18
Subnet Mask255.255.255.240
Default Gateway192.168.0.17
ping 99.0.0.2 from PC1 โ€” 100% success