Difference between revisions of "TDC Juniper"

From Teknologisk videncenter
Jump to: navigation, search
m (Links)
m (Bilag)
Line 25: Line 25:
 
*RFC 1812
 
*RFC 1812
 
*[http://www.juniper.net/us/en/local/pdf/app-notes/3500145-en.pdf Real-Time Performance Monitoring On Juniper Networks Device]
 
*[http://www.juniper.net/us/en/local/pdf/app-notes/3500145-en.pdf Real-Time Performance Monitoring On Juniper Networks Device]
 +
=Links=
 +
*[http://www.wtcs.org/snmp4tpc/FILES/Tools/SNMP/getif/getif-2.3.1.zip GetIF version 2.3.1]
 +
*[http://www.juniper.net/techpubs/en_US/junos11.1/information-products/topic-collections/config-guide-cos/config-guide-cos.pdf Class of Service Configuration Guide]
  
 
=Goodies=
 
=Goodies=

Revision as of 16:06, 7 December 2011

Juniper

Opgaver

Juniper FAQ

Se Juniper FAQ

Bilag

Links

Goodies

IS-IS opsætning

[edit protocols isis]
rael@SRX240#show
interface ge-0/0/0 {
  level 2 disable; # Som default kører interfaces L1 og L2 så derfor slår vi L2 Hello's fra.
}
interface ge-0/0/1 {
  level 2 disable;
}
[edit interfaces]
rael@SRX240#show
interface ge-0/0/0 {
  unit 0 {
    family iso;
    family inet address 10.0.0.1/24;
  }
}
lo0 {
  unit 0 {
    family inet address 192.168.0.1/32;
    family iso address 49.0001.1921.6800.0001.00;
  }
}

NetFlow opsætning

interfaces {
    ge-0/1/0 {
        unit 0 {
            family inet {
                filter {
                    input all;
                    output all;
                }
                address 192.168.1.1/24;
            }
        }
    }
}

firewall {
    filter all {
        term all {
            then {
                sample;
                accept;
            }
        }
    }
}

forwarding-options {
    sampling {
        input {
            family inet {
                rate 100;
            }
        }
        output {
            cflowd 192.168.1.100 {
                port 2000;
                version 5;
            }
        }
    }
}