Tagged: configuration, ex3400, juniper
- This topic has 1 reply, 1 voice, and was last updated 7 months ago by
Pankaj6in.
-
AuthorPosts
-
Pankaj6in
Keymaster1. Enter Configuration Mode
cli
configure
2. Set Hostname
set system host-name EX3400-SW1
3. Set Management IP on VLAN Interface
set interfaces vlan unit 0 family inet address 192.168.1.2/24
set routing-options static route 0.0.0.0/0 next-hop 192.168.1.1
4. Configure VLAN
set vlans SALES vlan-id 10
5. Assign VLAN to Interface
set interfaces ge-0/0/1 unit 0 family ethernet-switching vlan members SALES
set interfaces ge-0/0/1 unit 0 family ethernet-switching interface-mode access
6. Set Trunk Port
set interfaces ge-0/0/24 unit 0 family ethernet-switching interface-mode trunk
set interfaces ge-0/0/24 unit 0 family ethernet-switching vlan members [ SALES HR ]
7. Configure Port Description
set interfaces ge-0/0/1 description “Connected to HR-PC01”
8. Enable LLDP (Link Layer Discovery Protocol)
set protocols lldp interface all
9. Enable SSH & Set Login User
set system services ssh
set system login user admin class super-user authentication plain-text-password
10. Commit & Save Configuration
commit
11. Show Configuration
show configuration
12. Save Configuration to File (Optional)
save config.txtPankaj6in
KeymasterThe EX3400 series switches, part of Juniper’s EX series, are configured using the Junos OS CLI. Common configuration tasks include setting the hostname, IP address for the management interface, default gateway, and enabling SSH. The switch also supports Zero Touch Provisioning (ZTP), which can be disabled during initial configuration. The factory-default configuration varies by model and can be reverted to. [1, 2]
Here’s a breakdown of common configuration steps and commands:
Initial Setup and Console Access:• Console Connection: Connect to the switch using the RJ-45 or Mini-USB console port.
• Console Settings: Ensure your terminal emulator is configured with the correct serial settings (9600 baud rate, no flow control, etc.).
• Login: Log in to the switch using the “root” user, typically without a password.
• Enter Configuration Mode: Use the configure command to enter the configuration mode. [1, 1, 3, 3]Basic Configuration Commands (Examples):
• Hostname: set system host-name <hostname> [1, 1, 4]
• IP Address: set interfaces <*> unit 0 family inet address <ip-address>/<prefix-length> [1, 1, 4, 4, 5, 6]
• Default Gateway: set routing-options static route 0.0.0.0/0 next-hop <gateway-ip> [1, 1, 7]
• SSH: set system services ssh [1, 1]Other Important Considerations:
• Virtual Chassis: EX3400 switches can be interconnected to form a Virtual Chassis, allowing them to be managed as a single logical device. [8, 8]
• PoE: The EX3400 switches support Power over Ethernet (PoE), which can be configured on the appropriate interfaces. [2, 2, 9, 9]
• Licensing: Flex licensing allows unlocking additional features, with different tiers available. [10, 10]
• Juniper Mist: The EX3400 can be integrated with Juniper Mist cloud for enhanced management and automation. [11, 11, 12, 12]
• ZTP: Zero Touch Provisioning can be disabled during initial setup if not needed. [1, 1, 13]
• Commit: Use the commit command to apply the configuration changes. [1, 1][1] https://www.juniper.net/documentation/us/en/quick-start/ex3400/id-step-2-up-and-running.html[2] https://www.juniper.net/documentation/us/en/hardware/ex3400/topics/topic-map/ex3400-configuring-junos-os.html[3] https://www.juniper.net/documentation/us/en/hardware/ex3400/topics/topic-map/ex3400-connecting-to-management-device.html[4] https://www.juniper.net/documentation/us/en/quick-start/ex3400/ex3400-day-one-plus.pdf[5] https://device.report/manual/9966730[6] https://itman.ae/2024/09/09/essential-cisco-switch-commands/[7] https://www.scribd.com/document/363853171/Configuring-the-SRX300-Services-Gateway-Using-the-CLI[8] https://www.juniper.net/documentation/us/en/hardware/ex3400/ex3400.pdf[9] https://www.juniper.net/documentation/us/en/software/junos/poe/topics/topic-map/poe-ex-series-configuring.html[10] https://www.juniper.net/content/dam/www/assets/datasheets/us/en/switches/ex3400-ethernet-switch-datasheet.pdf[11] https://www.juniper.net/documentation/us/en/software/nce/nce-177-using-mist-with-ex-switches/nce-177-using-mist-with-ex-switches.pdf[12] https://manuals.plus/juniper-networks/ex3400-ethernet-switch-manual[13] https://www.juniper.net/documentation/us/en/quick-start/ex4100/topic-map/step-2-up-and-running.html
Not all images can be exported from Search. -
AuthorPosts