Friday 21 February 2014

JTAC Recommended Junos Software Versions ( Feb 2014) - SRX


SRX Series Services Gateways

PlatformJTAC Recommended Junos Software by PlatformRelease
Type
Last
updated
SRX100B/HJunos 11.4R10.3Standard08 Jan 2014
SRX100H2 (*1)Junos 12.1X44-D30.4Standard03 Feb 2014
SRX110HJunos 11.4R10.3Standard28 Jan 2014
SRX110H2Junos 12.1X44-D30.4Standard03 Feb 2014
SRX210B/H/BE/HEJunos 11.4R10.3Standard08 Jan 2014
SRX210H2Junos 12.1X44-D30.4Standard03 Feb 2014
SRX220HJunos 11.4R10.3Standard08 Jan 2014
SRX220H2Junos 12.1X44-D30.4Standard03 Feb 2014
SRX240B/H/B2/H2Junos 11.4R10.3Standard08 Jan 2014
SRX550Junos 12.1X44-D30.4Standard03 Feb 2014
SRX650Junos 11.4R10.3Standard08 Jan 2014
SRX1400 (*2, 3)Junos 11.4R10.4Standard08 Jan 2014
SRX1400 w/NP-IOC (*2, 3)Junos 12.1X44-D30.4Standard04 Feb 2014
SRX3400 (*3)Junos 11.4R10.4Standard08 Jan 2014
SRX3400 w/NP-IOC (*3)Junos 12.1X44-D30.4Standard04 Feb 2014
SRX3600 (*3)Junos 11.4R10.4Standard08 Jan 2014
SRX3600 w/NP-IOC (*3)Junos 12.1X44-D30.4Standard04 Feb 2014
SRX5400Junos 12.1X46-D10.2Standard08 Jan 2014
SRX5600Junos 11.4R10.3Standard08 Jan 2014
SRX5600 w/NG-SPC (*4)Junos 12.1X44-D30.4Standard03 Feb 2014
SRX5800Junos 11.4R10.3Standard08 Jan 2014
SRX5800 w/NG-SPC (*4)Junos 12.1X44-D30.4Standard03 Feb 2014

Note:

(*1) TSB16272 - U-Boot upgrade recommendation for SRX100H2
(*2) SRX 1400 deployment as a Chassis Cluster requires Junos 11.1 or above
(*3) TSB16273 - Junos software limitation for SRX1400/SRX3400/SRX3600 Routing Engine and SRX3K Switch Fabric Board
(*4) TSB16197 - Intermittent PHY or MAC layer link failure on SRX5600 and SRX5800 with SRX5K-SPC-4-15-320

Saturday 15 February 2014

JUNOS : Install Software via CLI from Junos software copied to USB stick

Follow these steps to install the software via the CLI from a USB stick:
  1. Download the Junos upgrade file to the USB stick. 
  2. Locate the USB device ID that Junos is associating to the USB stick:
    user@srx> start shell
    user@srx% ls /dev/

  3. Insert the USB device into the USB slot.  For example, slot 0 would return the following:
    root# umass0: USB USBFlashDrive, rev 2.00/1.00, addr 2
    da0 at umass-sim0 bus 0 target 0 lun 0
    da0: <USB USBFlashDrive 0100> Removable Direct Access SCSI-0 device
    da0: 1.000MB/s transfers
    da0: 980MB (2007040 512 byte sectors: 64H 32S/T 980C)

    Run the following command

    user@srx% ls /dev/

    Locate difference in outputs to locate drive label. (It will usually be da#s1, i.e. da0s1)
  4. Create a mount directory:
    user@srx% mkdir /tmp/usb
  5. Mount the USB to the directory:
    user@srx% mount -t msdosfs /dev/<drivelabel, e.g. #da0s1> /tmp/usb

    Example:
    user@srx% mount -t msdosfs /dev/da0s1 /tmp/usb (there is a space between the label name and /tmp)

    Verify that the USB is mounted to the device:
    root@% pwd
    /cf/root
    root@% cd /var/tmp/usb/
    root@% pwd
    /cf/var/tmp/usb
    root@% ls
    junos-jsr-11.4R5.7-export.tgz
  6. Exit shell and install the software:
    user@srx% exit
    user@srx> request system software add /tmp/usb/<upgrade filename> no-validate no-copy
  7. Upon completion, reboot the SRX:
    user@srx> request system reboot

Sunday 9 February 2014

JUNOS : ACTIVATE YOUR SRX SERIES AND J SERIES FEATURES




Four Easy Steps to Activate Your Juniper Networks Product Features
 



1. Gather your Authorization Code and Device Serial Number.

Authorization Code:

The 16-digit alphanumeric Authorization Code is sent via email in response to your order and is required to generate the license activation key for your SRX Series device. The Authorization Code is required to generate your license key—it is not the actual license key.

Device Serial Number:
The device serial number is a unique 12-digit alphanumeric code used to identify your SRX Series device when generating license keys. You can find the SRX Series device serial number either on the bottom or sides of the unit. You can also find the serial number via the NSM Device Inventory Hardware tab by executing the CLI command, “show chassis hardware,” or through the J-Web Monitor Dashboard.

2. Sign in to the Juniper Networks License Management System at  www.juniper.net/generate_license ,

Select the J Series and SRX Series device link, and follow the instructions in the system user interface.

3. The Juniper License Management System provides you with your license key in one of two ways:

Download your license key to your computer from the Juniper Networks License Management System.

• You receive an email that contains the license key.

4. On the SRX Series Device:

CLI: request system license add terminal > Press Enter >
When prompted, type the license key separating multiple license keys with a blank line > Ctrl-D.

J-Web Interface:
Click Maintain > Licenses and enter the license key in one of the following ways:
In the license File URL box, type the URL for the license key website.

•Or copy the license key text, and paste it into the License Key Text box, separating multiple license keys with a blank line.

• Click OK

Wednesday 5 February 2014

JUNOS : Configure System Log

By default, control protocol activity is logged as a separate system log facility, dfc. To modify the filename or level at which control protocol activity is recorded, include the following statements at the [edit syslog] hierarchy level:
[edit syslog]
file dfc.log {dfc any;}
To cancel logging, include the no-syslog statement at the [edit services dynamic-flow-capture capture-group client-name control-source identifier] hierarchy level:
[edit services dynamic-flow-capture capture-group client-name control-source identifier]no-syslog;
loading...