answersLogoWhite

0


Best Answer

Netstat will display statistics for ICMP such as Packets Sent and Received

Try netstat -s

ICMP messages arent data packets that are usable by a computers user but by the OS itself, they indicated issues with connectivity in response to requests that are being sent from the computer. For example your computer requests a web page from a particular IP address, if your router is unable to establish a connection to that it will send an ICMP message back to your computer to let it know why.

Common messages that get sent are:

Echo reply (Ping)

Echo request (Ping)

Destination Unreachable

Netstat monitors TCP\UDP ports on the computer to monitor connections to the machine, ICMP is a lower level prototcol (IP) and hence doesnt maintain connections or actively listen for ICMP packets

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Why doesnt the netstat command display any information about ICMP connections?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Computer Science

What is netstat used for in terms of computing?

Netstat is a command-line tool that displays network connections and a number of network interface and network protocol statistics. It is used to find problems on networks and determine how traffic effects performance.


What is the function of netstat?

Used to see which active TCP connections are open and running on a networked host. Lists the protocols in use, the local address and port number, the destination address and port number and the state of the connection.


What tool can be used to view network connections and configure a firewall and configure storage on a windows server 2008 computer?

Explore few of the commands like Netstat &Nbtstat for Network Connections, Netsh for Firewall, Diskpart for Storage in Windows Server 2008.


How do I find my IP address?

It depends on the operating system you are using. For Windows based systems, at the command prompt, use the command 'ipconfig'. You can also use the 'netstat' command to get this information. For a Unix/Linux system, the command is 'ifconfig', although you may also use 'netstat' to find your IP address. also using internet Allaboutsite offers whatismyiptool to find your ipaddress. As the name suggests, this tool lets you instantly find out your IP address online. Just head to the page and see your IP address displayed at the top along with it's physical location on a Google map.


Which three commands can be used to help troubleshoot Layer 3 connectivity issues?

PING, Netstat & Tracert

Related questions

What information can be gathered by the command netstat?

Active TCP connections


What information can be gathered by using the command netstat?

Active TCP connections


Which Protocols Does Does The Netstat -s Command Print Information?

Netstat reports on the common tcp/ip protocols, including (but not limited to) TCP, UDP, ICMP, socket connections.


About which protocols does the netstat -s command print information?

Netstat reports on the common tcp/ip protocols, including (but not limited to) TCP, UDP, ICMP, socket connections.


What is the netstat command in Linux?

netstat----------most useful and very versatile for finding connection to and from the host. you can find out all the mulitcast groups (network) subscribed by this host by issuing "netstat -g"netstat -nap | grep port will display process id of application which is using that portnetstat -a will display all connections including tcp and udpnetstat --tcp will display only tcp connectionnetstat --udp will display only udp connectionnetstat -g will display all multicast network subscribed by this host.


How can you see a log of internet connections using command prompt in windows vista?

use the netstat command.


Which command is used to display static route table for local host?

Netstat -e


Which Windows command line utility can be used to confirm the multiple TCP connections?

netstat /all will show you all active connections


What parameter can be added to the netstat command so that you can see what program is responsible fora network connection?

The Windows netstat command; netstat -b (show the executable involved in creating each connection) netstat /? (list of available parameters)


What does the Linux command netstat-r do?

It will display the content of all routing tables, or a routing table for a particular address family.


What is netstat used for in terms of computing?

Netstat is a command-line tool that displays network connections and a number of network interface and network protocol statistics. It is used to find problems on networks and determine how traffic effects performance.


What command-line tool would help you discover for which port numbers your computer is listening?

Running netstat -a display all ports that are listening on a machine at the time the command is run.