Juniperルーターコンフィグ

以下は、Juniperルーターのフローコンフィグサンプルです。
詳細に関しましては機器ベンダー様へのお問い合わせをお願いいたします。

 

forwarding-options {
        sampling {
           input {
               family inet {
                   rate 100;
               run-length 9;
            max-packets-per-second 7000;
        }
    }
    {
        cflowd <destination address>{
                   port <port number>;
                        source-address <source address>;
                        version <version number>;
                    no-local-dump;
                autonomous-system-type origin;
            }
        }
    }
}

次の手順を実行し、インターフェースでパケットサンプリングを有効化

interfaces {
    ge-1/3/0 {
        vlan-tagging;
        unit 101 {
            vlan-id 101;
            family inet {
                sampling {
                    input;
                    output;
                }
                address 206.80.253.26/25
            }
        }
    }
}