Advertise Window大小 注册表键值位于:regedit->
HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesTcpipParameters,
if rebooted the virtual ip will go away.
to remove virtual ip : ifconfig eth0:0 down
net start mysql
net start mssqlserver
网卡配置 /etc/sysconfig/network-scripts/ifcfg-eth0 BOOTPROTO=static #设置网卡获得ip地址的方式,可能的选项static,dhcp或bootp 网关配置 /etc/sysconfig/network DNS 配置 /etc/resolv.conf 重启网络 service network restart
#
# DHCP Server Configuration file.
# see /usr/share/doc/dhcp*/dhcpd.conf.sample
# see 'man 5 dhcpd.conf'
#
option domain-name "vankom.com";
ddns-update-style none;
default-lease-time 600;
max-lease-time 7200;
subnet 192.168.254.0 netmask 255.255.255.0 {
range 192.168.254.201 192.168.254.210;
filename "linux-install/pxelinux.0";
server-name "192.168.254.9";
}
http://www.dnbcw.info/