Display Commands and Basic Troubleshooting

Key Takeaways

  • display commands are the primary VRP visibility tools; most can run from user-view and are non-disruptive.
  • Core HCIA displays include display ip interface brief, display ip routing-table, display arp, display vlan, display version, and display device.
  • ping and tracert validate end-to-end reachability and path; use them after confirming local interface and routing state.
  • A structured fault process—symptom → layer check → display evidence → minimal change → verify → save—beats random reconfiguration.
  • Exam traps include diagnosing from the wrong view, trusting memory without display proof, and confusing display output with configuration commands.
Last updated: July 2026

Visibility Before Change

On Huawei gear, skilled operators look before they type. display commands reveal interface health, IP addressing, MAC/ARP bindings, VLAN membership, routes, software version, and hardware presence. H12-811 items often paste shortened outputs and ask what is wrong or which command produced the view.

Most display commands work in user-view and also from system-view. Prefer verifying from user-view during exams and labs so you do not accidentally enter configuration mode under stress.

Core display Commands for HCIA

CommandWhat you learn
display versionVRP software version, uptime, basic platform identity
display deviceHardware slots/modules present and status (model-dependent detail)
display ip interface briefInterface IP, physical/protocol status snapshot
display interface GigabitEthernet0/0/1Deep counters, errors, duplex/speed, last flapping hints
display vlanVLAN list and port membership overview
display mac-addressMAC address table (switching path)
display arpIP-to-MAC ARP entries
display ip routing-tableActive routes in the routing table
display current-configurationRunning config evidence
display saved-configurationStartup config evidence
display usersWho is logged in (management awareness)

Memorize the six-pack that appears constantly in associate materials:

  1. display ip interface brief
  2. display ip routing-table
  3. display arp
  4. display vlan
  5. display version
  6. display device

Interpreting display ip interface brief

This is often the first command after login. Mentally scan:

Field focusHealthy signProblem sign
Interface listExpected ports presentMissing VLANIF or wrong name
IP addressCorrect address/maskUnnumbered when you expected an IP; wrong subnet
Physical statusupdown (cable, shutdown, hardware)
Protocol statusupdown (Layer 3/line protocol issues)

If physical is down, fix Layer 1/admin state before blaming OSPF. If physical is up but protocol is down, think about Layer 2/3 dependencies (for example PPP, or address conflicts depending on context).

Admin-down interfaces often result from shutdown. Bring them up with undo shutdown in interface-view—linking back to CLI view skills.

Routing Table Quick Read

display ip routing-table shows how the device will forward. For HCIA static and OSPF chapters you will refine this skill, but the management chapter already needs:

  • Is there a route to the destination network?
  • Is there a default route?
  • Does the next hop look sane?
  • Did your new static route appear after configuration (and after save if rebooting later)?

No route → packet will not leave correctly even if the local interface IP is perfect.

ARP and VLAN Displays

display arp answers: “Does this device know the MAC for a given next hop or host IP?” Incomplete ARP can mean:

  • Host is off or firewalled
  • Wrong VLAN / gateway
  • Layer 2 path broken
  • Addressing mismatch

display vlan answers: “Is the port in the VLAN I think it is?” Combined with access/trunk knowledge from later chapters, it is the switching counterpart to the routing table.

When inter-VLAN routing fails, a productive trio is:

  1. display vlan
  2. display ip interface brief (VLANIF up/up with correct IP)
  3. display arp / ping

Version and Device Hardware

display version confirms you are on the expected VRP release before following version-specific lab notes. Uptime can hint at unexpected reloads.

display device (and related hardware displays) confirm cards/modules are registered—useful on chassis or modular platforms and for “is the interface hardware even present?” questions.

ping and tracert on VRP

Connectivity tools run from user-view:

<Huawei> ping 192.0.2.1
<Huawei> tracert 192.0.2.1
ToolPrimary question answered
pingIs the target reachable (ICMP echo) with the current routing/policy?
tracertWhich hops appear along the path, and where does it stop?

Notes for exam and lab:

  • Ping success proves reachability under current ICMP rules, not that every application port works.
  • Ping failure is a symptom, not a root cause—follow with interface, ARP, VLAN, and routing displays.
  • Extended ping options exist on many platforms (source IP, count, size); HCIA mainly expects standard usage and interpretation of success vs failure.
  • tracert (Huawei spelling) is the counterpart to traceroute; recognize the keyword form used on VRP.

Source-interface awareness matters when multiple interfaces exist: pinging from the “wrong” source can fail ACL or reverse-path expectations in advanced designs. At HCIA, start with simple pings between directly connected subnets, then across a gateway.

A Simple Troubleshooting Flow

Use the same storyline for almost every ticket:

  1. Clarify symptom — “PC cannot reach gateway” vs “OSPF down” vs “cannot SSH.”
  2. Local device healthdisplay version / display device if hardware or reload is suspected.
  3. Interface layerdisplay ip interface brief, then detailed display interface if errors matter.
  4. Switching contextdisplay vlan, MAC table as needed.
  5. L3 adjacency contextdisplay arp, display ip routing-table.
  6. Path testping, then tracert if multi-hop.
  7. Config evidencedisplay current-configuration for the feature under suspicion.
  8. Change minimally — fix the proven fault only.
  9. Re-verify with the same displays and ping.
  10. save if the fix must survive reboot.

This flow prevents the classic mistake of redistributing OSPF because a port was administratively down.

Mapping Symptoms to First Commands

SymptomFirst displays / tests
No remote SSHdisplay ip interface brief, ping management IP, user/AAA config
Host cannot ping gatewayVLAN membership, VLANIF IP, ARP, access port state
New static route “not working”display ip routing-table, next-hop ARP, outbound interface status
Intermittent performanceInterface error counters, duplex mismatches (detailed interface display)
“Config disappeared”Compare current vs saved; ask whether reboot occurred without save
Wrong software behavior after change windowdisplay version, confirm image and last reload time

Display vs Configuration Mental Model

IntentFamily
Observedisplay ..., ping, tracert
Changesystem-view feature commands
Persistsave
Reverse changeundo ...
Wipe startupreset saved-configuration

Exam distractors mix these families. “Which command shows the routing table?” → display ip routing-table, not ip route-static.

Worked Mini-Scenario

Problem: From Switch A you cannot ping 10.1.1.2 on Switch B.

  1. On A: display ip interface brief — confirm source interface IP and up/up.
  2. On A: display vlan — confirm the connecting port is in the expected VLAN if Layer 2 switched.
  3. On A: ping 10.1.1.2 — document failure.
  4. On A: display arp — is there an incomplete entry for 10.1.1.2?
  5. On A: display ip routing-table — is 10.1.1.0/24 connected or routed?
  6. On B: repeat interface and VLAN checks.
  7. Only after evidence, fix the actual fault (for example undo shutdown, correct access VLAN, or correct IP/mask).
  8. Ping again; save.

Exam Traps

  • Choosing a configuration command when the question asks for verification.
  • Ignoring protocol down while celebrating a configured IP address in the text of the question.
  • Using Cisco show ip route wording instead of Huawei display ip routing-table.
  • Assuming ping success means the running config is saved.
  • Troubleshooting routing before confirming the interface is not shut down.
  • Forgetting Huawei tracert spelling in multiple-choice stems.

Practice Goals

After this section you should, without notes, list the six-pack of display commands and state what failure each best exposes. You should also narrate a five-step troubleshoot for “cannot ping across VLANs” using only VRP keywords. Those habits transfer directly into VLAN, STP, OSPF, ACL, and NAT chapters where deeper feature displays are added on top of this foundation.

Device management on HCIA is not a soft introductory topic—it is the language the rest of the exam speaks. Views, save discipline, secure access, and display-driven troubleshooting are how Huawei expects an associate engineer to work every day.

Test Your Knowledge

Which command provides a concise snapshot of interface IP addresses and up/down status on Huawei VRP?

A
B
C
D
Test Your Knowledge

An engineer needs to inspect the active IP routing table on a Huawei router. Which command should be used?

A
B
C
D
Test Your Knowledge

What is the primary purpose of the tracert command on VRP?

A
B
C
D
Test Your Knowledge

A port has an IP configured in the running configuration, but display ip interface brief shows the interface as administratively down. What is the best next configuration action?

A
B
C
D