Solaris


Solaris10

ネットワーク設定

1.ノード名
対象ファイル;/etc/nodename
# cat /etc/nodename
test01

2.ホスト名
solarisはLinuxと違いNICごとにホスト名を割り当てが必要となる。
対象ファイル:/etc/hostname.”interface_name”
# cat /etc/hostname.e1000g0
test01-dmz

3.IPアドレスとホスト名の関係
各NICにおけるホスト名とIPアドレスはhostsファイルに記載される。
対象ファイル:/etc/inet/hosts
※/etc/hosts と /etc/inet/ipnodes は/etc/inet/hosts にシンボリックリンクが張られている。
# cat /etc/inet/hosts
#
# Internet host table
#
::1     localhost
127.0.0.1       localhost
192.168.1.10   test01 test01.example.com loghost
192.168.10.10  test01-dmz

4.サブネットマスク
各NICにおけるサブネットマスクは以下ファイルに記載される。
対象ファイル:/etc/netmasks
# cat /etc/netmasks
#
# The netmasks file associates Internet Protocol (IP) address
# masks with IP network numbers.
#
#       network-number  netmask
#
# The term network-number refers to a number obtained from the Internet Network
# Information Center.
#
# Both the network-number and the netmasks are specified in
# "decimal dot" notation, e.g:
#
#               128.32.0.0 255.255.255.0
#
192.168.1.0     255.255.255.0
192.168.10.0    255.255.255.0

5.ドメイン名
対象ファイル:/etc/defaultdomain
# cat /etc/netmasks
example.com


先頭のページ 前へ 次へ ページ末尾へ