免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 9645 | 回复: 4
打印 上一主题 下一主题

[网络管理] 崩溃,virtualbox下安装dhcp,无论怎样都无法获取IP [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2013-05-28 23:01 |只看该作者 |倒序浏览
各位好,
本人菜鸟,各位勿笑。
我正在学习Linux,在自己的xp上安装了virtualbox,然后安装了两台centos 6.4的虚拟机,test1,test2。
我想利用虚拟机test1给test2自动分配IP,那自然要在test1上安装dhcp服务。
先用yum把dhcp安装好,然后修改dhcpd.conf配置文件,如下:
  1. # dhcpd.conf
  2. #
  3. # Sample configuration file for ISC dhcpd
  4. #

  5. # option definitions common to all supported networks...
  6. option domain-name "example.org";
  7. option domain-name-servers ns1.example.org, ns2.example.org;

  8. default-lease-time 600;
  9. max-lease-time 7200;

  10. # Use this to enble / disable dynamic dns updates globally.
  11. ddns-update-style interim;
  12. ignore client-updates;

  13. # If this DHCP server is the official DHCP server for the local
  14. # network, the authoritative directive should be uncommented.
  15. #authoritative;

  16. # Use this to send dhcp log messages to a different log file (you also
  17. # have to hack syslog.conf to complete the redirection).
  18. log-facility local7;

  19. # No service will be given on this subnet, but declaring it helps the
  20. # DHCP server to understand the network topology.

  21. subnet 10.152.187.0 netmask 255.255.255.0 {
  22. }

  23. # This is a very basic subnet declaration.

  24. subnet 10.254.239.0 netmask 255.255.255.224 {
  25.   range 10.254.239.10 10.254.239.20;
  26.   option routers rtr-239-0-1.example.org, rtr-239-0-2.example.org;
  27. }

  28. # This declaration allows BOOTP clients to get dynamic addresses,
  29. # which we don't really recommend.
  30.   allow booting;
  31.   allow bootp;
  32.   next-server                   192.168.240.101;
  33.   filename "pxelinux.0";
  34. subnet 192.168.240.0 netmask 255.255.255.0 {
  35.   option routers                192.168.240.1;
  36.   option subnet-mask            255.255.255.0;
  37. #option domain-name-servers    192.168.56.83;
  38.   range dynamic-bootp 192.168.240.150 192.168.240.160;
  39.   host test1{
  40.                 hardware ethernet 08:00:27:83:5A:F4;
  41.                 fixed-address 192.168.240.88;
  42. }
  43.   #option broadcast-address 10.254.239.31;
  44.   #option routers rtr-239-32-1.example.org;
  45. }

  46. # A slightly different configuration for an internal subnet.
  47. subnet 10.5.5.0 netmask 255.255.255.224 {
  48.   range 10.5.5.26 10.5.5.30;
  49.   option domain-name-servers ns1.internal.example.org;
  50.   option domain-name "internal.example.org";
  51.   option routers 10.5.5.1;
  52.   option broadcast-address 10.5.5.31;
  53.   default-lease-time 600;
  54.   max-lease-time 7200;
  55. }

  56. # Hosts which require special configuration options can be listed in
  57. # host statements.   If no address is specified, the address will be
  58. # allocated dynamically (if possible), but the host-specific information
  59. # will still come from the host declaration.

  60. host passacaglia {
  61.   hardware ethernet 0:0:c0:5d:bd:95;
  62.   filename "vmunix.passacaglia";
  63.   server-name "toccata.fugue.com";
  64. }

  65. # Fixed IP addresses can also be specified for hosts.   These addresses
  66. # should not also be listed as being available for dynamic assignment.
  67. # Hosts for which fixed IP addresses have been specified can boot using
  68. # BOOTP or DHCP.   Hosts for which no fixed address is specified can only
  69. # be booted with DHCP, unless there is an address range on the subnet
  70. # to which a BOOTP client is connected which has the dynamic-bootp flag
  71. # set.
  72. host fantasia {
  73.   hardware ethernet 08:00:07:26:c0:a5;
  74.   fixed-address fantasia.fugue.com;
  75. }

  76. # You can declare a class of clients and then do address allocation
  77. # based on that.   The example below shows a case where all clients
  78. # in a certain class get addresses on the 10.17.224/24 subnet, and all
  79. # other clients get addresses on the 10.0.29/24 subnet.

  80. class "foo" {
  81.   match if substring (option vendor-class-identifier, 0, 4) = "SUNW";
  82. }

  83. shared-network 224-29 {
  84.   subnet 10.17.224.0 netmask 255.255.255.0 {
  85.     option routers rtr-224.example.org;
  86.   }
  87.   subnet 10.0.29.0 netmask 255.255.255.0 {
  88.     option routers rtr-29.example.org;
  89.   }
  90.   pool {
  91.     allow members of "foo";
  92.     range 10.17.224.10 10.17.224.250;
  93.   }
  94.   pool {
  95.     deny members of "foo";
  96.     range 10.0.29.10 10.0.29.230;
  97.   }
  98. }
复制代码
然后启动dhcp服务,显示成功。
然后我想先测试一下test1自动获取IP地址。
test1的网络配置是host-only,因此我把虚拟出来的host-only network Ethernet adapter 网卡的dhcp服务给停掉以免干扰。
同时我把test1的网络配置修改成dhcp自动获取IP,如下:
  1. DEVICE=eth0
  2. TYPE=Ethernet
  3. UUID=e8788375-75a3-4a48-8d88-03464d12eee7
  4. #ONBOOT=no
  5. ONBOOT=yes
  6. NM_CONTROLLED=yes
  7. BOOTPROTO=dhcp
  8. #BOOTPROTO=none
  9. HWADDR=08:00:27:e1:ba:ab
  10. #Default No IPADDR,NETMASK,NETWORK,GATEWAY
  11. #IPADDR=192.168.240.101
  12. #NETMASK=255.255.255.0
  13. #NETWORK=192.168.240.0
  14. #GATEWAY=192.168.240.1
  15. #
  16. DEFROUTE=yes
  17. PEERROUTES=yes
  18. IPV4_FAILURE_FATAL=yes
  19. IPV6INIT=no
  20. NAME="System eth0"
  21. USERCTL=no
复制代码
我重启网络,但发现test1的eth0网卡IP地址没有在我dhcp配置文件设定的范围内,而且是从虚拟网卡中获得的。
test1自己都无法获得正确的IP地址,那说明我上面哪一步配置有问题,也没有必要再往下进行。
这个问题困扰了我几天了,希望能够在这里得到各位的帮助,多谢!!!

论坛徽章:
381
CU十二周年纪念徽章
日期:2014-01-04 22:46:58CU大牛徽章
日期:2013-03-13 15:32:35CU大牛徽章
日期:2013-03-13 15:38:15CU大牛徽章
日期:2013-03-13 15:38:52CU大牛徽章
日期:2013-03-14 14:08:55CU大牛徽章
日期:2013-04-17 11:17:19CU大牛徽章
日期:2013-04-17 11:17:32CU大牛徽章
日期:2013-04-17 11:17:37CU大牛徽章
日期:2013-04-17 11:17:42CU大牛徽章
日期:2013-04-17 11:17:47CU大牛徽章
日期:2013-04-17 11:17:52CU大牛徽章
日期:2013-04-17 11:17:56
2 [报告]
发表于 2013-05-29 07:47 |只看该作者
服务器ip应该是固定的才对.

论坛徽章:
0
3 [报告]
发表于 2013-05-30 11:00 |只看该作者
Ok.
已搞定。
楼上说的对,我被一个帖子误导,纠结在这里很久。
我其实是在实践PXE远程引导安装CentOS,配DHCP是必经的一步。
多谢!

论坛徽章:
381
CU十二周年纪念徽章
日期:2014-01-04 22:46:58CU大牛徽章
日期:2013-03-13 15:32:35CU大牛徽章
日期:2013-03-13 15:38:15CU大牛徽章
日期:2013-03-13 15:38:52CU大牛徽章
日期:2013-03-14 14:08:55CU大牛徽章
日期:2013-04-17 11:17:19CU大牛徽章
日期:2013-04-17 11:17:32CU大牛徽章
日期:2013-04-17 11:17:37CU大牛徽章
日期:2013-04-17 11:17:42CU大牛徽章
日期:2013-04-17 11:17:47CU大牛徽章
日期:2013-04-17 11:17:52CU大牛徽章
日期:2013-04-17 11:17:56
4 [报告]
发表于 2013-05-30 13:53 |只看该作者
实践是检验真理的唯一标准,文档只能参考,要根据实际情况灵活改变

论坛徽章:
0
5 [报告]
发表于 2014-08-23 23:04 |只看该作者
先禁用virtual box 的dhcp功能。

cd D:\Program Files\Oracle\VirtualBox
D:\Program Files\Oracle\VirtualBox>VBoxManage list dhcpservers
NetworkName:    HostInterfaceNetworking-VirtualBox Host-Only Ethernet Adapter
IP:             192.168.56.100
NetworkMask:    255.255.255.0
lowerIPAddress: 192.168.56.101
upperIPAddress: 192.168.56.254
Enabled:        Yes
D:\Program Files\Oracle\VirtualBox>VBoxManage dhcpserver remove --netname "HostInterfaceNetworking-VirtualBox Host-Only Ethernet Adapter"
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP