Files
2024-12-11 03:08:08 -05:00

16 lines
317 B
Markdown

# Network Stuff
## Finding IP Address
To find the IP address of your computer there are two general directions to think about, Public IP and Private IP.
To find your public ip:
```bash
curl ifconfig.me # When curl is installed
wget ifconfig.me # When wget is installed
```
For your private ip:
```bash
ip addr
```