Skip to content
This repository has been archived by the owner on Jun 25, 2023. It is now read-only.

Latest commit

 

History

History
61 lines (49 loc) · 1.62 KB

00-VM-Network-Overview.md

File metadata and controls

61 lines (49 loc) · 1.62 KB

VM実験環境概要

使用する機材の詳細な構成はこちらを参照してください

  • ネットワーク空間は192.168.100.0/24
  • ドメインはnlab.local
識別名 ホスト名 IPアドレス
RT ---- 192.168.100.1
DNS ---- 192.168.100.2
NTP ---- 192.168.100.2
PC1 esxi1 192.168.100.11
PC2 esxi2 192.168.100.12
PC3 esxi3 192.168.100.13
PC4 esxi4 192.168.100.14
---- vcenter 192.168.100.21
DNSを使用しない場合の設定方法
  • ステージ1
    FQDN: 192.168.100.21
    デフォルトゲートウェイ: 192.168.100.1
    DNSサーバ: 192.168.100.1

  • ステージ2

  1. SSHを有効にしたあと、vCenterにSSH接続を行う
  2. hostファイルを編集する
# vi /etc/hosts
以下の行を追加した

192.168.100.11 esxi1 esxi1.nlab.local
192.168.100.12 esxi2 esxi2.nlab.local
192.168.100.13 esxi3 esxi3.nlab.local
192.168.100.14 esxi4 esxi4.nlab.local

192.168.100.21 localhost
192.168.100.21 vcenter vcenter.nlab.local
  1. vCenter内部のdnsmasqの設定を変更する
# vi /etc/dnsmasq.conf

no-hosts -> #no-hosts(コメントアウト)

no-resolv(追記)
bogus-priv(追記)
  • no-hostsをコメントアウトして/etc/hostsでの名前解決を許可
  • no-resolvを追記して/etc/resolv.confを無視する
  • bogus-privを追記してプライベートIPアドレスの上位DNSへの逆引きを禁止する
  1. dnsmasqを再起動
# systemctl restart dnsmasq.service
  1. インストールを続行