Posts

Showing posts from 2015

Upgrading JUNOS via USB

I borrowed this guide from Juniper but keeping it here incase i cannot find it going forward. You need to have a fat32 or smaller than 4gb partitioned USB flash disk.  Enter the shell as root: user@switch> start shell user root Password: root@switch% Before inserting the USB device, perform the following: root@% ls /dev/da* /dev/da0 /dev/da0s1c /dev/da0s2a /dev/da0s3 /dev/da0s3e /dev/da0s1 /dev/da0s1f /dev/da0s2c /dev/da0s3c /dev/da0s1a /dev/da0s2 /dev/da0s2f /dev/da0s3d Insert the USB drive in the USB port. The following output will be displayed: root@% umass1: TOSHIBA TransMemory, rev 2.00/1.00, addr 3 da2 at umass-sim1 bus 1 target 0 lun 0 da2: <TOSHIBA TransMemory 5.00> Removable Direct Access SCSI-0 device da2: 40.000MB/s transfers da2: 983MB (2013184 512 byte sectors: 64H 32S/T 983C) root@% ls /dev/da* /dev/da0 /dev/da0s1c /dev/da0s2a /dev/da0s3 /dev/da0s3e /dev/da0s1 /dev/da0s1f /dev/da0s2c /dev/da0s3c /dev/da2 /dev/da0s1a /dev/da...

Redistributing routes between VRF and INET.0 with logical tunnels

Vendor: Juniper Device: MX series Software: 11.4R9.4 If you don't want to use RIB groups to leak routes between the inet.0 \ VRF routing tables do not fear there is another solution. Using logical tunnels we can form adjancies between the inet.0 and l3vpn tables and redistribute routes. In this example we will use ibgp as the igp.  Note: MX Series routers must be equipped with a Trio MPC/MIC module ################################################################### set interfaces lt-1/2/0 unit 13 description "GLOBAL" Configure the Global IBGP Session set routing-instances L3VPN_(groupname) interface lt-1/2/0.14 show route receive-protocol bgp 1.1.1.2 Configure the lt interfaces  set interfaces lt-1/2/0 unit 13 encapsulation ethernet set interfaces lt-1/2/0 unit 13 peer-unit 14 set interfaces lt-1/2/0 unit 13 family inet address 192.168.0.1/30 set interfaces lt-1/2/0 unit 14 description "L3VPN" set interfaces lt-1/2/0 unit 14 encapsulation...