Changes between Version 3 and Version 4 of Xen_DRBL


Ignore:
Timestamp:
Mar 11, 2009, 3:27:02 PM (15 years ago)
Author:
rock
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Xen_DRBL

    v3 v4  
    11= Xen 和 DRBL 整合上得問題 =
    22== 1. DRBL for DRBL Xen Client 的環境設定 ==
     3 * __Xen image 和 grub menu 設定__
    34{{{
    45$ cp /boot/*xen* /tftboot/nbi_img
     
    1718  ENDTEXT
    1819}}}
     20 * __Setup domU IP from DHCP (192.168.1.50 ~ 192.168.1.250)__
     21{{{
     22$ vim /etc/dhcp3/dhcpd.conf
     23subnet 192.168.1.0 netmask 255.255.255.0 {
     24    option subnet-mask  255.255.255.0;
     25    option routers 192.168.1.254;
     26    next-server 192.168.1.254;
     27    range 192.168.1.50 192.168.1.250
     28//skip//
    1929
     30$ iptables -t nat -A POSTROUTING -s 192.168.1.0/24 -j MASQUERADE
     31}}}
     32 
    2033[[BR]]
    2134== 2. 問題 ==