This stage is about setting up the physical hardware and making sure everything works together as planned.
In this phase, the physical equipment is installed, and the basic and advanced configurations are set up to make sure the network functions smoothly and securely.
The physical setup of network devices, like switches and routers, is essential for stability and proper operation. Here’s how it works:
Once the physical setup is complete, we move to configuring the devices to work with each other. This part involves setting up basic settings, such as IP addresses and VLANs.
VLANs (Virtual Local Area Networks) are used to divide a physical network into smaller segments. Here’s how to set them up:
Spanning Tree Protocol (STP) prevents network loops—situations where data keeps circulating without a destination, causing slowdowns.
This section covers basic security setups, ensuring that only authorized devices and users can access the network.
ACLs are sets of rules that control which devices or types of traffic can enter or leave a network. ACLs are like “bouncers” at a club, deciding who can get in and who can’t.
AAA stands for Authentication, Authorization, and Accounting. This is a security framework that controls who can access devices and tracks their activities.
Advanced configurations help the network perform well and manage special types of traffic.
QoS is used to prioritize important data traffic over less important traffic, ensuring that critical applications have the bandwidth they need.
Multicast is a type of network traffic where data is sent from one source to multiple receivers, but only to those who need it, like streaming a video to specific users.
This covers the Install and Configure the Wired Network Solution phase in detail. Setting up the network properly here is essential for both performance and security, and each step ensures that the network will function as designed.
When setting up network devices, proper initialization is critical to ensuring security, manageability, and stability.
Configuring a unique hostname and securing remote access is essential.
Set a Unique Hostname
hostname Switch-Core01
Enable SSH for Secure Remote Access
ip domain-name example.com
crypto key generate rsa
ip ssh version 2
Create an Administrative User
username admin privilege 15 password StrongPass123
Proper log management helps with troubleshooting and security auditing.
Configure a Syslog Server
logging host 192.168.1.100
logging trap informational
VLANs help segment networks logically, improving security and efficiency.
Following 802.1Q VLAN standards ensures consistent VLAN management.
Define VLANs for Different Departments
vlan 10
name HR_Department
vlan 20
name IT_Department
Using consistent VLAN IDs across switches helps avoid misconfigurations.
Instead of manually assigning VLANs, 802.1X authentication dynamically assigns VLANs based on user identity.
Enable VLAN Assignment
vlan assignment enable
Link aggregation increases bandwidth and provides redundancy.
Static Link Aggregation (Manual Configuration)
interface range GigabitEthernet1/1/1-2
channel-group 1 mode on
Dynamic LACP (Link Aggregation Control Protocol)
interface range GigabitEthernet1/1/1-2
channel-group 1 mode active
STP prevents loops in redundant network paths but must be optimized for security and efficiency.
Prevents rogue switches from participating in STP, protecting the network from malicious reconfigurations.
spanning-tree bpduguard enable
Prevents unauthorized devices from becoming the STP root bridge.
spanning-tree guard root
Allows edge ports (PCs, printers, etc.) to transition to the forwarding state immediately, reducing network startup time.
spanning-tree portfast
ACLs help control network traffic and improve security.
Allow Only a Specific IP Range
access-list 10 permit 192.168.1.0 0.0.0.255
Allow HTTP Traffic but Deny Telnet
access-list 100 permit tcp any any eq www
access-list 100 deny tcp any any eq telnet
Apply ACL to an interface:
interface GigabitEthernet1/1/1
ip access-group 100 in
Port security prevents unauthorized devices from connecting to switch ports.
switchport port-security
switchport port-security maximum 2
switchport port-security mac-address sticky
Shutdown the port if a violation occurs
switchport port-security violation shutdown
Drop unauthorized traffic but keep the port active
switchport port-security violation restrict
Drop unauthorized traffic silently
switchport port-security violation protect
AAA secures device access and manages user authentication.
Configure RADIUS Server
radius-server host 192.168.1.200 key SecretKey123
Enable RADIUS for Authentication
aaa new-model
aaa authentication login default group radius local
Configure TACACS+ Server
tacacs-server host 192.168.1.201 key SecretKey456
Enable TACACS+ for Login
aaa authentication login default group tacacs+ local
Multicast improves network efficiency by sending data to multiple destinations without unnecessary duplication.
IGMP Snooping ensures multicast traffic is only forwarded to interested hosts.
ip igmp snooping
PIM is required for multicast routing across different network segments.
ip pim sparse-mode
By optimizing the installation and configuration of a wired network solution, network performance, security, and reliability can be significantly improved. Key takeaways include:
How is OSPF enabled and activated on an Aruba CX switch interface?
OSPF is enabled globally and then activated on Layer 3 interfaces using OSPF area configuration.
The typical process includes:
Enable OSPF routing globally.
Configure a router ID.
Assign OSPF to specific interfaces or networks.
Example logic:
Enable routing
Configure router ospf
Add interfaces to the appropriate area
OSPF then exchanges LSAs with neighbors and calculates routes using SPF algorithms.
A common exam trick is confusing VLAN interfaces vs physical interfaces. OSPF normally runs on Layer 3 interfaces such as SVIs or routed ports, not on Layer 2 ports.
Demand Score: 89
Exam Relevance Score: 90
What is the purpose of DHCP relay on an Aruba CX switch?
DHCP relay forwards DHCP broadcast requests from clients to a DHCP server located in another network.
DHCP discovery messages are broadcasts and cannot cross Layer 3 boundaries. DHCP relay allows a Layer 3 switch to forward those messages to a remote DHCP server using unicast.
The switch inserts its interface address (giaddr field) so the DHCP server knows which subnet issued the request.
This enables centralized DHCP infrastructure while supporting multiple VLANs.
Exam scenarios often describe clients unable to obtain addresses across VLANs; the correct solution is typically enabling DHCP relay on the VLAN interface.
Demand Score: 83
Exam Relevance Score: 87
What configuration concept enables active-active gateway redundancy in Aruba VSX deployments?
VSX uses active gateways with synchronized state between two switches.
In VSX architectures, both switches can forward traffic simultaneously using multi-chassis LAGs and active gateway functionality.
Unlike traditional active-standby redundancy methods, VSX enables:
Active-active forwarding
Independent control planes
State synchronization between peers
This improves performance and failover time.
Exam questions often test understanding that VSX does not behave like stacking technologies; it maintains two independent switches operating cooperatively.
Demand Score: 86
Exam Relevance Score: 91
Why are SVIs (Switch Virtual Interfaces) used in Aruba CX networks?
SVIs provide Layer 3 routing gateways for VLANs.
An SVI represents a virtual Layer 3 interface associated with a VLAN. It allows the switch to route traffic between VLANs.
When hosts in different VLANs communicate, traffic is sent to the SVI gateway. The switch then performs routing and forwards packets to the destination VLAN.
SVIs are essential for inter-VLAN routing in campus networks.
Exam questions frequently test whether candidates recognize that routing between VLANs requires a Layer 3 interface like an SVI.
Demand Score: 80
Exam Relevance Score: 88
What is the purpose of Link Aggregation (LAG) in Aruba switching environments?
LAG combines multiple physical links into a single logical connection to increase bandwidth and provide redundancy.
Using LACP, several Ethernet links can function as one logical interface. Benefits include:
Increased throughput
Load balancing
Redundancy if one link fails
In VSX environments, LAGs can extend across two switches using multi-chassis LAG (MC-LAG).
A common exam scenario describes uplinks between switches where bandwidth and resiliency are required. LAG is the recommended configuration.
Demand Score: 82
Exam Relevance Score: 86
What role does QoS classification and marking play in Aruba switching networks?
QoS classification identifies traffic types and marks packets so switches can prioritize important traffic.
Networks carry multiple traffic types such as voice, video, and data. QoS mechanisms ensure time-sensitive traffic receives higher priority.
Key steps include:
Classification – identifying traffic (e.g., voice).
Marking – assigning priority values (DSCP or CoS).
Queuing – ensuring high-priority traffic is transmitted first.
In Aruba switches, QoS policies can be applied to interfaces or globally.
Exam questions often describe voice quality problems and expect candidates to recognize QoS misconfiguration as the root cause.
Demand Score: 84
Exam Relevance Score: 85