Archive

Archive for August, 2007

Juniper Snmp Config (Basic)

August 31st, 2007

A very basic Juniper Snmp config. (Readonly)

{master}[edit]
marcel@re0.lab2# show snmp
    location Amsterdam;
    contact "netops@domain.tld";
    community blablablabla {
    authorization read-only;
    clients {
        10.10.10.1/32;
        172.16.1.200/32;
    }
}
Very basic and easy I’m not a personal helpdesk so figure out your self how to configure read-write :-)

Juniper, Networking

JUNOS software Upgrade Redundant Routing Engines

August 31st, 2007

To upgrade Junos on a M-series Juniper with redundant routing engines you do it the following way.

  1.  Log in to the master Routing Engine.

  1.  Enter the JUNOS software configuration mode:
  2. 	{master}
    
    	marcel@re0.lab2> configure

  3.  Disable Routing Engine redundancy.
  4. 	{master} [edit]
    
    	marcel@re0.lab2# delete chassis redundancy

  5.  Save the configuration change on both Routing Engines.
  6. 	{master} [edit]
    
    	marcel@re0.lab2# commit synchronize and-quit

  7.  Log in to the backup Routing Engine.
  8.        {master}
            marcel@re0.lab2> request routing-engine login other routing-engine

    	{backup}
    
    	marcel@re1.lab2> request system software add
    
    	/var/home/marcel/jinstall-8.xxx.x-domestic-signed.tgz reboot

  1.  Switchover to the other Routing Engine to change the role.
  2.        {backup}
            marcel@re1.lab2> quit

           {master}
           marcel@re0.lab2> request chassis routing-engine master switch
          
          
    marcel@re0.lab2>

  1.  Install the new software version on the Backup Routing Engine.
  2. 	{backup}
    
    	marcel@re0.lab2> request system software add
    
    	/var/home/marcel/jinstall-8.xxx.x-domestic-signed.tgz reboot

  3.  Enable Routing Engine Redundancy again 
  4. 	{master}
    
    	marcel@re1.lab2> configure
    
    	[edit]
    
    	marcel@re1.lab2# rollback 1
    
    

  5.  Save the configuration change on both Routing Engines
  6. 	[edit]	marcel@re1.lab2> commit synchronize and-quit
    
    

  7.  If you are satisfied that the new software is running smoothly

                     {master}

    	marcel@re1.lab2> request routing-engine login other routing-engine
    	{backup}
    
    	marcel@re0.lab2> request system snapshot
    	{backup}
    
    	marcel@re0.lab2> quit

Juniper, Networking, Work

Blog change

August 29th, 2007

i changed the looks of my weblog a bit. I’m not sure if you like it. ( i don’t see colors very well) so leave a comment if you like it. I’m not sure if i will keep this theme.

Daily, MGR, Private

Juniper Aggregated Links

August 28th, 2007

Something about aggregated links on Juniper M series.

It is not hard to config aggregated links.
[edit]
marcel@lab2# show chassis
aggregated-devices {
    ethernet {
        device-count 2;
    }
}
---
[edit]
marcel@lab2# show interfaces ge-1/0/0
gigether-options {
    802.3ad ae0;
}

[edit]
marcel@lab2# show interfaces ge-1/1/0
gigether-options {
   802.3ad ae0;
}
[edit]
marcel@lab2# show interfaces ae0
description "AE0 towards lab-1";
unit 0 {
   family inet {
       filter {
           input AMSIX-in;
           output AMSIX-out;
       }
       address 10.10.4.2/30;
   }
   family inet6 {
       address 2001:0960:1300:1144::1/64;
   }
}
It is also possible to use load balancing per packet.

Juniper, Networking, Work

Blog update

August 15th, 2007

I’m going to change my weblog a bit i don’t like the Font i’m using plus i don’t like it to have technical stuff between my other posts. http://tech.ten-berg.nl will be my weblog with techtalk in a few day’s Old postings will remain in this weblog new stuff will go in a new thingie :) So get back in a few day’s and you will find some stuff changed

Tech, Work