Changes between Version 6 and Version 7 of adherelinux/KVM/qemu-pxe
- Timestamp:
- Aug 26, 2011, 2:12:29 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
adherelinux/KVM/qemu-pxe
v6 v7 55 55 }}} 56 56 57 設定dhcp server,讓dhcp只指定到tap0 58 {{{ 59 cd /etc/default 60 sudo emacs dhcp3-server 61 修改內容如下 INTERFACES="tap0" 62 }}} 63 64 設定 dhcpd.conf 65 {{{ 66 cd /etc/dhcp3 67 sudo emacs dhcpd.conf 68 修改內容如下 69 subnet 10.0.0.0 netmask 255.255.255.0 { 70 range 10.0.0.10 10.0.0.200; 71 option routers 10.0.0.1; 72 next-server 10.0.0.1; 73 filename "pxelinux.0"; 74 } 75 }}}