Como adicionar aliases de rede no Linux para computadores de rede

0

No Windows, o arquivo c: \ windows \ system32 \ drivers \ etc \ hosts permite adicionar aliases a IPs para que você possa se lembrar desses computadores com um nome familiar.

Aqui está o cabeçalho do arquivo HOSTS, por exemplo, =====================

# Copyright (c) 1993-2009 Microsoft Corp.
#
# This is a sample HOSTS file used by Microsoft TCP/IP for Windows.
#
# This file contains the mappings of IP addresses to host names. Each
# entry should be kept on an individual line. The IP address should
# be placed in the first column followed by the corresponding host name.
# The IP address and the host name should be separated by at least one
# space.
#
# Additionally, comments (such as these) may be inserted on individual
# lines or following the machine name denoted by a '#' symbol.
#
# For example:
#
#      102.54.94.97     rhino.acme.com          # source server

=======================

Qual é o mecanismo equivalente no Linux? (RHEL 6.3, para ser específico)? Qual arquivo eu preciso modificar / configurar para obter aliases para IPs?

    
por anjanbacchu 02.09.2013 / 17:12

1 resposta

2

O equivalente é /etc/hosts e o formato é o mesmo:

$ cat /etc/hosts
## '#' denote comments
## host IP       host alias
102.54.94.97     rhino.acme.com

Você pode ler sobre o arquivo hosts em sua página de manual, acessível em man hosts .

    
por 02.09.2013 / 17:16