个人工具

“UbuntuHelp:UEC/Tips”的版本间的差异

来自Ubuntu中文

跳转至: 导航, 搜索
(创建新页面为 '{{From|https://help.ubuntu.com/community/UEC/Tips}} {{Languages|UbuntuHelp:UEC/Tips}} The goal of this page is to document little tips or tricks for working with [[UbuntuHelp:UE...')
 
 
第1行: 第1行:
 
{{From|https://help.ubuntu.com/community/UEC/Tips}}
 
{{From|https://help.ubuntu.com/community/UEC/Tips}}
 
{{Languages|UbuntuHelp:UEC/Tips}}
 
{{Languages|UbuntuHelp:UEC/Tips}}
The goal of this page is to document little tips or tricks for working with [[UbuntuHelp:UEC|UEC]] that dont fit other places.
+
The goal of this page is to document little tips or tricks for working with [[UbuntuHelp:UEC|UEC]] that don't fit other places.
 
==== Multiple DHCP Servers / MAC Filtering ====
 
==== Multiple DHCP Servers / MAC Filtering ====
The installation of a CloudController adds a dhcp server to the network.  It is managed and will only respond to instances.  However, if you have another dhcp server on your same network, it may also respond, which could reek havoc.
+
The installation of a CloudController adds a dhcp server to the network.  It is managed and will only respond to instances.  However, if you have another dhcp server on your same network, it may also respond, which could wreak havoc.
 
Eucalyptus creates its instances with MAC addresses starting with '''<code><nowiki>d0:0d</nowiki></code>'''.  This means that you can configure the other dhcp server on the network to ignore instance requests by filtering on that MAC address.
 
Eucalyptus creates its instances with MAC addresses starting with '''<code><nowiki>d0:0d</nowiki></code>'''.  This means that you can configure the other dhcp server on the network to ignore instance requests by filtering on that MAC address.
 
This can be accomplished in dnsmasq (used by dd-wrt or other wrt projects) by adding the following to the config:
 
This can be accomplished in dnsmasq (used by dd-wrt or other wrt projects) by adding the following to the config:
 
<pre><nowiki>
 
<pre><nowiki>
dhcp-host=d0:0d:*,ignore
+
dhcp-host=d0:0d:*:*:*:*,ignore
 
</nowiki></pre>
 
</nowiki></pre>
  
 
[[category:UbuntuHelp]]
 
[[category:UbuntuHelp]]

2010年5月20日 (四) 00:39的最新版本

The goal of this page is to document little tips or tricks for working with UEC that don't fit other places.

Multiple DHCP Servers / MAC Filtering

The installation of a CloudController adds a dhcp server to the network. It is managed and will only respond to instances. However, if you have another dhcp server on your same network, it may also respond, which could wreak havoc. Eucalyptus creates its instances with MAC addresses starting with d0:0d. This means that you can configure the other dhcp server on the network to ignore instance requests by filtering on that MAC address. This can be accomplished in dnsmasq (used by dd-wrt or other wrt projects) by adding the following to the config:

dhcp-host=d0:0d:*:*:*:*,ignore