> For the complete documentation index, see [llms.txt](https://ceh-practical.cavementech.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://ceh-practical.cavementech.com/module-2.-footprinting-and-reconnaissance/7.-network-footprinting.md).

# 7. Network footprinting

## <mark style="color:red;">1. Locate Network Range</mark>

visit the website

{% embed url="<https://www.arin.net/>" %}

<figure><img src="/files/vlDn3QwSehN6MSzmVt3x" alt=""><figcaption></figcaption></figure>

## 2. Perform Network Tracerouting in Windows and Linux Machines

The route is the path that the network packet traverses between the source and destination. Network tracerouting is a process of identifying the path and hosts lying between the source and destination. Network tracerouting provides critical information such as the IP address of the hosts lying between the source and destination, which enables you to map the network topology of the organization.

```sh
tracert certifiedhacker.com
```

<figure><img src="/files/xcb3q75AhYx8m6ekUaEH" alt=""><figcaption></figcaption></figure>

Run **tracert /?** command to view the different options for the command, as shown in the screenshot.

<figure><img src="/files/lMG1FCtB4ygLPXkCmFFb" alt=""><figcaption></figcaption></figure>

Run **tracert -h 5 [www.certifiedhacker.com](http://www.certifiedhacker.com)** command to perform the trace, but with only 5 maximum hops allowed.

```
tracert -h 5 certifiedhacker.com
```

Maximum five hops.

<figure><img src="/files/SQTxGVwieT8jYb0fdTPx" alt=""><figcaption></figcaption></figure>

### **Linux Trace route**

```
traceroute ethicalhacker.com
```

<figure><img src="/files/1qk4K5fhHdPdZaX96y6E" alt=""><figcaption></figcaption></figure>

## <mark style="color:red;">3. Advanced Network tracing with path analyzer pro</mark>

```
https://path-analyzer-pro.software.informer.com/2.7/
```

<mark style="color:green;">You can also use other traceroute tools such as</mark> <mark style="color:green;"></mark><mark style="color:green;">**PingPlotter**</mark> <mark style="color:green;"></mark><mark style="color:green;">(<https://www.pingplotter.com/>),</mark> <mark style="color:green;"></mark><mark style="color:green;">**Traceroute NG**</mark> <mark style="color:green;"></mark><mark style="color:green;">(<https://www.solarwinds.com>), etc. to extract additional network information of the target organization.</mark>

{% embed url="<https://www.udemy.com/course/ethical-hacker-practical/?referralCode=289CF01CF51246BCAD6C>" %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://ceh-practical.cavementech.com/module-2.-footprinting-and-reconnaissance/7.-network-footprinting.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
