> For the complete documentation index, see [llms.txt](https://pnpt.adot8.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://pnpt.adot8.com/windows-privilege-escalation/initial-enumeration-manual/network-enumeration.md).

# Network Enumeration

## Gather Host Networking Information

```powerquery
ipconfig /all
```

```powerquery
arp -a
```

```powerquery
route print
```

```powerquery
netstat -ano
```

{% hint style="info" %}
Viewing this information is important for knowing if the host is [dual-homed](/post-exploitation/pivoting.md), have had connections to other hosts on the network and if some ports are only opened internally
{% endhint %}
