Programs wont start when connected via KPPP
That problem can be cause when the the host name/ip cannot be resolved
quickly.
Usually host name/ip resolution is found in /etc/hosts, example only,
grep $(hostname) /etc/hosts
192.168.1.10 wb.home.invalid wb <=====
If hostname is not there, then /etc/resolv.conf is used to ask someone
what your hostname/ip to use. Example only
cat /etc/resolv.conf
search localdomain theplanet.net
nameserver 204.27.202.44
nameserver 216.48.227.687
The order of resolution is found in
cat /etc/host.conf
order hosts,bind
multi on
and/or
grep hosts /etc/nsswitch.conf
hosts: files nisplus nis dns <======
|