mirror of
https://github.com/cunnie/sslip.io.git
synced 2025-10-05 23:56:50 +08:00
Docs for self: who's using ip.sslip.io?
Note: the two biggest users are Cypriot IP addresses: ``` 2 106.52.50.235 <- Tencent 1 223.71.46.114 <- China Mobile 157 31.153.14.207 <- Cypriot 110 62.228.164.123 <- Cypriot 4 73.189.219.4 <- My home IP ``` `
This commit is contained in:
10
docs/logs.md
10
docs/logs.md
@@ -25,3 +25,13 @@ sed -E 's=.*(\.[^.]+\.[^.]+\.$)=\1=' < hosts.log | tr 'A-Z' 'a-z' | sort | uniq
|
||||
# find the most looked-up IP addresses using the above hosts.log
|
||||
sort < /tmp/hosts.log | uniq -c | sort -n | tail -50
|
||||
```
|
||||
|
||||
```zsh
|
||||
# Who's trying to find out their own IP via ip.sslip.io?
|
||||
sudo journalctl --since yesterday -u sslip.io-dns | \
|
||||
grep -v "nil, SOA" | \
|
||||
grep "TypeTXT ip.sslip.io" | \
|
||||
sed 's/.*TypeTXT ip.sslip.io. ? \["//; s/"\]$//' | \
|
||||
sort | \
|
||||
uniq -c
|
||||
```
|
||||
|
Reference in New Issue
Block a user