2015年1月16日 星期五

proxmox ve 3.3 安裝 glusterfs server 3.6

wget -O - http://download.gluster.org/pub/gluster/glusterfs/3.6/3.6.1/Debian/wheezy/pubkey.gpg | apt-key add -

echo deb http://download.gluster.org/pub/gluster/glusterfs/3.6/3.6.1/Debian/wheezy/apt wheezy main > /etc/apt/sources.list.d/gluster.list

apt-get update

apt-get install glusterfs-server

2015年1月9日 星期五

OpenVZ VPS 安裝dnsmasq

加入以下設定
vzctl set $VEID --capability setuid:on --save
vzctl set $VEID --capability net_admin:on --save
vzctl set $VEID --capability net_raw:on --save


dnsmasq 設定範例

port=   #取消 DNS 服務

# DHCP Setup
dhcp-leasefile=/var/lib/misc/dnsmasq.leases
interface=eth0
dhcp-range=192.168.1.101,192.168.1.120,2h
dhcp-option=1,255.255.255.0 #subnet mask
dhcp-option=28,192.168.1.255 #broadcast
dhcp-option=3,192.168.1.253 #default gateway
dhcp-option=6,192.168.1.10 #DNS

其他參考設定
停用 DHCP 供應介面 eth0 裝置
no-dhcp-interface=eth0

設定 DNS 緩存數量 (最大上限是 10000,預設值  150)  
cache-size=1000

設定 DNS 監聽地址
listen-address=127.0.0.1