Externe IP-Adresse: Unterschied zwischen den Versionen

Aus Foxwiki
Die Seite wurde neu angelegt: „= Öffentliche IP-Adresse ermitteln = curl -L -s --max-time 10 http://checkip.dyndns.org | grep -Eo -m 1 '(digit:{1,3}.){3}digit:{1,3}' lynx -dump h…“
 
KKeine Bearbeitungszusammenfassung
Zeile 1: Zeile 1:
= Öffentliche IP-Adresse ermitteln =
= Öffentliche IP-Adresse ermitteln =
curl -L -s --max-time 10 http://checkip.dyndns.org | grep -Eo -m 1 '([[:digit:]]{1,3}.){3}[[:digit:]]{1,3}'
wget -O - -q icanhazip.com


lynx -dump http://www.formyip.com/ | awk "/IP is/" | awk {'print $4'}
curl -L -s --max-time 10 http://checkip.dyndns.org | grep -Eo -m 1 '([[:digit:]]{1,3}.){3}[[:digit:]]{1,3}'


wget -O - -q icanhazip.com
lynx -dump http://www.formyip.com/ | awk "/IP is/" | awk {'print $4'}

Version vom 15. März 2022, 20:37 Uhr

Öffentliche IP-Adresse ermitteln

wget -O - -q icanhazip.com
curl -L -s --max-time 10 http://checkip.dyndns.org | grep -Eo -m 1 '(digit:{1,3}.){3}digit:{1,3}'
lynx -dump http://www.formyip.com/ | awk "/IP is/" | awk {'print $4'}