KVM specific details and deployment
Review KVM requirements, networking guidance, VM operations, and vSensor deployment before pairing and updating.
KVM Specific Requirements
KVM Networking Guidance
Open vSwitch
# Define the interfaces and the mirror
BRIDGE="br0"
SRC="eth0"
DST="vnet0"
MIRROR="span"
# Create a bridge and set all ports up
ovs-vsctl add-br ${BRIDGE}
ip link set dev ${BRIDGE} up
ip link set dev ${SRC} up
ip link set dev ${DST} up
# Enable promiscuous mode on the source interface
ip link set ${SRC} promisc on
# Add the ports to the bridge and enable a traffic mirror from SRC to DST
ovs-vsctl \
-- add-port ${BRIDGE} ${SRC} \
-- add-port ${BRIDGE} ${DST} \
-- --id=@${SRC} get port ${SRC} \
-- --id=@${DST} get port ${DST} \
-- --id=@${MIRROR} create mirror \
name=${MIRROR} \
select-src-port=@${SRC} \
select-dst-port=@${SRC} \
output-port=@${DST} \
-- set bridge ${BRIDGE} mirrors=@${MIRROR}tc
tcJumbo Frame Support
Basic Interaction with KVM Virtual Machines
Downloading the KVM vSensor Image

Deploying the KVM vSensor

Last updated
Was this helpful?