web-dev-qa-db-ja.com

複数のホスト名をローカルホストにマップするにはどうすればよいですか?

PCでアプリケーションをテストしていますが、このアプリケーションはさまざまなサーバーに接続するため、ボックスでそれを模倣する必要があります。

ホスト名を127.0.0.1にマップするにはどうすればよいですか?

localhostはすでに127.0.0.1を参照していますが、server-1server-2などを127.0.0.1に追加するにはどうすればよいですか?

私はWindows7を使用しています。

ありがとう

4
user155695

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
13
Linker3000