Basic Networking
We will go over how basic networking works, how to configure it, and how to troubleshoot some common issues we may run into.
Introduction
One of the basic functions of Defensive Cyber Operations (DCO) is a general understanding of how data travels between networked systems. In order to do this, there are a few key pieces of information you will need to know to configure a very basic switch or router and how to integrate those devices with a customer network.
This document will demonstrate from the perspective of Cisco Networking Devices
Switching
Setting your hostname
Switch> enable
Switch# conf t
Switch(config)# hostname Test-Switch
Test-Switch(config)# Setting your password
Switch(config)# enable secret <password>Creating a VLAN and Setting the Name
A VLAN is a way to logically break up networks that share the same physical LAN. Such as if you had two completely different networks communicating over the same switch, you would configure two VLANS and perform Inter-VLAN routing.
Assign an Interface to a VLAN
Assigning an IP to a VLAN
Inter-VLAN Routing
There are two primary methods of performing Inter-VLAN routing. The first is the easiest but requires a layer 3 Switch. The second is slightly more complex and requires a layer 2 switch and a router. Method two is typically used on legacy kits.
Method 1 - Layer 3 Switching

Method 2 - Router on a Stick

Clearing a Switch
Port Security
DHCP
Remote Access
Spanning
Last updated