[Contents][Prev][Next][Index][Report an Error]

Flow-Monitoring Redundancy

Active monitoring services configurations on AS or MultiServices PICs support redundancy. To configure redundancy, you specify a redundancy services PIC (rsp) interface in which the primary AS or MultiServices PIC is active and a secondary PIC is on standby. If the primary PIC fails, the secondary PIC becomes active, and all service processing is transferred to it. If the primary PIC is restored, it remains on standby and does not preempt the secondary PIC; you need to manually restore the services to the primary PIC. To determine which PIC is currently active, issue the show interfaces redundancy command.

Note: On flow-monitoring configurations, the only service option supported is warm standby, in which one backup PIC supports multiple working PICs. Recovery times are not guaranteed, because the configuration must be completely restored on the backup PIC after a failure is detected. However, configuration is preserved and available on the new active PIC.

As with the other services that support warm standby, you can issue the request interfaces (revert | switchover) command to switch manually between the primary and secondary flow monitoring interfaces.

For more information, see Configuring AS or MultiServices PIC Redundancy. For information on operational mode commands, see the JUNOS Interfaces Command Reference.

A sample configuration follows.

interface {
rsp0 {
redundancy-options {
primary sp-0/0/0;
secondary sp-1/3/0;
}
unit 0 {
family inet;
}
}
}
interface {
ge-0/2/0 {
unit 0 {
family inet {
filter {
input as_sample;
}
}
address 10.58.255.49/28;
}
}
}
forwarding-options {
sampling {
input {
family inet {
rate 1;
run-length 0;
max-packets-per-second 65535;
}
}
output {
cflowd 10.10.10.2 {
port 5000;
version 5;
}
flow-active-timeout 60;
interface rsp0 {
source-address 10.10.10.1;
}
}
}
}
firewall {
filter as_sample {
term t1 {
then {
sample;
accept;
}
}
}
}

[Contents][Prev][Next][Index][Report an Error]