Book Image

Network Analysis using Wireshark 2 Cookbook - Second Edition

By : Nagendra Kumar Nainar, Yoram Orzach, Yogesh Ramdoss
Book Image

Network Analysis using Wireshark 2 Cookbook - Second Edition

By: Nagendra Kumar Nainar, Yoram Orzach, Yogesh Ramdoss

Overview of this book

This book contains practical recipes on troubleshooting a data communications network. This second version of the book focuses on Wireshark 2, which has already gained a lot of traction due to the enhanced features that it offers to users. The book expands on some of the subjects explored in the first version, including TCP performance, network security, Wireless LAN, and how to use Wireshark for cloud and virtual system monitoring. You will learn how to analyze end-to-end IPv4 and IPv6 connectivity failures for Unicast and Multicast traffic using Wireshark. It also includes Wireshark capture files so that you can practice what you’ve learned in the book. You will understand the normal operation of E-mail protocols and learn how to use Wireshark for basic analysis and troubleshooting. Using Wireshark, you will be able to resolve and troubleshoot common applications that are used in an enterprise network, like NetBIOS and SMB protocols. Finally, you will also be able to measure network parameters, check for network problems caused by them, and solve them effectively. By the end of this book, you’ll know how to analyze traffic, find patterns of various offending traffic, and secure your network from them.
Table of Contents (20 chapters)

IPv6 neighbor discovery protocol operation and analysis

When the Layer 3 network is IPv6 addressed, IPv6 Neighbor Discovery (ND) protocol is used to resolve the MAC address associated to the IPv6 address. Unlike ARP, IPv6 ND uses ICMPv6 for address resolution by defining different ICMPv6 packet types.

ICMPv6 neighbor solicitation is an ICMPv6 message type used by a resolving node to query the link layer address for an IPv6 address. This is analogous to an ARP request for IPv4. This message will be designated to the IPv6 solicited node multicast address as there is no broadcast address in IPv6. The neighbor solicitation message format is as follows:

ICMPv6 neighbor advertisement is an ICMPv6 message type used by a responding node to reply with the link layer address for the associated IPv6 address. This message is analogous to an ARP reply for IPv4. This message will be unicasted...