2024-07-04

Juniper Ex2200基礎設定分享

Juniper Ex2200 基礎設定

Juniper Ex2200 基礎設定

1. 初次使用設定

  1. 連接至Switch的Console接口,並使用以下連接設定:
    • 波特率:9600
    • 數據位:8
    • 停止位:1
    • 無奇偶校驗
  2. 使用預設管理帳號 root(密碼為空)登入,登入後提示符號為 %
  3. 設定 root 管理者密碼(之後的設定才能存檔)。

2. 進入配置模式

  1. 輸入 cli 進入使用者模式(類似於Cisco的 enable 指令)。
  2. 在使用者模式下輸入 configure 進入配置模式(類似於Cisco的 configure terminal 指令)。

3. 常用系統設定

# edit system
# set host-name switch
# set domain-name weithenn.org
# set domain-search weithenn.org
# set root-authentication plain-text-password
# set time-zone Asia/Taipei
# set ntp server 192.168.1.10
# run show ntp associations
# run set date 201510200800.00
# set name-server 192.168.1.10
        

4. 常用網路設定

# top
# set routing-options static route 0.0.0.0/0 next-hop x.x.x.x
# set routing-options static route x.x.x.x/x next-hop x.x.x.x
# set interfaces me0 unit 0 family inet address 172.20.3.171/24
# edit system
# set services telnet
# set services ssh
# set services web-management http
# commit
# show configuration
        

5. 建立管理帳號

# set system login user weithenn class super-user
# set system login user weithenn authentication plain-text-password
# commit
        

6. 設定 VLAN

# set vlans vlan200 vlan-id 200
# set interfaces ge-0/0/1 unit 0 family ethernet-switching vlan members vlan224
        

7. 設定 SNMP

# set snmp community ikeeper authorization read-only
        

8. 恢復原廠預設值

# load factory-default
# set system root-authentication plain-text-password
# commit