Network Fundamentals
A 48-bit hardware identifier burned into every network interface card.
A Layer 2/3 protocol that maps known IP addresses to unknown MAC addresses.
show ip arpA Layer 3 protocol used for network diagnostics and error reporting.
ping 192.168.1.1
traceroute 10.0.0.1A Layer 4 connection-oriented protocol that guarantees reliable, ordered delivery.
A Layer 4 connectionless protocol that prioritises speed over reliability.
The set of all devices that receive a Layer 2 broadcast frame.
A network segment where two devices can cause a collision if they transmit simultaneously.
The largest size (in bytes) of a frame or packet that can be sent on a network link.
A virtual IP address on a router that is always up and never tied to a physical interface.
interface Loopback0
ip address 1.1.1.1 255.255.255.255IP Addressing
A 32-bit value that divides an IP address into the network and host portions.
A method of IP address allocation that uses prefix notation instead of fixed class boundaries.
Using different subnet mask lengths within the same major network to minimise IP waste.
Using the same subnet mask length for all subnets in a network.
The inverse of a subnet mask, used in ACLs and OSPF network statements.
The IP address of the router a host sends packets to when the destination is on a different subnet.
Routing
A link-state routing protocol that calculates the best path using cost based on bandwidth.
router ospf 1
network 10.0.0.0 0.0.0.255 area 0
show ip ospf neighbor
show ip ospf database
show ip route ospfThe elected OSPF router on a multi-access network that collects and distributes LSAs on behalf of all neighbours.
ip ospf priority 200 ! on the interface — higher wins DR election
show ip ospf neighborThe OSPF router elected to take over as DR if the current DR fails.
The information packets OSPF routers flood to share their link state with all other OSPF routers.
A 32-bit value that uniquely identifies an OSPF router within an OSPF domain.
router ospf 1
router-id 1.1.1.1
show ip ospf ! shows current Router IDA value (0–255) that tells a router how trustworthy a routing source is when multiple sources advertise the same prefix.
The value a routing protocol uses to measure the desirability of a route to the same destination.
A catch-all route (0.0.0.0/0) used when no more-specific route exists in the routing table.
ip route 0.0.0.0 0.0.0.0 10.0.0.1 ! static default route
ip route 0.0.0.0 0.0.0.0 GigabitEthernet0/0A manually configured route that does not update automatically when the network changes.
ip route 192.168.2.0 255.255.255.0 10.0.0.2 ! next-hop
ip route 192.168.2.0 255.255.255.0 GigabitEthernet0/1 ! exit interfaceA backup static route with a higher AD than the primary dynamic route, installed only if the primary fails.
ip route 192.168.2.0 255.255.255.0 10.0.0.3 200 ! AD of 200 — higher than OSPF (110)A Cisco proprietary FHRP that provides a virtual IP gateway shared by an active and standby router.
interface GigabitEthernet0/0
standby 1 ip 192.168.1.254
standby 1 priority 110
standby 1 preemptA category of protocols that provide a virtual gateway IP shared across multiple routers for redundancy.
An open-standard FHRP where routers elect a Master that owns the virtual IP and responds to ARP requests.
A Cisco proprietary FHRP that provides redundancy and load balancing using multiple virtual MACs.
A virtual Layer 3 interface on a switch used to route between VLANs.
interface vlan 10
ip address 192.168.10.1 255.255.255.0
no shutdownSwitching
A link aggregation technology that bundles multiple physical Ethernet links into one logical link.
interface range GigabitEthernet0/1-2
channel-group 1 mode active ! LACP active
channel-group 1 mode desirable ! PAgP
interface Port-channel 1
switchport mode trunkThe IEEE 802.3ad open-standard protocol used to negotiate EtherChannel formation.
interface range GigabitEthernet0/1-2
channel-group 1 mode active ! LACP active — initiates
channel-group 1 mode passive ! LACP passive — waitsCisco's proprietary EtherChannel negotiation protocol.
VLANs
A logical segmentation of a switch network into separate broadcast domains.
vlan 10
name SALES
interface GigabitEthernet0/1
switchport mode access
switchport access vlan 10A switch port configured to carry traffic for multiple VLANs using 802.1Q tags.
interface GigabitEthernet0/1
switchport mode trunk
switchport trunk allowed vlan 10,20,30
switchport trunk native vlan 99A switch port assigned to a single VLAN, connecting end devices such as PCs and printers.
interface GigabitEthernet0/2
switchport mode access
switchport access vlan 20The VLAN whose frames pass untagged on a trunk link — VLAN 1 by default.
A dedicated VLAN for IP phone traffic, configured on an access port alongside a data VLAN.
interface GigabitEthernet0/3
switchport mode access
switchport access vlan 10
switchport voice vlan 20A Cisco proprietary protocol that automatically negotiates trunk formation between switches.
switchport mode dynamic desirable ! actively negotiates trunk
switchport mode dynamic auto ! passively waits
switchport nonegotiate ! disables DTPSpanning Tree
A Layer 2 loop-prevention protocol that blocks redundant paths in a switched network.
show spanning-tree
show spanning-tree vlan 10An enhanced version of STP that converges in seconds instead of 30–50 seconds.
A Cisco enhancement of STP that runs a separate spanning tree instance for each VLAN.
The STP control frames that switches exchange to elect the Root Bridge and maintain the spanning tree.
An STP feature that bypasses the Listening and Learning states on access ports, putting them immediately into Forwarding.
interface GigabitEthernet0/1
spanning-tree portfast
spanning-tree portfast default ! enables globally on all access portsShuts down a PortFast-enabled port if it receives a BPDU, protecting the spanning tree.
interface GigabitEthernet0/1
spanning-tree bpduguard enable
spanning-tree portfast bpduguard default ! globalPrevents a port from becoming the Root Port, protecting the Root Bridge position.
interface GigabitEthernet0/2
spanning-tree guard rootProtects against STP loops by detecting unidirectional link failures where BPDUs stop arriving.
interface GigabitEthernet0/1
spanning-tree guard loop
spanning-tree loopguard default ! globalIP Services
A protocol that automatically assigns IP addresses and network parameters to clients.
ip dhcp pool SALES
network 192.168.1.0 255.255.255.0
default-router 192.168.1.1
dns-server 8.8.8.8
ip dhcp excluded-address 192.168.1.1 192.168.1.10A hierarchical system that translates human-readable hostnames into IP addresses.
A technique that translates private IP addresses to public IP addresses for Internet access.
ip nat inside source static 192.168.1.10 203.0.113.5 ! static NAT
ip nat inside source list 1 pool PUBLIC overload ! dynamic PATA NAT variant that maps multiple private IP addresses to a single public IP using different port numbers.
ip nat inside source list 1 interface GigabitEthernet0/0 overload ! PAT using interface IPA simple UDP-based file transfer protocol used to backup and restore Cisco IOS images and configs.
copy running-config tftp ! backup config to TFTP
copy tftp flash: ! restore IOS image from TFTPA TCP-based protocol for transferring files that supports authentication and directory listing.
Mechanisms that prioritise certain types of network traffic to guarantee performance.
A 6-bit field in the IP header used to mark packets for QoS treatment.
A 3-bit priority field in the 802.1Q VLAN tag used to mark Ethernet frames for QoS.
Security
An ordered list of permit/deny rules applied to a router interface to filter network traffic.
access-list 10 permit 192.168.1.0 0.0.0.255
access-list 100 permit tcp 10.0.0.0 0.0.0.255 any eq 80
interface GigabitEthernet0/0
ip access-group 100 inA switch feature that limits the number of MAC addresses allowed on a port.
interface GigabitEthernet0/1
switchport port-security
switchport port-security maximum 2
switchport port-security violation shutdown
switchport port-security mac-address stickyA switch security feature that filters DHCP messages to prevent rogue DHCP servers.
ip dhcp snooping
ip dhcp snooping vlan 10,20
interface GigabitEthernet0/1
ip dhcp snooping trust ! uplink to real DHCP serverA switch security feature that validates ARP packets using the DHCP Snooping binding table to prevent ARP spoofing.
ip arp inspection vlan 10
interface GigabitEthernet0/1
ip arp inspection trust ! uplink — trustedAn encrypted remote management protocol used to securely access Cisco devices.
hostname R1
ip domain-name example.com
crypto key generate rsa modulus 2048
ip ssh version 2
line vty 0 4
transport input ssh
login localAn unencrypted remote management protocol that should be replaced by SSH.
Authentication, Authorisation, and Accounting — the three-component framework for controlling network access.
An open-standard AAA protocol that uses UDP and encrypts only the password.
A Cisco-developed AAA protocol that uses TCP and encrypts the entire authentication payload.
Wireless
The current standard Wi-Fi security protocol using AES-CCMP encryption.
The latest Wi-Fi security standard featuring SAE (Simultaneous Authentication of Equals) and enhanced protection.
An IEEE standard for port-based authentication that requires credentials before granting network access.
Automation
An API architectural style that uses HTTP methods (GET, POST, PUT, DELETE) to interact with network resources.
A lightweight, human-readable data format used to exchange data between APIs and automation tools.
An architecture that separates the network control plane from the data plane, enabling centralised programmability.
APIs on an SDN controller that allow applications and management tools to communicate with the controller.
APIs on an SDN controller that communicate with and programme the network devices below.
Cisco's SDN controller and network management platform providing centralised automation and analytics.
IPv6
An IPv6 address automatically assigned to every interface, only valid on the local link (FE80::/10).
A globally routable IPv6 address equivalent to a public IPv4 address (2000::/3).
An IPv6 mechanism where hosts automatically generate their own global address from the network prefix advertised by a router.
A method of generating a 64-bit IPv6 interface ID from a 48-bit MAC address.
WAN
An encrypted tunnel over a public network that provides secure connectivity.
A suite of protocols providing authentication and encryption for IP traffic.
A permanent encrypted tunnel between two routers or firewalls connecting two offices.
A VPN that allows individual users to securely connect to a corporate network from any location.
Management
A protocol that synchronises clocks across network devices.
ntp server 216.239.35.0 ! configure NTP server
show ntp status
show ntp associationsA protocol used to monitor and manage network devices via a Network Management Station.
snmp-server community PUBLIC ro ! read-only community
snmp-server host 10.0.0.100 traps PUBLICA standard protocol for sending log messages from network devices to a central logging server.
logging 10.0.0.50 ! syslog server IP
logging trap warnings ! only send level 4 (Warning) and higher
logging on
show loggingTest your 200-301 knowledge
Now that you know the terms, put them to the test with 200-301 practice questions that mirror the real exam format.