본문 바로가기
네트워크

[네트워크] Juniper 장비 FTP로 OS 업그레이드 하는 법!

by 시스코킹 2020. 1. 9.
반응형

안녕하세요 시스코킹입니다.

주니퍼장비를 FTP로 OS 업그레이드 하는 방법에 대해 알아보겠습니다.

먼저 이론입니다.

 

<FTP를 이용한 OS 업그레이드 방법>
1. 장비에 할당 가능한 OS 준비 , FTP프로그램 준비
2. 장비 포트에 IP할당, OS버전 확인 - PC에 IP할당
3. 핑으로 확인
4. FTP 서비스 명령어 입력
5. FTP 열어서 파일 삽입
6. 명령어로 업데이트
7. 재부팅
8. OS 업데이트 확인

 

이제 업데이트를 시작하겠습니다. 

장비는 EX-2200장비를 사용했습니다. 장비별, OS별로 조금씩 다를 수도 있습니다.

실제 업데이트 과정 로그이니 참고하시길 바랍니다.

감사합니다.

 

 

 

WARNING: JUNOS versions running on dual partitions are not same
** /dev/da0s2a
FILE SYSTEM CLEAN; SKIPPING CHECKS
clean, 26784 free (24 frags, 3345 blocks, 0.0% fragmentation)

Amnesiac (ttyu0)

login: root
Password:

--- JUNOS 12.3R12.4 built 2016-01-20 04:27:03 UTC

root@:RE:0% 
root@:RE:0% cli

{master:0}
root> 

root> show version / 버전확인
fpc0:
--------------------------------------------------------------------------
Model: ex2200-24t-4g / 주니퍼 EX-2200장비를 사용했습니다.
JUNOS Base OS boot [12.3R12.4]  / 업데이트 전 버전입니다.
JUNOS Base OS Software Suite [12.3R12.4]
JUNOS Kernel Software Suite [12.3R12.4]
JUNOS Crypto Software Suite [12.3R12.4]
JUNOS Online Documentation [12.3R12.4]
JUNOS Enterprise Software Suite [12.3R12.4]
JUNOS Packet Forwarding Engine Enterprise Software Suite [12.3R12.4]
JUNOS Routing Software Suite [12.3R12.4]
JUNOS Web Management [12.3R12.4]
JUNOS FIPS mode utilities [12.3R12.4]

{master:0}
root> configure  / 컨피그 모드진입
Entering configuration mode

{master:0}[edit]
root# set interfaces ge-0/0/1 unit 0 family inet address 192.168.10.1/24    / 포트에 IP 주소 할당 

(이더넷 포트일 시 IP주려면 삭제하고 사용해야함)


{master:0}[edit]
root# commit     / 저장
configuration check succeeds
commit complete

{master:0}[edit]
root# show | display set    / 확인
set version 12.3R12.4
set system root-authentication encrypted-password "$1$p9I0zSaU$IUhNy3M9du.DrQmTI7523."
set system login user jun uid 2006
set system login user jun class super-user
set system login user jun authentication encrypted-password "$1$kNbDdiXl$WX.iRD4nJmIyOjyyUdhoz."
set system services ftp
set system services ssh
set system services telnet
set system syslog user * any emergency
set system syslog file messages any notice
set system syslog file messages authorization info
set system syslog file interactive-commands interactive-commands any
set interfaces ge-0/0/0 unit 0 family inet address 10.10.10.1/24
set interfaces ge-0/0/1 unit 0 family inet address 192.168.10.1/24  / IP확인
set interfaces ge-0/0/2 unit 0 family ethernet-switching
set interfaces ge-0/0/3 unit 0 family ethernet-switching
set interfaces ge-0/0/4 unit 0 family ethernet-switching
set interfaces ge-0/0/5 unit 0 family ethernet-switching
set interfaces ge-0/0/6 unit 0 family ethernet-switching
set interfaces ge-0/0/7 unit 0 family ethernet-switching
set interfaces ge-0/0/8 unit 0 family ethernet-switching
set interfaces ge-0/0/9 unit 0 family ethernet-switching
set interfaces ge-0/0/10 unit 0 family ethernet-switching
set interfaces ge-0/0/11 unit 0 family ethernet-switching
set interfaces ge-0/0/12 unit 0 family ethernet-switching
set interfaces ge-0/0/13 unit 0 family ethernet-switching
set interfaces ge-0/0/14 unit 0 family ethernet-switching
set interfaces ge-0/0/15 unit 0 family ethernet-switching
set interfaces ge-0/0/16 unit 0 family ethernet-switching
set interfaces ge-0/0/17 unit 0 family ethernet-switching
set interfaces ge-0/0/18 unit 0 family ethernet-switching
set interfaces ge-0/0/19 unit 0 family ethernet-switching
set interfaces ge-0/0/20 unit 0 family ethernet-switching
set interfaces ge-0/0/21 unit 0 family ethernet-switching
set interfaces ge-0/0/22 unit 0 family ethernet-switching
set interfaces ge-0/0/23 unit 0 family ethernet-switching
set interfaces ge-0/1/0 unit 0 family ethernet-switching
set interfaces ge-0/1/1 unit 0 family ethernet-switching
set interfaces ge-0/1/2 unit 0 family ethernet-switching
set interfaces ge-0/1/3 unit 0 family ethernet-switching
set protocols igmp-snooping vlan all
set protocols rstp
set protocols lldp interface all
set protocols lldp-med interface all    
set ethernet-switching-options storm-control interface all

{master:0}[edit]
root# set system services ftp    / FTP 서비스 할당

{master:0}[edit]
root# set system services ssh root-login allow   / SSH 루트 로그인 허용

{master:0}[edit]
root# commit   / 저장
configuration check succeeds
commit complete

{master:0}[edit]
root# exit 
Exiting configuration mode

{master:0}
root> ping 192.168.10.2   / 핑으로 FTP서버와 통신 확인
PING 192.168.10.2 (192.168.10.2): 56 data bytes
64 bytes from 192.168.10.2: icmp_seq=0 ttl=128 time=17.615 ms
64 bytes from 192.168.10.2: icmp_seq=1 ttl=128 time=3.910 ms
64 bytes from 192.168.10.2: icmp_seq=2 ttl=128 time=2.614 ms
64 bytes from 192.168.10.2: icmp_seq=3 ttl=128 time=2.778 ms
64 bytes from 192.168.10.2: icmp_seq=4 ttl=128 time=3.167 ms
64 bytes from 192.168.10.2: icmp_seq=5 ttl=128 time=3.651 ms
64 bytes from 192.168.10.2: icmp_seq=6 ttl=128 time=3.645 ms
64 bytes from 192.168.10.2: icmp_seq=7 ttl=128 time=2.775 ms
^C
--- 192.168.10.2 ping statistics ---
8 packets transmitted, 8 packets received, 0% packet loss
round-trip min/avg/max/stddev = 2.614/5.019/17.615/4.782 ms

{master:0}
root> request system software add ?   / FTP에 넣은 OS로 업그레이드
Possible completions:
         URL or pathname of package
  20190905_LABTEST_Default  Size: 4123, Last changed: Sep 05 09:36:59
  best-effort-load     Load succeeds if at least one statement is valid
  delay-restart        Don't restart processes
  force                Force addition of package (ignore warnings)
  member               Install package on VC Member (0..3)
  no-copy              Don't save copies of package files
  no-validate          Don't check compatibility with current configuration
  reboot               Reboot system after adding package
  unlink               Remove the package after successful installation
  upgrade-with-config-format  
  validate             Check compatibility with current configuration
{master:0}
root> request system software add /var/tmp/
                                           ^
'/var/tmp/' is ambiguous.
Possible completions:
  <[Enter]>            Execute this command
         URL or pathname of package
  /var/tmp/ex_autod_config  Size: 3898, Last changed: Jan 20 2016
  /var/tmp/ex_autod_rollback_cfg  Size: 2998, Last changed: Jan 20 2016
  /var/tmp/gres-tp/    Last changed: Jan 20 2016
  /var/tmp/install/    Last changed: Jan 20 2016
  /var/tmp/jinstall-ex-2200-15.1R6.7-domestic-signed.tgz  Size: 124725453, Last changed: Sep 10 18:19:16
  /var/tmp/krt_gencfg_filter.txt  Size: 155, Last changed: Sep 10 17:47:49
  /var/tmp/pics/       Last changed: Jan 20 2016
  /var/tmp/rtsdb/      Last changed: Jan 20 2016
  /var/tmp/usb/        Last changed: Sep 06 16:31:17
  /var/tmp/vi.recover/  Last changed: Jan 20 2016
{master:0}
root> ... add /var/tmp/jinstall-ex-2200-15.1R6.7-domestic-signed.tgz  (FTP에 넣은 OS로 업그레이드)

[Sep 10 18:21:24]: Checking pending install on fpc0

[Sep 10 18:21:25]: Validating on fpc0
[Sep 10 18:22:31]: Done with validate on all virtual chassis members

fpc0:


Verify the signature of the new package
Verified jinstall-ex-2200-15.1R6.7-domestic.tgz signed by PackageProductionRSA_2017
WARNING: A reboot is required to install the software
WARNING:     Use the 'request system reboot' command immediately


{master:0}
root> request system reboot   / 재부팅
Reboot the system ? [yes,no] (no) yes 

Shutdown at Tue Sep 10 18:27:32 2019.
[pid 2134]

{master:0}
root>                                                                                
*** System shutdown message from root@ ***                                   

System going down in 1 minute                                                  

                                                                               
                                                                               
*** System shutdown message from root@ ***                                   

System going down in 30 seconds                                                

                                                                               
                                                                               
*** FINAL System shutdown message from root@ ***                             

System going down IMMEDIATELY                                                  

                                                                               
SWaiting (max 60 seconds) for system process `vnlru' to stop...done
Waiting (max 60 seconds) for system process `vnlru_mem' to stop...done
Waiting (max 60 seconds) for system process `bufdaemon' to stop...done
Waiting (max 60 seconds) for system process `syncer' to stop...
Syncing disks, vnodes remaining...6 6 2 2 1 0 0 0 done

syncing disks... All buffers synced.
Uptime: 25m33s
Rebooting...


U-Boot 1.1.6 (Jul 26 2011 - 03:19:50)  

Board: EX2200-24T-4G 4.18
EPLD:  Version 04.100311 (0x02)
DRAM:  Initializing (512MB)
Flash: 8 MB

Firmware Version:01.00.00 
USB:   scanning bus for devices... 3 USB Device(s) found
       scanning bus for storage devices... 1 Storage Device(s) found

ELF file is 32 bit
Consoles: U-Boot console  

FreeBSD/arm U-Boot loader, Revision 1.1
(builder@dagmath.juniper.net, Tue Jul 26 01:25:53 UTC 2011)
Memory: 512MB
bootsequencing is enabled
bootsuccess is set
new boot device = disk0s1:
Package /jinstall-ex-2200-15.1R6.7-domestic-signed.tgz is signed...
/kernel data=0x576790+0x8ea14 syms=[0x4+0xa3970+0x4+0x99e91]
Kernel entry at 0x1400100 ...
GDB: debug ports: uart
GDB: current port: uart
KDB: debugger backends: ddb gdb
KDB: current backend: ddb
Copyright (c) 1996-2017, Juniper Networks, Inc.
All rights reserved.
Copyright (c) 1992-2007 The FreeBSD Project.
Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994
        The Regents of the University of California. All rights reserved.
FreeBSD is a registered trademark of The FreeBSD Foundation.
JUNOS 15.1R6.7 #0: 2017-04-23 01:28:32 UTC
    builder@svl-junos-p001:/volume/build/junos/15.1/release/15.1R6.7/obj/arm/junos/bsd/kernels/INSTALL-EX-2200/kernel
can't re-use a leaf (all_slot_serialid)!
CPU: Feroceon 88FR131 rev 1 (Marvell core)
cpu53: Feroceon 88FR131 revision   WB enabled EABT branch prediction enabled
  16KB/32B 4-way Instruction cache
  16KB/32B 4-way write-back-locking-C Data cache
real memory  = 536870912 (512 MB)
avail memory = 489967616 (467 MB)
SOC: Marvell 88F6281 rev A0, TClock 200MHz
Initializing EXSERIES properties ...
mbus0:  on motherboard
ic0:  at mem 0xf1020200-0xf102023b on mbus0
timer0:  at mem 0xf1020300-0xf102032f irq 1 on mbus0
gpio0:  at mem 0xf1010100-0xf101011f irq 35,36,37,38,39,40,41 on mbus0
uart0: <16550 or compatible> at mem 0xf1012000-0xf101201f irq 33 on mbus0
uart0: console (9600,n,8,1)
uart1: <16550 or compatible> at mem 0xf1012100-0xf101211f irq 34 on mbus0
ehci0: <88F5XXX Integrated USB 2.0 controller> at mem 0xf1050000-0xf1050fff irq 48,19 on mbus0
usb0: EHCI version 1.0
usb0 on ehci0
usb0: USB revision 2.0
uhub0: Marvell EHCI root hub, class 9/0, rev 2.00/1.00, addr 1
uhub0: 1 port with 1 removable, self powered
uhub1: vendor 0x04b4 product 0x6560, class 9/0, rev 2.00/90.15, addr 2
uhub1: single transaction translator
uhub1: 2 ports with 2 removable, self powered
umass0: STMicroelectronics ST72682  High Speed Mode, rev 2.00/2.10, addr 3
mge0:  at mem 0xf1072000-0xf1073fff irq 12,13,14,11,46 on mbus0
mge0: hardware MAC address 88:e0:f3:6c:a3:bf
miibus0:  on mge0
e1000phy0:  on miibus0
e1000phy0:  10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseTX-FDX, auto
i2c0:  at mem 0xf1011000-0xf101101f irq 29 on mbus0
syspld0:  on i2c0
8564 rtc0: <8564 RTC> on i2c0
cfi0:  at mem 0xf1010600-0xf101062f,0xf8000000-0xf87fffff irq 23 on mbus0
pcib0:  at mem 0xf1040000-0xf1041fff,0xe8000000-0xefffffff irq 9 on mbus0
pci0:  on pcib0
Initializing product: 75 ..
Timecounter "CPU Timer" frequency 200000000 Hz quality 1000
###PCB Group initialized for udppcbgroup
###PCB Group initialized for tcppcbgroup
md0: Preloaded image  17258496 bytes at 0xc1b429b0
da0 at umass-sim0 bus 0 target 0 lun 0
da0:  Removable Direct Access SCSI-2 device 
da0: 40.000MB/s transfers
da0: 1000MB (2048000 512 byte sectors: 64H 32S/T 1000C)
Kernel thread "wkupdaemon" (pid 40) exited prematurely.
Trying to mount root from cd9660:/dev/md0
Invalid time in real time clock.
Check and reset the date immediately!
[: -eq: unexpected operator
1+0 records in
1+0 records out
512 bytes transferred in 0.000661 secs (774706 bytes/sec)
Media check on da0 on ex platforms
Computing slice and partition sizes for /dev/da0 ...
32+0 records in
32+0 records out
16384 bytes transferred in 0.186176 secs (88003 bytes/sec)
Checking s1a label...please wait
FILE SYSTEM CLEAN; SKIPPING CHECKS
clean, 36358 free (6 frags, 4544 blocks, 0.0% fragmentation)
tunefs: soft updates remains unchanged as enabled
Checking s2a label...please wait
Computing layout of partitions in /dev/da0s2...
Shrinking partition a by 1792 blocks for alignment
Labeling /dev/da0s2:
bsdlabel: write to disk label supressed - label was as follows:
# /dev/da0s2:
8 partitions:
#        size   offset    fstype   [fsize bsize bps/cpg]
  a:   380672      256    unused        0     0       
  c:   382720        0    unused        0     0         # "raw" part, don't edit
/dev/da0s2a: 185.9MB (380668 sectors) block size 16384, fragment size 2048
        using 4 cylinder groups of 46.47MB, 2974 blks, 6016 inodes.
        with soft updates
super-block backups (for fsck -b #) at:
 32, 95200, 190368, 285536
Checking s3d label...please wait
FILE SYSTEM CLEAN; SKIPPING CHECKS
clean, 127985 free (25 frags, 15995 blocks, 0.0% fragmentation)
tunefs: soft updates remains unchanged as enabled
Checking s3e label...please wait
FILE SYSTEM CLEAN; SKIPPING CHECKS
clean, 61118 free (310 frags, 7601 blocks, 0.5% fragmentation)
tunefs: soft updates remains unchanged as enabled
Checking s4d label...please wait
FILE SYSTEM CLEAN; SKIPPING CHECKS
clean, 31604 free (28 frags, 3947 blocks, 0.1% fragmentation)
tunefs: soft updates remains unchanged as enabled
[: -eq: unexpected operator
Installing disk0s3d:/jinstall-ex-2200-15.1R6.7-domestic-signed.tgz
Verified jinstall-ex-2200-15.1R6.7-domestic.tgz signed by PackageProductionRSA_2017 method RSA2048+SHA1
wc: not found
cli: not found
[: -lt: argument expected
tar: etc/db/manifest/jboot: time stamp Apr 23 00:08 2017 is 230601884 s in the future
tar: etc/defaults: time stamp Apr 23 00:08 2017 is 230601885 s in the future
tar: altconfig: time stamp Apr 23 00:08 2017 is 230601885 s in the future
tar: altroot: time stamp Apr 23 00:08 2017 is 230601885 s in the future
tar: data: time stamp Apr 23 00:08 2017 is 230601885 s in the future
tar: dev: time stamp Dec  6 20:12 2016 is 218750954 s in the future
tar: etc/crontab.sys: time stamp Apr 22 22:35 2017 is 230596355 s in the future
tar: etc/rc.mount.platform: time stamp Apr 22 22:30 2017 is 230596056 s in the future
tar: instrootmnt: time stamp Apr 23 00:08 2017 is 230601885 s in the future
tar: etc/mtree: time stamp Apr 23 00:08 2017 is 230601885 s in the future
tar: mnt: time stamp Aug 18 04:47 2013 is 114497024 s in the future
tar: proc: time stamp Dec  6 20:12 2016 is 218750926 s in the future
tar: opt/lib: time stamp Apr 23 00:08 2017 is 230601884 s in the future
tar: tmp: time stamp Apr 23 00:08 2017 is 230601884 s in the future
tar: root: time stamp Apr 19 20:30 2017 is 230329600 s in the future
tar: usr/share/help: time stamp Apr 23 00:08 2017 is 230601884 s in the future
tar: usr/lib/dd: time stamp Apr 23 00:08 2017 is 230601884 s in the future
tar: usr/lib/render: time stamp Apr 23 00:08 2017 is 230601884 s in the future
tar: usr/libexec/ui: time stamp Apr 23 00:08 2017 is 230601884 s in the future
tar: usr/libdata/msdosfs: time stamp Apr 23 00:08 2017 is 230601884 s in the future
tar: usr/share/pfe: time stamp Apr 23 00:08 2017 is 230601884 s in the future
tar: usr/share/misc: time stamp Jul 30 14:43 2014 is 144427215 s in the future
tar: usr/share/zoneinfo/Africa: time stamp Jul 30 14:16 2014 is 144425587 s in the future
tar: usr/share/zoneinfo/America/Indiana: time stamp Jul 30 14:16 2014 is 144425587 s in the future
tar: usr/share/zoneinfo/America/Kentucky: time stamp Jul 30 14:16 2014 is 144425587 s in the future
tar: usr/share/zoneinfo/America: time stamp Jul 30 14:16 2014 is 144425587 s in the future
tar: usr/share/zoneinfo/Antarctica: time stamp Jul 30 14:16 2014 is 144425587 s in the future
tar: usr/share/zoneinfo/Arctic: time stamp Jul 30 14:16 2014 is 144425587 s in the future
tar: usr/share/zoneinfo/Asia: time stamp Jul 30 14:16 2014 is 144425587 s in the future
tar: usr/share/zoneinfo/Atlantic: time stamp Jul 30 14:16 2014 is 144425587 s in the future
tar: usr/share/zoneinfo/Australia: time stamp Jul 30 14:16 2014 is 144425587 s in the future
tar: usr/share/zoneinfo/Etc: time stamp Jul 30 14:16 2014 is 144425587 s in the future
tar: usr/share/zoneinfo/Europe: time stamp Jul 30 14:16 2014 is 144425587 s in the future
tar: usr/share/zoneinfo/Indian: time stamp Jul 30 14:16 2014 is 144425587 s in the future
tar: usr/share/zoneinfo/Pacific: time stamp Jul 30 14:16 2014 is 144425586 s in the future
tar: usr/share/zoneinfo/SystemV: time stamp Jul 30 14:16 2014 is 144425586 s in the future
tar: usr/share/zoneinfo: time stamp Jul 30 14:16 2014 is 144425586 s in the future
tar: sbin/preinit: time stamp Apr 22 23:39 2017 is 230600196 s in the future
tar: etc/db/manifest/jboot.sha1: time stamp Apr 23 00:08 2017 is 230601882 s in the future
tar: etc/db/manifest/jboot.esig: time stamp Apr 23 00:08 2017 is 230601882 s in the future
tar: etc/db/manifest/jboot.sig: time stamp Apr 23 00:08 2017 is 230601882 s in the future
tar: etc/db/manifest/jboot.certs: time stamp Apr 22 22:27 2017 is 230595859 s in the future
tar: etc/master.passwd.sys: time stamp Apr 23 00:08 2017 is 230601880 s in the future
tar: etc/group.sys: time stamp Apr 23 00:08 2017 is 230601880 s in the future
tar: boot/loader.rc: time stamp Apr 23 00:08 2017 is 230601881 s in the future
tar: etc/login.conf.sys: time stamp Apr 23 00:08 2017 is 230601881 s in the future
tar: etc/newsyslog.conf.sys: time stamp Apr 23 00:08 2017 is 230601881 s in the future
tar: etc/db/manifest/jboot.ecerts: time stamp Apr 22 22:27 2017 is 230595859 s in the future
tar: COPYRIGHT: time stamp Apr 22 22:18 2017 is 230595283 s in the future
tar: var/crash/minfree: time stamp Apr 22 22:18 2017 is 230595282 s in the future
tar: etc/amd.map: time stamp Apr 22 22:18 2017 is 230595282 s in the future
tar: etc/auth.conf: time stamp Apr 22 22:18 2017 is 230595282 s in the future
tar: etc/csh.logout: time stamp Apr 22 22:18 2017 is 230595283 s in the future
tar: etc/ftpusers: time stamp Apr 22 22:18 2017 is 230595283 s in the future
tar: etc/host.conf: time stamp Apr 22 22:18 2017 is 230595282 s in the future
tar: etc/hosts.equiv: time stamp Apr 22 22:18 2017 is 230595283 s in the future
tar: etc/login.access: time stamp Apr 22 22:18 2017 is 230595283 s in the future
tar: etc/netstart: time stamp Apr 22 22:18 2017 is 230595283 s in the future
tar: etc/modems: time stamp Apr 22 22:18 2017 is 230595282 s in the future
tar: etc/networks: time stamp Apr 22 22:18 2017 is 230595283 s in the future
tar: etc/pam.conf.sys: time stamp Apr 22 22:22 2017 is 230595518 s in the future
tar: etc/rc.conf: time stamp Apr 22 22:18 2017 is 230595283 s in the future
tar: etc/rc.conf.ex: time stamp Apr 22 22:20 2017 is 230595438 s in the future
tar: etc/remote: time stamp Apr 22 22:18 2017 is 230595283 s in the future
tar: etc/rpc: time stamp Apr 22 22:18 2017 is 230595283 s in the future
tar: etc/shells: time stamp Apr 22 22:18 2017 is 230595282 s in the future
tar: etc/termcap.small: time stamp Apr 22 22:18 2017 is 230595282 s in the future
tar: etc/rc.shutdown: time stamp Apr 22 22:20 2017 is 230595437 s in the future
tar: etc/devfs: time stamp Apr 22 22:22 2017 is 230595516 s in the future
tar: boot/loader.4th: time stamp Apr 22 22:21 2017 is 230595512 s in the future
tar: boot/support.4th: time stamp Apr 22 22:21 2017 is 230595512 s in the future
tar: boot/defaults/loader.conf: time stamp Apr 22 22:21 2017 is 230595512 s in the future
tar: etc/rc.serial: time stamp Apr 22 22:22 2017 is 230595516 s in the future
tar: etc/security: time stamp Apr 22 22:22 2017 is 230595516 s in the future
tar: boot/loader.conf: time stamp Apr 22 22:21 2017 is 230595472 s in the future
tar: tftpboot: time stamp Apr 23 00:08 2017 is 230601879 s in the future
tar: junos-ex-15.1R6.7.tgz: time stamp Apr 23 02:08 2017 is 230608998 s in the future
tar: +CONTENTS: time stamp Apr 23 02:08 2017 is 230608985 s in the future
tar: +COMMENT: time stamp Apr 23 02:08 2017 is 230608985 s in the future
tar: +DESC: time stamp Apr 23 02:08 2017 is 230608985 s in the future
tar: +INSTALL: time stamp Apr 23 02:08 2017 is 230608985 s in the future
tar: +DEINSTALL: time stamp Apr 23 02:08 2017 is 230608985 s in the future
tar: +REQUIRE: time stamp Apr 23 02:08 2017 is 230608985 s in the future
tar: packages/junos-ex-15.1R6.7: time stamp Apr 23 02:08 2017 is 230608955 s in the future
tar: packages/junos-ex-15.1R6.7.sha1: time stamp Apr 23 02:08 2017 is 230608957 s in the future
tar: packages/junos-ex-15.1R6.7.sig: time stamp Apr 23 02:08 2017 is 230608957 s in the future
tar: packages/junos-ex-15.1R6.7.certs: time stamp Apr 22 22:27 2017 is 230595702 s in the future
tar: packages/junos-ex-15.1R6.7.esig: time stamp Apr 23 02:08 2017 is 230608961 s in the future
tar: packages/junos-ex-15.1R6.7.ecerts: time stamp Apr 22 22:27 2017 is 230595702 s in the future
tar: junos.symlinks: time stamp Apr 23 02:08 2017 is 230608941 s in the future
tar: +CONTENTS: time stamp Apr 23 02:09 2017 is 230608872 s in the future
tar: +COMMENT: time stamp Apr 23 02:09 2017 is 230608872 s in the future
tar: +DESC: time stamp Apr 23 02:09 2017 is 230608872 s in the future
tar: +INSTALL: time stamp Apr 23 02:09 2017 is 230608872 s in the future
tar: +DEINSTALL: time stamp Apr 23 02:09 2017 is 230608872 s in the future
tar: +REQUIRE: time stamp Apr 23 02:09 2017 is 230608872 s in the future
tar: jboot-ex-15.1R6.7.tgz: time stamp Apr 23 00:08 2017 is 230601606 s in the future
tar: jboot-ex-15.1R6.7.tgz.md5: time stamp Apr 23 00:08 2017 is 230601606 s in the future
tar: jboot-ex-15.1R6.7.tgz.sha1: time stamp Apr 23 00:08 2017 is 230601606 s in the future
tar: junos-ex-15.1R6.7.tgz: time stamp Apr 23 02:08 2017 is 230608814 s in the future
tar: junos-ex-15.1R6.7.tgz.md5: time stamp Apr 23 02:08 2017 is 230608825 s in the future
tar: junos-ex-15.1R6.7.tgz.sha1: time stamp Apr 23 02:08 2017 is 230608817 s in the future
tar: jdocs-ex-15.1R6.7.tgz: time stamp Apr 23 00:07 2017 is 230601524 s in the future
tar: jdocs-ex-15.1R6.7.tgz.md5: time stamp Apr 23 00:07 2017 is 230601530 s in the future
tar: jdocs-ex-15.1R6.7.tgz.sha1: time stamp Apr 23 00:07 2017 is 230601525 s in the future
tar: jweb-ex-15.1R6.7.tgz: time stamp Apr 23 01:44 2017 is 230607350 s in the future
tar: jweb-ex-15.1R6.7.tgz.md5: time stamp Apr 23 01:44 2017 is 230607353 s in the future
tar: jweb-ex-15.1R6.7.tgz.sha1: time stamp Apr 23 01:44 2017 is 230607351 s in the future
tar: fips-mode-arm-15.1R6.7.tgz: time stamp Apr 23 00:35 2017 is 230603234 s in the future
tar: fips-mode-arm-15.1R6.7.tgz.md5: time stamp Apr 23 00:35 2017 is 230603236 s in the future
tar: fips-mode-arm-15.1R6.7.tgz.sha1: time stamp Apr 23 00:35 2017 is 230603234 s in the future
tar: +require.jboot: time stamp Apr 23 02:09 2017 is 230608831 s in the future
tar: +install.jboot: time stamp Apr 23 02:09 2017 is 230608831 s in the future
tar: +clean.jboot: time stamp Apr 23 02:09 2017 is 230608831 s in the future
tar: junos-ex-2200-15.1R6.7.tgz: time stamp Apr 23 02:04 2017 is 230608516 s in the future
tar: junos-ex-2200-15.1R6.7.tgz.md5: time stamp Apr 23 02:04 2017 is 230608525 s in the future
tar: junos-ex-2200-15.1R6.7.tgz.sha1: time stamp Apr 23 02:04 2017 is 230608517 s in the future
Checking package integrity...
Running requirements check first for jbundle-ex-2200-15.1R6.7-...
Running pre-install for jbundle-ex-2200-15.1R6.7-...
Installing jbundle-ex-2200-15.1R6.7- in /tmp/installer.tmp/pa4662.57/jbundle-ex-2200-15.1R6.7-domestic.x4662...
Running post-install for jbundle-ex-2200-15.1R6.7-...
Verified SHA1 checksum of fips-mode-arm-15.1R6.7.tgz
Verified SHA1 checksum of jboot-ex-15.1R6.7.tgz
Verified SHA1 checksum of jdocs-ex-15.1R6.7.tgz
Verified SHA1 checksum of junos-ex-15.1R6.7.tgz
Verified SHA1 checksum of junos-ex-2200-15.1R6.7.tgz
Verified SHA1 checksum of jweb-ex-15.1R6.7.tgz
Adding fips-mode-arm-15.1R6.7.tgz...
tar: +CONTENTS: time stamp Apr 23 00:35 2017 is 230603210 s in the future
tar: +COMMENT: time stamp Apr 23 00:35 2017 is 230603209 s in the future
tar: +DESC: time stamp Apr 23 00:35 2017 is 230603209 s in the future
tar: +INSTALL: time stamp Apr 23 00:35 2017 is 230603209 s in the future
tar: +DEINSTALL: time stamp Apr 23 00:35 2017 is 230603210 s in the future
tar: +REQUIRE: time stamp Apr 23 00:35 2017 is 230603210 s in the future
tar: packages/fips-mode-arm-15.1R6.7: time stamp Apr 23 00:35 2017 is 230603209 s in the future
tar: packages/fips-mode-arm-15.1R6.7.sha1: time stamp Apr 23 00:35 2017 is 230603209 s in the future
tar: packages/fips-mode-arm-15.1R6.7.sig: time stamp Apr 23 00:35 2017 is 230603209 s in the future
tar: packages/fips-mode-arm-15.1R6.7.certs: time stamp Apr 22 22:27 2017 is 230595521 s in the future
tar: packages/fips-mode-arm-15.1R6.7.esig: time stamp Apr 23 00:35 2017 is 230603209 s in the future
tar: packages/fips-mode-arm-15.1R6.7.ecerts: time stamp Apr 22 22:27 2017 is 230595521 s in the future
tar: fips-mode-arm.symlinks: time stamp Apr 23 00:35 2017 is 230603208 s in the future
Adding jdocs-ex-15.1R6.7.tgz...
tar: +CONTENTS: time stamp Apr 23 00:07 2017 is 230601490 s in the future
tar: +COMMENT: time stamp Apr 23 00:07 2017 is 230601490 s in the future
tar: +DESC: time stamp Apr 23 00:07 2017 is 230601490 s in the future
tar: +INSTALL: time stamp Apr 23 00:07 2017 is 230601490 s in the future
tar: +DEINSTALL: time stamp Apr 23 00:07 2017 is 230601490 s in the future
tar: +REQUIRE: time stamp Apr 23 00:07 2017 is 230601490 s in the future
tar: packages/jdocs-ex-15.1R6.7: time stamp Apr 23 00:07 2017 is 230601488 s in the future
tar: packages/jdocs-ex-15.1R6.7.sha1: time stamp Apr 23 00:07 2017 is 230601488 s in the future
tar: packages/jdocs-ex-15.1R6.7.sig: time stamp Apr 23 00:07 2017 is 230601488 s in the future
tar: packages/jdocs-ex-15.1R6.7.certs: time stamp Apr 22 22:27 2017 is 230595514 s in the future
tar: packages/jdocs-ex-15.1R6.7.esig: time stamp Apr 23 00:07 2017 is 230601489 s in the future
tar: packages/jdocs-ex-15.1R6.7.ecerts: time stamp Apr 22 22:27 2017 is 230595514 s in the future
tar: jdocs-ex.symlinks: time stamp Apr 23 00:07 2017 is 230601487 s in the future
Adding junos-ex-2200-15.1R6.7.tgz...
tar: +CONTENTS: time stamp Apr 23 02:03 2017 is 230608488 s in the future
tar: +COMMENT: time stamp Apr 23 02:03 2017 is 230608488 s in the future
tar: +DESC: time stamp Apr 23 02:03 2017 is 230608488 s in the future
tar: +INSTALL: time stamp Apr 23 02:03 2017 is 230608488 s in the future
tar: +DEINSTALL: time stamp Apr 23 02:03 2017 is 230608488 s in the future
tar: +REQUIRE: time stamp Apr 23 02:03 2017 is 230608488 s in the future
tar: packages/junos-ex-2200-15.1R6.7: time stamp Apr 23 02:03 2017 is 230608475 s in the future
tar: packages/junos-ex-2200-15.1R6.7.sha1: time stamp Apr 23 02:03 2017 is 230608477 s in the future
tar: packages/junos-ex-2200-15.1R6.7.sig: time stamp Apr 23 02:03 2017 is 230608477 s in the future
tar: packages/junos-ex-2200-15.1R6.7.certs: time stamp Apr 22 22:27 2017 is 230595501 s in the future
tar: packages/junos-ex-2200-15.1R6.7.esig: time stamp Apr 23 02:03 2017 is 230608478 s in the future
tar: packages/junos-ex-2200-15.1R6.7.ecerts: time stamp Apr 22 22:27 2017 is 230595501 s in the future
tar: junos-ex-2200.symlinks: time stamp Apr 23 02:03 2017 is 230608462 s in the future
Adding jweb-ex-15.1R6.7.tgz...
tar: +CONTENTS: time stamp Apr 23 01:44 2017 is 230607283 s in the future
tar: +COMMENT: time stamp Apr 23 01:44 2017 is 230607283 s in the future
tar: +DESC: time stamp Apr 23 01:44 2017 is 230607283 s in the future
tar: +INSTALL: time stamp Apr 23 01:44 2017 is 230607283 s in the future
tar: +DEINSTALL: time stamp Apr 23 01:44 2017 is 230607283 s in the future
tar: +REQUIRE: time stamp Apr 23 01:44 2017 is 230607283 s in the future
tar: packages/jweb-ex-15.1R6.7: time stamp Apr 23 01:44 2017 is 230607280 s in the future
tar: packages/jweb-ex-15.1R6.7.sha1: time stamp Apr 23 01:44 2017 is 230607280 s in the future
tar: packages/jweb-ex-15.1R6.7.sig: time stamp Apr 23 01:44 2017 is 230607281 s in the future
tar: packages/jweb-ex-15.1R6.7.certs: time stamp Apr 22 22:27 2017 is 230595476 s in the future
tar: packages/jweb-ex-15.1R6.7.esig: time stamp Apr 23 01:44 2017 is 230607281 s in the future
tar: packages/jweb-ex-15.1R6.7.ecerts: time stamp Apr 22 22:27 2017 is 230595476 s in the future
tar: jweb-ex.symlinks: time stamp Apr 23 01:44 2017 is 230607277 s in the future
mkdir: /jail: No such file or directory
Rebooting to complete the installation. Please wait...
Waiting (max 60 seconds) for system process `vnlru' to stop...done
Waiting (max 60 seconds) for system process `vnlru_mem' to stop...done
Waiting (max 60 seconds) for system process `bufdaemon' to stop...done
Waiting (max 60 seconds) for system process `syncer' to stop...
Syncing disks, vnodes remaining...0 0 0 0 0 0 0 0 0 done

syncing disks... All buffers synced.
Uptime: 10m35s
Rebooting...


U-Boot 1.1.6 (Jul 26 2011 - 03:19:50)  

Board: EX2200-24T-4G 4.18
EPLD:  Version 04.100311 (0x02)
DRAM:  Initializing (512MB)
Flash: 8 MB

Firmware Version:01.00.00 
USB:   scanning bus for devices... 3 USB Device(s) found
       scanning bus for storage devices... 1 Storage Device(s) found

ELF file is 32 bit
Consoles: U-Boot console  

FreeBSD/arm U-Boot loader, Revision 1.1
(builder@dagmath.juniper.net, Tue Jul 26 01:25:53 UTC 2011)
Memory: 512MB
bootsequencing is enabled
bootsuccess is set
new boot device = disk0s2:
Loading /boot/defaults/loader.conf 
/kernel data=0x9a45f4+0xfe20c syms=[0x4+0x1059b0+0x4+0xe0d65]


Hit [Enter] to boot immediately, or space bar for command prompt.
Booting [/kernel]...               
Kernel entry at 0x1400100 ...
GDB: debug ports: uart
GDB: current port: uart
KDB: debugger backends: ddb gdb
KDB: current backend: ddb
Copyright (c) 1996-2017, Juniper Networks, Inc.
All rights reserved.
Copyright (c) 1992-2007 The FreeBSD Project.
Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994
        The Regents of the University of California. All rights reserved.
FreeBSD is a registered trademark of The FreeBSD Foundation.
JUNOS 15.1R6.7 #0: 2017-04-23 01:54:51 UTC
    builder@svl-junos-p001:/volume/build/junos/15.1/release/15.1R6.7/obj/arm/junos/bsd/kernels/JUNIPER-EX-2200/kernel
can't re-use a leaf (all_slot_serialid)!
CPU: Feroceon 88FR131 rev 1 (Marvell core)
cpu53: Feroceon 88FR131 revision   WB enabled EABT branch prediction enabled
  16KB/32B 4-way Instruction cache
  16KB/32B 4-way write-back-locking-C Data cache
real memory  = 536870912 (512 MB)
avail memory = 501727232 (478 MB)
SOC: Marvell 88F6281 rev A0, TClock 200MHz
Security policy loaded: Junos MAC/veriexec (mac_veriexec)
Security policy loaded: JUNOS MAC/pcap (mac_pcap)
Security policy loaded: JUNOS MAC/runasnonroot (mac_runasnonroot)
MAC/veriexec fingerprint module loaded: SHA1
MAC/veriexec fingerprint module loaded: SHA256
ETHERNET SOCKET BRIDGE initialising
Initializing EXSERIES properties ...
mbus0:  on motherboard
ic0:  at mem 0xf1020200-0xf102023b on mbus0
timer0:  at mem 0xf1020300-0xf102032f irq 1 on mbus0
gpio0:  at mem 0xf1010100-0xf101011f irq 35,36,37,38,39,40,41 on mbus0
uart0: <16550 or compatible> at mem 0xf1012000-0xf101201f irq 33 on mbus0
uart0: console (9600,n,8,1)
uart1: <16550 or compatible> at mem 0xf1012100-0xf101211f irq 34 on mbus0
ehci0: <88F5XXX Integrated USB 2.0 controller> at mem 0xf1050000-0xf1050fff irq 48,19 on mbus0
usb0: EHCI version 1.0
usb0 on ehci0
usb0: USB revision 2.0
uhub0: Marvell EHCI root hub, class 9/0, rev 2.00/1.00, addr 1
uhub0: 1 port with 1 removable, self powered
uhub1: vendor 0x04b4 product 0x6560, class 9/0, rev 2.00/90.15, addr 2
uhub1: single transaction translator
uhub1: 2 ports with 2 removable, self powered
umass0: STMicroelectronics ST72682  High Speed Mode, rev 2.00/2.10, addr 3
mge0:  at mem 0xf1072000-0xf1073fff irq 12,13,14,11,46 on mbus0
mge0: hardware MAC address 88:e0:f3:6c:a3:bf
miibus0:  on mge0
e1000phy0:  on miibus0
e1000phy0:  10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseTX-FDX, auto
i2c0:  at mem 0xf1011000-0xf101101f irq 29 on mbus0
syspld0:  on i2c0
8564 rtc0: <8564 RTC> on i2c0
poe0:  on i2c0
poe_attach: re-types method failed
device_attach: poe0 attach returned 19
cfi0:  at mem 0xf1010600-0xf101062f,0xf8000000-0xf87fffff irq 23 on mbus0
mpfe0:  at mem 0xf4000000-0xf7ffffff irq 113 on mbus0
pcib0:  at mem 0xf1040000-0xf1041fff,0xe8000000-0xefffffff irq 9 on mbus0
pci0:  on pcib0
Initializing product: 75 ..
Timecounter "CPU Timer" frequency 200000000 Hz quality 1000
Registered AMT tunnel Encap with UDP Tunnel!
 Loading Redundant LT driver
###PCB Group initialized for udppcbgroup
###PCB Group initialized for tcppcbgroup
da0 at umass-sim0 bus 0 target 0 lun 0
da0:  Removable Direct Access SCSI-2 device 
da0: 40.000MB/s transfers
da0: 1000MB (2048000 512 byte sectors: 64H 32S/T 1000C)
Kernel thread "wkupdaemon" (pid 40) exited prematurely.
Trying to mount root from ufs:/dev/da0s2a
Invalid time in real time clock.
Check and reset the date immediately!
Attaching /packages/junos via /dev/mdctl...
Mounted junos-ex package on /dev/md0...
Verified manifest signed by PackageProductionEc_2017 method ECDSA256+SHA256
Verified jboot signed by PackageProductionEc_2017 method ECDSA256+SHA256
Verified junos-ex-15.1R6.7 signed by PackageProductionEc_2017 method ECDSA256+SHA256
Mounted fips-mode-arm package on /dev/md1...
Verified manifest signed by PackageProductionEc_2017 method ECDSA256+SHA256
Verified fips-mode-arm-15.1R6.7 signed by PackageProductionEc_2017 method ECDSA256+SHA256
Mounted jdocs-ex package on /dev/md2...
Verified manifest signed by PackageProductionEc_2017 method ECDSA256+SHA256
Verified jdocs-ex-15.1R6.7 signed by PackageProductionEc_2017 method ECDSA256+SHA256
Mounted junos-ex-2200 package on /dev/md3...
Verified manifest signed by PackageProductionEc_2017 method ECDSA256+SHA256
Verified junos-ex-2200-15.1R6.7 signed by PackageProductionEc_2017 method ECDSA256+SHA256
Mounted jweb-ex package on /dev/md4...
Verified manifest signed by PackageProductionEc_2017 method ECDSA256+SHA256
Verified jweb-ex-15.1R6.7 signed by PackageProductionEc_2017 method ECDSA256+SHA256
Executing /packages/mnt/jweb-ex-15.1R6.7/mount.post..
Error execution /packages/mnt/jweb-ex-15.1R6.7/mount.post: path /var/jail does not exist
Automatic reboot in progress...
Media check on da0 on ex platforms
** Last Mounted on /instrootmnt
** Root file system
** Phase 1 - Check Blocks and Sizes
** Phase 2 - Check Pathnames
** Phase 3 - Check Connectivity
** Phase 4 - Check Reference Counts
** Phase 5 - Check Cyl groups
1567 files, 70524 used, 23066 free (18 frags, 2881 blocks, 0.0% fragmentation)
** Last Mounted on /instrootmnt/var
** Phase 1 - Check Blocks and Sizes
UNKNOWN FILE TYPE I=4224
UNEXPECTED SOFT UPDATE INCONSISTENCY

CLEAR? yes

UNKNOWN FILE TYPE I=4225
UNEXPECTED SOFT UPDATE INCONSISTENCY


UNKNOWN FILE TYPE I=4321
UNEXPECTED SOFT UPDATE INCONSISTENCY

CLEAR? yes

UNKNOWN FILE TYPE I=4322Computing slice and partition sizes for /dev/da0 ...
savecore: could not be determined

UNEXPECTED SOFT UPDATE INCONSISTENCY

CLEAR? yes

UNKNOWN FILE TYPE I=4323
UNEXPECTED SOFT UPDATE INCONSISTENCY

CLEAR? yes

UNKNOWN FILE TYPE I=4324
UNEXPECTED SOFT UPDATE INCONSISTENCY

CLEAR? yes

** Phase 2 - Check Pathnames
** Phase 3 - Check Connectivity
** Phase 4 - Check Reference Counts
** Phase 5 - Check Cyl groups
484 files, 1794 used, 61111 free (295 frags, 7602 blocks, 0.5% fragmentation)

***** FILE SYSTEM WAS MODIFIED *****
RE-CHECKING FILE SYSTEM
** Last Mounted on /instrootmnt/var
** Phase 1 - Check Blocks and Sizes
** Phase 2 - Check Pathnames
** Phase 3 - Check Connectivity
** Phase 4 - Check Reference Counts
** Phase 5 - Check Cyl groups
484 files, 1794 used, 61111 free (295 frags, 7602 blocks, 0.5% fragmentation)
checking for core dump...
No dump exists
** Last Mounted on /instrootmnt/var/tmp
** Phase 1 - Check Blocks and Sizes
** Phase 2 - Check Pathnames
** Phase 3 - Check Connectivity
** Phase 4 - Check Reference Counts
** Phase 5 - Check Cyl groups
5 files, 5 used, 188910 free (30 frags, 23610 blocks, 0.0% fragmentation)
** Last Mounted on /instrootmnt/config
** Phase 1 - Check Blocks and Sizes
** Phase 2 - Check Pathnames
** Phase 3 - Check Connectivity
** Phase 4 - Check Reference Counts
** Phase 5 - Check Cyl groups
62 files, 65 used, 31603 free (27 frags, 3947 blocks, 0.1% fragmentation)
sysctl_chassis_role: member mode = Invalid (0)
sysctl_chassis_role: member mode = Invalid (0)
mkdir: /mfs/var/sdb: No such file or directory
mkdir: /mfs/var/sdb: No such file or directory
Creating initial configuration...mgd: Running FIPS Self-tests
veriexec: no signatures for device. file='/sbin/kats/cannot-exec' fsid=69 fileid=51404 gen=1 uid=0 pid=396
mgd: FIPS Self-tests Passed
Generating ED25519 key /etc/ssh/ssh_host_ed25519_key
Generating public/private ed25519 key pair.
Your identification has been saved in /config/ssh_host_ed25519_key.
Your public key has been saved in /config/ssh_host_ed25519_key.pub.
The key fingerprint is:
SHA256:B7Ft9l6EIYoxHObTpoCkQHQo5yYir/ORp7J6aGUzfx4 root@
The key's randomart image is:
+--[ED25519 256]--+
|+oo. .=.. . .    |
|o+o. o.= = . o   |
|oo. . + * + . .  |
|+ o  . + + . .   |
|o+    . S . . .  |
|  .*     . . .   |
| o= =  E    .    |
|=..+ . ..        |
|=*o   o.         |
+----[SHA256]-----+
mgd: commit complete
Setting initial options:  debugger_on_panic=NO debugger_on_break=NO.
Starting optional daemons: .
Doing initial network setup:
.
Initial interface configuration:
additional daemons:.
Additional routing options:kern.module_path: /boot//kernel;/boot/modules -> /boot/modules;/modules/peertype;/modules/ifpfe_drv;/modules/platform;/modules;
kld netpfe drv: ifpfed_chmicLoading the CHMIC module
 ifpfed_ethinterface ifpfed_eth.1 already present in the KLD 'kernel'!
kldload: can't load /modules/ifpfe_drv/ifpfed_eth.ko: Exec format error
 ifpfed_ml_cmn ifpfed_svcskld platform: ex_ifpfeLoading the EX-series platform NETPFE module
 if_vcpkld peertype: peertype_hcm peertype_pfem peertype_sfi peertype_slavere grat_arp_on_ifup=YES: net.link.ether.inet.grat_arp_on_ifup: 1 -> 1
 ipsec kldcryptosoft0:  on motherboard
 kats kldkldload: can't load kats.ko: File exists
IPsec: Initialized Security Association Processing.
.
Doing additional network setup:.
Starting final network daemons:.
starting local daemons:set cores for group access
.
Boot media /dev/da0 has dual root support
WARNING: JUNOS versions running on dual partitions are not same
** /dev/da0s1a
FILE SYSTEM CLEAN; SKIPPING CHECKS
clean, 36358 free (6 frags, 4544 blocks, 0.0% fragmentation)
setting ldconfig path: /usr/lib /opt/lib
starting standard daemons: cron.
Local package initialization:.
Initialize /var subdirs
Fri Jan  1 00:16:34 UTC 2010

Amnesiac (ttyu0)

/ 재부팅완료

login: root
Password:

--- JUNOS 15.1R6.7 built 2017-04-23 01:54:51 UTC
Setting initial options:  debugger_on_panic=NO debugger_on_break=NO.
Starting optional daemons: .
Doing initial network setup:
root@:RE:0% 
root@:RE:0% rface configuration:
root@:RE:0% aemons:.
root@:RE:0% outing options:kern.module_path: /boot//kernel;/boot/modules -> /boot/modules;/modules/peertype;/modulroot@:RE:0% ;/modules/platform;/modules;
root@:RE:0% rv: ifpfed_chmicLoading the CHMIC module
root@:RE:0% nterface ifpfed_eth.1 already present in the KLD 'kernel'!
root@:RE:0% 't load /modules/ifpfe_drv/ifpfed_eth.ko: Exec format error
root@:RE:0% mn ifpfed_svcskld platform: ex_ifpfeLoading the EX-series platform NETPFE module
root@:RE:0% eertype: peertype_hcm peertype_pfem peertype_sfi peertype_slavere grat_arp_on_ifup=YES: net.link.etherroot@:RE:0% rp_on_ifup: 1 -> 1
root@:RE:0% yptosoft0:  on motherboard
root@:RE:0% load: can't load kats.ko: File exists
root@:RE:0% alized Security Association Processing.
root@:RE:0% 
root@:RE:0% onal network setup:.
root@:RE:0% al network daemons:.
root@:RE:0% al daemons:set cores for group access
root@:RE:0% 
root@:RE:0% dev/da0 has dual root support
root@:RE:0% OS versions running on dual partitions are not same
root@:RE:0% 1a
root@:RE:0% CLEAN; SKIPPING CHECKS
root@:RE:0%  free (6 frags, 4544 blocks, 0.0% fragmentation)
root@:RE:0% nfig path: /usr/lib /opt/lib
root@:RE:0% ndard daemons: cron.
root@:RE:0% e initialization:.
root@:RE:0% var subdirs
root@:RE:0% 0:16:34 UTC 2010
root@:RE:0% 
root@:RE:0% yu0)
root@:RE:0% 
root@:RE:0% 
root@:RE:0% 
root@:RE:0% 
root@:RE:0% .1R6.7 built 2017-04-23 01:54:51 UTC
root@:RE:0% 
root@:RE:0% cli
{master:0}
root> show version    / OS 업그레이드 확인
fpc0:
--------------------------------------------------------------------------
Model: ex2200-24t-4g
Junos: 15.1R6.7
JUNOS EX  Software Suite [15.1R6.7]
JUNOS FIPS mode utilities [15.1R6.7]
JUNOS Online Documentation [15.1R6.7]
JUNOS EX 2200 Software Suite [15.1R6.7]
JUNOS Web Management Platform Package [15.1R6.7]

{master:0}
root> configure   
Entering configuration mode

{master:0}[edit]
root# commit   / 저장 후 끝
configuration check succeeds
commit complete

반응형

댓글