2022-01-16 18:20:39 +00:00
|
|
|
---
|
|
|
|
title: "troubleshooting"
|
2022-01-26 22:35:07 +00:00
|
|
|
tags: [ "Documentation", "Networking" ]
|
2022-01-16 18:20:39 +00:00
|
|
|
---
|
2020-01-02 00:04:35 +00:00
|
|
|
|
|
|
|
# Do you have an IP?
|
|
|
|
|
2022-01-26 22:35:07 +00:00
|
|
|
If not, try checking out what your local Networking interfaces are, then check if they have been picked up:
|
2020-01-02 00:04:35 +00:00
|
|
|
|
2023-06-17 19:28:20 +00:00
|
|
|
```bash
|
|
|
|
dmesg | grep eth0
|
|
|
|
```
|
2020-01-02 00:04:35 +00:00
|
|
|
|
|
|
|
# Display Active Ports
|
|
|
|
|
2023-06-17 19:28:20 +00:00
|
|
|
```bash
|
|
|
|
netstat -l
|
|
|
|
```
|
2020-01-02 00:04:35 +00:00
|
|
|
|
2022-01-26 22:35:07 +00:00
|
|
|
...or maybe narrow it down to http:
|
2020-01-02 00:04:35 +00:00
|
|
|
|
2023-06-17 19:28:20 +00:00
|
|
|
```bash
|
|
|
|
netstat -l | grep http
|
|
|
|
```
|
2020-01-02 00:04:35 +00:00
|
|
|
|