answersLogoWhite

0

1. ping, to test network layerconnectivity also called L3 connectivity.

2. traceroute, to trace how a packet reaches its destination, and to analyse routing problems if any.

User Avatar

Wiki User

16y ago

What else can I help you with?

Related Questions

What two TCP IP command line utilities used for name resolution?

Use either nslookup or dig


What TCP IP utility is commonly used on the command line of routers?

Two commonly used utilities, for troubleshooting, are ping and traceroute.Two commonly used utilities, for troubleshooting, are pingand traceroute.Two commonly used utilities, for troubleshooting, are pingand traceroute.Two commonly used utilities, for troubleshooting, are pingand traceroute.


7. The lpr and sort utilities accept input either from a file named on the command line or from standard input. a. Name two other utilities that function in a similar manner. b. Name a utility that ac?

a. cat and grep b. tr


What is the AutoCAD command used to determine if two or more entities reside on the same plane?

The Line Command!


What software has two interfaces command line and GUI?

Many operating systems provide both a command line and a GUI interface. Windows, for instance, is obviously a GUI, however cmd.exe provides access to the underlying command line interface.


Which two layers of the osi model have the same function as the TCPIP?

physical and data link


What are the two levels of access using a command line interface?

1. administrator 2. standard


What command is used to compare the files?

The command used to compare files in Unix-like operating systems is diff. This command analyzes two files line by line and displays the differences between them. For example, running diff file1.txt file2.txt will show any lines that differ between the two files. Additionally, the cmp command can be used for a byte-by-byte comparison, while comm can be used to compare sorted files.


What are the three Microsoft command line tools for setting or viewing NTFS permissions available for use with windows xp?

There are only two command line tools for setting and viewing NTFS permissions in XP. They are CACLS.exe for "change ACLs", and XCACLS.exe for "extended ACLs".


The incident command system command function may be conducted in one of two ways. What are these two ways?

The incident command system command function may be conducted in one of two ways


What two pieces of information are necessary for TCPIP communication on the local network?

A local IP address (your computer) and a remote IP address (the destination computer).


How do you compile or run a c program in ms dos?

Compiling and running are two completely different procedures. To compile a C program you need a C compiler and linker (two separate programs). Once the source code has been compiled to object files you then need to link those files to create an executable. Once you have an executable you can run it. There's nothing particularly special about compiling from the command line as opposed to compiling within an integrated development environment (IDE). They both do exactly the same thing. However, an IDE is easier because it not only helps you easily organise your project files, it can build (compile and link) and execute the program with a single command. The end result is exactly the same as you would get by manually compiling, linking and executing from the command line. Command lines include a bewildering array of options and switches (parameters). To make sense of them, it is best to use the IDE and examine the command line that it generates for you, changing compiler and linker options to see what effect that has on the command line. Once the IDE command line settings are exactly the way you want them you can copy/paste those command lines into a command file (*.cmd) or a batch file (*.bat) which you can easily invoke from the command line.