vRealize Network Insight에서 Cisco 9000 시리즈 스위치에 대한 Netflow 수집기를 구성할 수 있습니다.
다음은 Cisco Nexus 9000에 대한 샘플 디바이스 명령 중 일부입니다.
- NetFlow 기능을 사용하도록 설정하려면 다음을 수행합니다.
configure terminal
feature netflow
end
- 흐름 레코드를 생성하려면 다음을 수행합니다.
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
- 흐름 내보내기를 생성하려면 다음을 수행합니다.
configure terminal
flow exporter vrni-exporter
destination <PROXY_IP>
transport udp 2055
version 9
source <INTERFACE_NAME>
end
- 각 인터페이스에 대한 흐름 모니터를 생성하려면 다음을 수행합니다.
configure terminal
flow monitor vrni-monitor
record vrni-record
exporter vrni-exporter
end
- 시간 초과를 구성하려면 다음을 수행합니다.
configure terminal
cache timeout inactive 30
cache timeout active 60
end
- 수신 모드와 송신 모드 또는 최소 수신 모드에서 각 인터페이스에 대한 흐름 모니터를 구성하려면 다음을 수행합니다.
configure terminal
interface <INTERFACE_NAME>
ip flow monitor vrni-monitor input
end