vRealize Network Insight에서 Cisco 4500 시리즈 스위치에 대한 Netflow 수집기를 구성할 수 있습니다.
- 흐름 레코드를 생성하려면 다음을 수행합니다.
configure terminal
flow record netflow-original
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 e1
destination <PROXY_IP>
transport udp 2055
end
- 흐름 모니터를 생성하려면 다음을 수행합니다.
configure terminal
flow monitor m1
record netflow-original
exporter e1
end
- 시간 초과를 구성하려면 다음을 수행합니다.
configure terminal
cache timeout inactive 30
cache timeout active 60
end
- 수신 모드와 송신 모드 또는 최소 수신 모드에서 각 인터페이스에 대한 흐름 모니터를 구성하려면 다음을 수행합니다.
configure terminal
interface <INTERFACE_NAME>
ip flow monitor m1 unicast input
end