Die host dient dazu, lokal Domains <-> IPs aufzulösen.
Einträge in der /etc/hosts sind üblicherweise:
#IP FQDN
192.168.0.42 my.dom.local
Was willst du genau erreichen?
Domain-Umleitungen?
#!/bin/sh
ip4="`host -4t A yourname.no-ip.org | awk '{print $4}'`"
if [ ! -z "$ip4" ]
then
sed "s/$ip4/d" -i /etc/hosts
echo "$ip4 proxy.domain.tld yourname.no-ip.org" >> /etc/hosts
fi
We use essential cookies to make this site work, and optional cookies to enhance your experience.