close

Junos真是...為了簡單的切vlan搞了一上午

接console  9600即可

預設帳密  root // 空白

一開始怎樣開啟都無法登入web畫面

查國外討論才發現要先 切vlan 並定義IP ! 

 

因為是有點舊的設備,不確定新版是否這樣

主要是參考

http://timmywork.blogspot.tw/2012/03/juniper.html

內容有一點不一樣,應該是原作者漏了,實作後調整如下

%cli //進入 cli 介面模式

>configure 或 >edit //進入特權模式

打完指令建議就commit一下...比較好抓錯誤
rollback 0 很好用!
 
#commit                                    //儲存設定
#commit check                         //儲存設定並檢查語法是否有錯誤
#rollback 0                                //回到running config,還沒commit的設定全部都會消失
#rollback 1                                //回到上一次commit設定

基本設定

#edit system //進入 system 目錄
#set host-name switch //設定主機名稱
#set root-authentication plain-text-password //設定 root 管理帳號密碼 (之後才能存檔)

#set services telnet                                        //啟動 Telnet 服務
#set services ssh                                           //啟動 SSH 服務
#set services web-management http port 80     //啟動 Web 服務 (建議加port)
#set time-zone Asia/Taipei                              //設定時區

 

 

新增使用者

#set login user (name) class super-user //設定使用者為超級己用者
#set login user (name) authentication plain-text-password (password)  //設定使用者密碼

設定 VLAN

#set vlans (name) vlan-id (id) //新增一個VLAN(name不能只有數字)
#set interfaces vlan unit (id) family inet address 192.168.1.254/24     //設定VLAN IP
#set vlans (name) l3-interface vlan.(id) //將此VLAN設為L3層
#set interface ge-0/0/0 unit 0 family ethernet-switching vlan members (id)    //將port加入VLAN
#set interface interface-range (name) member-range ge-0/0/0 to ge-0/0/23  //將多個port加入VLAN

==

基本上web就可以登入了

後續用web好作很多..

 

其他指令

#set routing-options static route 0.0.0.0/0 next-hop 192.168.1.254     //指定 DefaultGateway
#set routing-options static route 192.168.10.0/24 next-hop 192.168.1.254  //新增一筆靜態路由
#set interfaces me0 unit 0 family inet address 192.168.1.254            //指定管理介面 IP Address

# set interface ge-0/0/0 unit 0 family inet address.192.168.1.1/24         //設定ip
# delet interface ge-0/0/0 unit 0 family inet address.192.168.1.1/24      //刪除ip

 

arrow
arrow
    全站熱搜
    創作者介紹
    創作者 KuoKevin 的頭像
    KuoKevin

    Information Technology

    KuoKevin 發表在 痞客邦 留言(0) 人氣()