Unterhalb dieser Frage ist ein Beispiel einer /etc/hosts
Datei von einem Linux- (CentOS) und einem Windows-Computer eingefügt. Die Linux-Datei enthält nach der IP-Adresse zwei Einträge mit Registerkarten (localhost.localdomain localhost) und Windows nur einen. Wenn ich die Hosts-Datei in Windows so bearbeiten möchte, dass sie den Computernamen (etest) anstelle von localhost enthält, ersetze ich einfach das Wort localhost durch den gewünschten Computernamen. Der Computer muss nicht Teil einer Domain sein.
Auf einem Linux-Computer geben die beiden Einträge localhost.localdomain
und localhost
anscheinend an, dass der Computer Teil einer Domäne sein muss. Ist das wahr?
Kann ich einfach beide Einträge etest
so bearbeiten, dass es liest:
127.0.0.1 etest etest
oder muss ich einen eintrag durch einen domainnamen ersetzen?
Lassen Sie mich außerdem wissen, wozu die zweite Zeile der /etc/hosts
Datei auf dem Linux-Computer dient.
::1 localhost6.localdomain6 localhost6
hosts
Datei auf einem Linux-Rechner:
# Do not remove the following line, or various programs
# that require network functionality will fail.
127.0.0.1 localhost.localdomain localhost
::1 localhost6.localdomain6 localhost6
hosts
Datei auf einem Windows-Computer:
# Copyright (c) 1993-1999 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
# 38.25.63.10 x.acme.com # x client host
127.0.0.1 localhost