16 lines
317 B
Markdown
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
|
|
``` |