JunOS: Copy From USB

JunOS: Copy From USB

JunOS is based on FreeBSD, and therefore uses Linux commands to copy files back and forth. This may be required to retrieve logs or to update the software.

 

Procedure

Start with the USB drive disconnected. This assumes that the USB disk is FAT formatted.

  1. Connect to the shell with start shell
  2. See a list of existing partitions with ls /dev/da*
  3. Plugin the USB drive; A list of mount information will appear
  4. Run ls /dev/da* again, and see an additional partition is available, such as /dev/da1s1
  5. Create a mount point with mkdir /var/tmp/usb
  6. Mount the partition with mount_msdosfs [partition] /var/tmp/usb
  7. Copy files as required with cp
  8. Unmount the partition with umount /var/tmp/usb
  9. Remove the USB drive

 

Note that cp does not show copy rate and completion percent. Rsync would normally be an option, but it’s not available on JunOS.

 

Example

root@Switch01> start shell
root@Switch01:RE:0% ls /dev/da*
/dev/da0        /dev/da0p1      /dev/da0p2

root@Switch01:RE:0% ugen0.4:  at usbus0
umass1:  on usbus0
umass1:  SCSI over Bulk-Only; quirks = 0x8100
umass1:1:1: Attached to scbus1
da1 at umass-sim1 bus 1 scbus1 target 0 lun 0
da1:  Removable Direct Access SPC-4 SCSI device
da1: Serial Number 4C530002770123121310
da1: 40.000MB/s transfers
da1: 7633MB (15633408 512 byte sectors)
da1: quirks=0x2

root@Switch01:RE:0% ls /dev/da*
/dev/da0        /dev/da0p1      /dev/da0p2      /dev/da1        /dev/da1s1

root@Switch01:RE:0% mkdir /var/tmp/usb

root@Switch01:RE:0% mount_msdosfs /dev/da1s1 /var/tmp/usb

root@Switch01:RE:0% cp /var/tmp/usb/ex-2300-18.3R1.9.tgz /var/tmp

root@Switch01:RE:0% cp /var/tmp/usb/jweb-ex-app-x86-32-18.3A1.tgz /var/tmp

root@Switch01:RE:0% umount /var/tmp/usb

root@Switch01:RE:0% ugen0.4:  at usbus0 (disconnected)
umass1: at uhub1, port 4, addr 4 (disconnected)
da1 at umass-sim1 bus 1 scbus1 target 0 lun 0
da1:  s/n 4C530002770123121310 detached
(da1:umass-sim1:1:0:0): Periph destroyed

 

References

Juniper – How to mount a USB drive on the EX/J/SRX/MX series platforms

Leave a Reply