editing / private / etc / hosts

0

Ho appena aggiunto il mio dominio no-ip a / private / etc / hosts con un alias più breve:

alias host.no-ip.biz

Ho provato quanto segue sulla shell:

dscacheutil -flushcache

ma continua a dire:

ssh: Could not resolve hostname

Che succede?

    
posta Walrus the Cat 03.07.2013 - 19:29
fonte

1 risposta

2

/ etc / hosts non possono essere utilizzati per questo :

/etc/hosts cannot be used (by itself) to produce hostname "aliases".

The hosts file produces the internal equivalent of A and PTR records from the DNS, i.e. mapping of hostname to IP address and vice-versa.

It cannot be used to produce the same effect as a CNAME record.

Puoi rendere ssh alias equivalente a ssh host.no-ip.biz o ssh [email protected] aggiungendo righe come questa a ~/.ssh/config :

Host alias
HostName host.no-ip.biz
# User username
    
risposta data 03.07.2013 - 19:45
fonte

Leggi altre domande sui tag