Grappling with how to monitor network traffic? You’re not alone. With modern data centers becoming more and more virtualized, and network virtualization and server virtualization becoming the norm, traditional methods of capturing east-west traffic in the data center have become increasingly limited. New network visibility tools and virtualization software are needed. (For more information, see The Complete Guide to Application Mapping.)
Table of Contents
Toggle- Network Monitoring
- Lanir Shacham
- CEO, Faddom
- Tips from the Expert
- Full traffic capture on VMware ESXI
- Virtual port mirroring in a VMware virtual environment
- Promiscuous mode network capture
- Setting up promiscuous mode port groups
- Setting up VMs to receive the network traffic
- Overcoming the network visibility challenge
Connecting a TAP to your network or using a SPAN port in order to capture network traffic is no longer possible in many cases. The reasons for capturing this traffic can be many and are not in the scope of this post, but some of the more common ones are:
-
- Optimizing network performance
-
- Mapping dependencies between servers
-
- Security detection / Intrusion detection
-
- Debugging applications
Network Monitoring
First, in order to understand why the standard methods of collecting traffic for network visibility are not viable in a VMware virtual environment or a hybrid cloud, we need an example:
In the above example, we have a simple network with eight virtual machines running in two different subnets connected to a virtual and physical network infrastructure. Let’s say that we want to get full network visibility into this environment from all access points.
Related content: Read our guide to IT system mapping
At each point marked in the physical network, we would only be able to see some of the traffic. For instance, at point E in the network, we would only see traffic crossing between our two subnets because only traffic that has to cross the subnet boundary will be sent to the router for layer three routing. We would not have network visibility of the internal traffic inside the subnets (i.e. VM 1 communicating with VM 5) since that would just be passed through the switch using layer 2 switching. Also, if we used a TAP or a SPAN port on the physical switch to collect traffic from all connections A-D, we would still miss traffic going between virtual machines on the same host and in the same subnet (i.e. communication between VM 1 and VM 2). There is no monitoring tool for this traffic, short of installing an agent on each VM. Or is there?
Lanir Shacham
CEO, Faddom
Lanir specializes in founding new tech companies for Enterprise Software: Assemble and nurture a great team, Early stage funding to growth late stage, One design partner to hundreds of enterprise customers, MVP to Enterprise grade product, Low level kernel engineering to AI/ML and BigData, One advisory board to a long list of shareholders and board members of the worlds largest VCs
Tips from the Expert
In my experience, here are tips that can help you better leverage network traffic monitoring and visibility:
- Implement advanced network segmentation Use network segmentation to isolate and protect critical systems and data. This can help in managing traffic more effectively and securing sensitive information.
- Deploy virtual TAPs and SPANs In virtual environments, utilize virtual TAPs (Test Access Points) and SPAN (Switched Port Analyzer) ports to capture traffic without impacting physical infrastructure. This allows for better scalability and flexibility.
- Leverage software-defined networking (SDN) Utilize SDN for centralized control and dynamic adjustment of network traffic flows. This helps in optimizing performance and enhancing visibility across complex virtual and physical networks.
- Incorporate network flow analysis tools Use tools that support NetFlow, sFlow, or IPFIX to collect and analyze traffic flows. These tools provide insights into network usage patterns and help in identifying potential bottlenecks.
- Utilize deep packet inspection (DPI) Implement DPI to analyze the contents of data packets. This enables more granular monitoring, improving the detection of anomalies, security threats, and application performance issues.
Full traffic capture on VMware ESXI
In this post, we will be looking at how to get the full traffic from all the VMs in our example using VMware products, primarily VMware ESXI. There are two main ways to do this in a VMware virtual environment depending on the types of virtual switches being used.
You might find the other posts on this series useful:
Gain network visibility with NetFlow in VMware
Gain network visibility with Hyper-V and Sflow
Virtual port mirroring in a VMware virtual environment
The easiest way to address the issue of how to monitor network traffic for specific VMs and gain network visibility is to use the port mirroring feature built into vSphere Distributed Switches (vDS). There is also a method to get the traffic if you are using standard switches and if you are, you can skip to the next part for details on that.
Under the setting of the vDS switches, there is a port mirroring tab which allows the configuration of port mirroring sessions. The vDS switches support multiple modes of port mirroring, but the simplest of them to use is Encapsulated Remote Mirroring. For this type of mirroring, you specify the source VM(s) for which you would like to get traffic and the destination IP address to send the traffic to. Make sure that you DO NOT add the vmkernel adapters to the sources since you may cause a loop where all packets are continuously retransmitted. This can cause the entire host to lose network connectivity and require network settings recovery.
Related content: Read our guide to check ssl certificates
Each captured packet will have a header prepended to it with the GRE protocol and it will be sent over the existing physical and virtual network infrastructure to the destination address you specified. You can also optionally specify a maximum length to truncate the network packets to, and a sampling rate in order to reduce the amount of network traffic.
Note that each packet that you request to mirror in this fashion is duplicated and sent over the network so this can cause significant overhead on your network infrastructure. Also, the receiver will need to strip the GRE header in order to get the original packet data so make sure that whatever you are using to analyze the packets supports GRE.
Promiscuous mode network capture
The second way to capture network traffic on a VM without installing anything on the VM itself is by using the promiscuous mode feature on VMware port groups as part of your VMware virtualization. Promiscuous mode for a port group basically allows the VM that is connected to that port group to see any network traffic going through the switch, regardless of whether it was routed to that VM.
To set this up in our sample VMware virtual environment, we will need to configure two things:
- Set up port groups with promiscuous mode enabled
- Set up VMs to receive the captured traffic
Setting up promiscuous mode port groups
First, we will need to set up our port groups. We will need to set up a single port group for each switch.
For vDS switches, we need to create a distributed port group and change the following:
- In the security tab, we will need to set promiscuous mode to “Accept”
In the VLAN tab, we should set the type to VLAN trunking and set the range to 0-4094 in order to get traffic from all VLANs
For port groups on standard switches, the configuration is similar:
- In the Properties tab change the VLAN ID to All (4095)
In the Security tab, for Promiscuous mode, enable override and set to Accept
In the “VLAN” tab, we should set the type to “VLAN trunking” and set the range to 0-4094 in order to get traffic from all VLANs.
Setting up VMs to receive the network traffic
Once we have completed the configuration of port groups for all our switches, we will need to create a capture VM for each one of the hosts we want to collect traffic for. Note that each capture VM will only be able to see the traffic in that specific host. Network traffic is never copied between physical hosts, even if promiscuous mode is enabled and the VMs are in the same switch/port group/cluster/etc.
For each capture VM, we will add multiple network interfaces – one for each virtual switch we want to monitor. We’ll assign one of our promiscuous mode port groups to each of the network interfaces on that VM.
For our previous example, assuming we were using standard switches, we would create four promiscuous mode port groups, two on each host (one for each switch). We would then create two capture VMs, each with 2 network interfaces, and assign them to the promiscuous mode port groups we configured.
If this was all configured correctly, Capture VM 1 should now be able to see all the traffic from all the VMs on Host 1 and Capture VM 2 should be able to see all the traffic from all the VMs on Host 2. Notably:
- This is all done without any overhead whatsoever on the physical network
- As there is no duplication of any packet, this process is much more efficient than any form of port mirroring.
- This can all be done on any version of VMware ESXI, even the free versions.
Overcoming the network visibility challenge
In this post, we addressed the challenge of monitoring tools for network traffic and how to gain network visibility into a VMware virtual environment without any dedicated hardware and with full visibility into the VM traffic. In the next part of this series, we will look at how to gain information on network dependencies between VMs in a much quicker and simpler way when we do not require full capture of network traffic.
This is part of a series of articles about IT Mapping