4

Я тестирую приложение на своем ПК, это приложение подключается к различным серверам, поэтому мне нужно имитировать это на моем устройстве.

Как я могу сопоставить имена хостов с 127.0.0.1?

localhost уже ссылается на 127.0.0.1, но как я могу добавить больше, таких как server-1 и server-2 к 127.0.0.1?

Я на Windows 7.

Спасибо

1 ответ1

13

Просто отредактируйте файл hosts и используйте его, чтобы указать 127.0.0.1 или локальный IP-адрес вашего компьютера.

Файл обычно находится в: /windows/system32/drivers/etc

например, вот мой, и я тестировал несколько «серверов», как вы можете видеть:

# 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
#       38.25.63.10     x.acme.com              # x client host

# localhost name resolution is handled within DNS itself.
#   127.0.0.1       localhost
#   ::1             localhost
    192.168.202.32  feng
    192.168.202.241 helpdesk
    192.168.202.241 wiki
    192.168.202.241 rs
    192.168.202.241 precurio    
    192.168.202.241 zendto

Всё ещё ищете ответ? Посмотрите другие вопросы с метками .