LOGBOOK

HELP

Quiz Entry - updated: 2026.07.05

What is a routed port on a Layer 3 switch, and how do you create one?

A routed port is a Layer 2 switchport that has been converted into a Layer 3 interface (like a router port) using the no switchport command, allowing it to be assigned an IP (Internet Protocol) address.

Why you need routed ports:

  • To connect a Layer 3 switch to another Layer 3 device (router or another L3 switch)
  • The routed port acts like a physical router interface
  • You can then configure static or dynamic routing between the devices

How to create a routed port:

D1(config)# interface G1/0/1
D1(config-if)# no switchport
D1(config-if)# ip address 10.10.10.2 255.255.255.0
D1(config-if)# no shut

Key difference from regular switchports:

  • A regular switchport operates at Layer 2 (switches frames based on MAC (Media Access Control))
  • A routed port operates at Layer 3 (routes packets based on IP)
  • A routed port is not associated with any VLAN (Virtual Local Area Network)
  • It behaves identically to a physical interface on a Cisco IOS (Internetwork Operating System) router

Tip: Think of no switchport as telling the switch: "Stop being a switch on this port — act like a router instead."

Go deeper:

From Quiz: NETW2 / Inter-VLAN Routing | Updated: Jul 05, 2026