手順 |
内容 |
備考 |
1 |
/etc/resolv.conf の設定
# for nice.kaze.com
#nameserver 61.207.9.37
#nameserver 61.207.9.5
# for abuna.net / test.com
nameserver 192.168.1.1
|
|
必要な設定を有効にし、不要な設定をコメントアウトします。
[# for nice.kaze.com] での [domain kaze.com] の記述は、/etc/hosts で解決できるようにしているので、不要と思います。
|
2 |
/etc/network/interfaces の設定
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
source /etc/network/interfaces.d/*
# The loopback network interface
auto lo eth0
iface lo inet loopback
# The primary network interface
allow-hotplug eth0
iface eth0 inet static
# for nice.kaze.com
# address 153.150.70.18
# netmask 255.255.255.252
# network 153.150.70.16
# gateway 153.150.70.17
# for abuna.net
address 192.168.1.210
netmask 255.255.255.0
network 192.168.1.0
gateway 192.168.1.1
# for test.com
# address 192.168.1.201
# netmask 255.255.255.0
# network 192.168.1.0
# gateway 192.168.1.1
# This is an autoconfigured IPv6 interface
|
|
必要な設定を有効にし、不要な設定をコメントアウトします。
ちなみに /etc/network/interfaces.d/* は空でした。
|
3 |
/etc/hosts の設定
127.0.0.1 localhost
# select item
#153.150.70.18 nice.kaze.com
192.168.1.210 abuna.net
#192.168.1.201 test.com
# The following lines are desirable for IPv6 capable hosts
|
|
必要な設定を有効にし、不要な設定をコメントアウトします。
|
4 |
/etc/hostname の設定
@ nice.kaze.com の時
A abuna.net の時
B test.com の時
|
サーバ名をズバリ記載します。
|
5 |
/etc/hosts.allow の設定
# /etc/hosts.allow: list of hosts that are allowed to access the system.
# See the manual pages hosts_access(5) and hosts_options(5).
#
# Example: ALL: LOCAL @some_netgroup
# ALL: .foobar.edu EXCEPT terminalserver.foobar.edu
#
# If you're going to protect the portmapper use the name "rpcbind" for the
# daemon name. See rpcbind(8) and rpc.mountd(8) for further information.
#
|
|
変更不要。
確認だけ。
有効な記述はありませんでした。
|
6 |
/etc/hosts.deny の設定
# /etc/hosts.deny: list of hosts that are _not_ allowed to access the system.
# See the manual pages hosts_access(5) and hosts_options(5).
#
# Example: ALL: some.host.name, .some.domain
# ALL EXCEPT in.fingerd: other.host.name, .other.domain
#
# If you're going to protect the portmapper use the name "rpcbind" for the
# daemon name. See rpcbind(8) and rpc.mountd(8) for further information.
#
# The PARANOID wildcard matches any host whose name does not match its
# address.
#
# You may wish to enable this to ensure any programs that don't
# validate looked up hostnames still leave understandable logs. In past
# versions of Debian this has been the default.
# ALL: PARANOID
|
|
変更不要。
確認だけ。
有効な記述はありませんでした。
|
7 |
本サーバをリブートします |
これをやらないと環境変数が以前のままです |