月曜日, 4月 07, 2008

VMware上のDebianでIPを固定する

[Debian] VMWare上のDebianでIPを固定する - capsctrldays (2005-12-14)を参考にして設定してみた。

# vi /etc/network/interfaces

# The primary network interface
#allow-hotplug eth0
#iface eth0 inet dhcp
auto eth0
iface eth0 inet static
address 192.168.27.128
network 192.168.27.0
netmask 255.255.255.0
broadcast 192.168.27.255
gateway 192.168.27.2


networkを再起動するか、VMwareを再起動することで設定が反映される。

# /etc/init.d/networking restart


networkのアドレスは、"C:\Documents and Settings\All Users\Application Data\VMware\vmnetdhcp.conf"を参照することで知ることができる。

subnet 192.168.27.0 netmask 255.255.255.0 {
range 192.168.27.128 192.168.27.254; # default allows up to 125 VM's
option broadcast-address 192.168.27.255;
option domain-name-servers 192.168.27.2;
option domain-name "localdomain";
option netbios-name-servers 192.168.27.2;
option routers 192.168.27.2;
default-lease-time 1800;
max-lease-time 7200;
}
host VMnet8 {
hardware ethernet 00:50:56:C0:00:08;
fixed-address 192.168.27.1;
option domain-name-servers 0.0.0.0;
option domain-name "";
option routers 0.0.0.0;
}


IPアドレスが割り当てられると、ifconfigの結果が以下のようになる。

# ifconfig
eth0 Link encap:Ethernet HWaddr xx:xx:xx:xx:xx:xx
inet addr:192.168.27.128 Bcast:192.168.27.255 Mask:255.255.255.0
inet6 addr: fe80::20c:29ff:fe6a:cd1b/64 Scope:Link
...


DNSの設定は、以下のようにする。

# vi /etc/resolv.conf
search localdomain
nameserver 192.168.27.2



[Debian] VMWare上のDebianでIPを固定する - capsctrldays (2005-12-14)のコメントには、『"C:\Documents and Settings\All Users\Application Data\VMware\vmnetdhcp.conf"にhostを追加すればDHCPを使用したIPの固定化が出来る』とあり、次のように設定をしたが、よく分からないinet6のIPアドレスは割り当てられたが、inetのIPアドレスは割り当てられなかった。

subnet 192.168.27.0 netmask 255.255.255.0 {
range 192.168.27.128 192.168.27.254; # default allows up to 125 VM's
option broadcast-address 192.168.27.255;
option domain-name-servers 192.168.27.2;
option domain-name "localdomain";
option netbios-name-servers 192.168.27.2;
option routers 192.168.27.2;
default-lease-time 1800;
max-lease-time 7200;
host Debian {
hardware ethernet xx:xx:xx:xx:xx:xx;
fixed-address 192.168.27.128;
}
}


多分、設定が間違っているんだと思うが、やりたいことは出来たので、これでよしとしよう・・・。

(;-_-)

【参考】
[Debian] VMWare上のDebianでIPを固定する - capsctrldays (2005-12-14)
Debianでのネットワークの設定

0 件のコメント:

コメントを投稿