vRealize Network Insight では、Cisco 9000 シリーズ スイッチ用に NetFlow コレクタを構成できます。

次に、Cisco Nexus 9000 のデバイス コマンドの例をいくつか示します。

  1. NetFlow 機能を有効にするには、次を実行します。

    configure terminal

    feature netflow

    end

  2. フロー レコードを作成するには、次を実行します。

    configure terminal

    flow record vrni-record

    match ipv4 protocol

    match ipv4 source address

    match ipv4 destination address

    match transport source-port

    match transport destination-port

    match interface input

    collect transport tcp flags

    collect counter bytes

    collect counter packets

    collect timestamp sys-uptime first

    collect timestamp sys-uptime last

    End

  3. フロー エクスポータを作成するには、次を実行します。

    configure terminal

    flow exporter vrni-exporter

    destination <PROXY_IP>

    transport udp 2055

    version 9

    source <INTERFACE_NAME>

    end

  4. 各インターフェイスに対してフロー モニターを作成するには、次を実行します。

    configure terminal

    flow monitor vrni-monitor

    record vrni-record

    exporter vrni-exporter

    end

  5. タイムアウトを設定するには、次を実行します。

    configure terminal

    cache timeout inactive 30

    cache timeout active 60

    end

  6. Egress モードと Ingress モード、または少なくとも Ingress モードで各インターフェイスに対するフロー モニターを構成するには、次を実行します。

    configure terminal

    interface <INTERFACE_NAME>

    ip flow monitor vrni-monitor input

    end