Troubleshoot VMware NSX Connectivity Issues

Monitor and analyze virtual machine traffic with Flow Monitoring

Flow monitoring is used to capture ingress/egress traffic of VM’s in a NSX environment. Flow monitoring is disabled by default and you need to enable it before you can use this tool. Once Flow monitoring is enabled, you need to wait for some time to let this tool gather data about your vSphere environment (much like how vROPS gather data before generating reports/recommendations etc)

Flow monitoring can be enabled by navigating to Networking & Security > Flow Monitoring > Configuration and clicking on Enable. 

fm-1

Under Flow Exclusion, you can exclude any object which you don’t want to monitor. For example, you can select option “destination” under Exclusion Settings and click on + button to specify a destination container for which flow monitoring data won’t be gathered. 

fm-12.PNG

Flow Monitoring Dashboard

Here you can see Top Flows, Top Destinations and Top Sources of your environment. 

Top Flows: This tab will show you what type of traffic (http, ping, DNS, ARP etc) is flowing through your environment.

Since these screenshots are taken from my lab, where nothing much is configured, the top traffic is reported for ICMP (as I keep testing connectivity between VM’s post configuring anything new)

fm-7

Top Destinations: This will give you a list of destination VM’s where most of the traffic is going. In production it can be a mail server or a web server or any such VM which is accessed by end users very frequently.

fm-8

Top Sources: Those VM’s which is producing the maximum outgoing traffic.

fm-9

Details by Service

This tab categorizes the traffic flow based on what type of services are being accessed. It will show you the amount of data collected and the number of sessions. 

fm-10.PNG

On selecting a Service you can see the traffic from the source and destination. You can even add a DFW Rule by selecting any object and clicking on Add Rule. You can specify whether traffic from a given source will be allowed or blocked. 

fm-11

Live Flow

Live Flow is used to see real-time traffic flow for a specific VM network interface. You can configure the time interval for which you want to see the live traffic and if a VM has more than one network interface, you can exclusively select a NIC for which flow will be gathered.

From Live Flow tab, click on “Select vNIC”

fm-2

Select a VM from the list and click on > button to choose specific NIC.

fm-3

fm-4

Once a VM NIC is selected, click on Start button to capture real-time flow.

fm-5

And you will see data getting populated and info like Source IP/Port, Destination IP/Port, Incoming Bytes, Outgoing Bytes etc will be displayed on-screen.

In my lab, I initiated a ping from one of my VM towards a web server and 2 records populated here.

fm-6

Troubleshoot Virtual Machine Connectivity

VM’s connected to same logical switches should communicate with each other. If they are not communicating, then it means you have made some configuration mistakes. Common things which you can check for troubleshooting this issue are:

  • Ensure the 2 VM’s which you are trying to communicate with each other have IP address from same subnet. 
  • Firewall running inside Guest OS is not blocking ping etc.
  • NIC card of both VM’s should be connected.
  • VM’s should be in same cluster which you connected to Transport Zone. If the VM’s are in different cluster, then ensure both clusters were added to TZ where you created the virtualwire. 

To establish communication between 2 logical switches, you need a DLR. Logical switches are added to DLR as in internal interface (LIF) and while adding the LIF’s, you specify an IP address for that LIF. This IP address act as the Gateway IP for all the VM’s which are connected to that LIF.

If you are unable to ping between 2 VM’s which reside on different logical switches, then ensure following:

VM’s IP address should match with subnet IP which you added on the LIF and that IP is set as default gateway inside Guest OS.  Refer screenshots below

vmts-1.PNG

vmts-2

vmts-3

You can also test the logical switch connectivity by double clicking on a logical switch and from Monitor tab you can test for Ping and Broadcast packets.

Select the source and destination host by clicking on browse button and click on “Start Test”

If the test is successful, you will see similar results shown below.

LS-18.png

LS-19

Troubleshoot dynamic routing protocols

You can configure dynamic routing like OSPF, BGP and IS-IS on NSX edges, DLR and/or between other network components. if the routing is not working as expected between the 2 devices, then you can use below commands to debug and troubleshoot routing issues.

Case 1: BGP is configured between DLR and NSX Edge

In my lab, NSX edge is distributing routes for network 192.168.20.0/29 via BGP to DLR and DLR is distributing 172.16.10.0/24,172.16.20.0 and 172.16.30.0/24 to ESG. I ran following commands to verify routing is working as expected.

Verify BGP Neighbor

Verify routes learned via BGP

Verify Forwarding Table

Important: When configuring BGP between a DLR and ESG, always make sure to use protocol address for forming BGP neighborship. If you use DLR’s forwarding address in place of protocol address, routes won’t be learnt between ESG and DLR

Case 2: OSPF configured between 2 NSX edges : You can run following commands on both edge to troubleshoot OSPF issues

Verify OSPF neighbors 

Verify if routes are being learnt or not via OSPF

If you have verified that your OSPF/BGP configuration is correct on both sides, make sure that you are advertising the routes. It’s a very common mistake that we forget to configure Route-Redistribution post configuring the dynamic routing protocol. Route Redistribution is configured under NSX Edge > Manage > Routing > Route Redistribution.

And that’s it for this post.

I hope you find this post informational. Feel free to share this on social media if it is worth sharing. Be sociable 🙂

Leave a Reply