为了防止路由器的dhcp服务干扰实验,我们2台机器分别新加了1快网卡. vmnet4

dhcp安装

[root@ygy130 ~]# yum -y install dhcp

将配置文件放在/etc/dhcp下
[root@ygy130 ~]# cp /usr/share/doc/dhcp-4.1.1/dhcpd.conf.sample /etc/dhcp/dhcpd.conf
设置开机自启动
[root@ygy130 ~]# chkconfig dhcpd on

修改配置文件

[root@ygy130 ~]# vim /etc/dhcp/dhcpd.conf

subnet 192.168.2.0 netmask 255.255.255.0{                               网段
range 192.168.2.100 192.168.2.200;              范围
option domain-name-servers 114.114.114.114;          dns
option domain-name "ygy123.cn";                域名
option routers 192.168.2.1;                   网关
option broadcast-address 192.168.2.255;            广播
default-lease-time 600;                    租期
max-lease-time 7200;                    最长租期
host ygy130{                        指定服务器主机
hardware ethernet 00:0C:29:59:B1:B2;            绑定客户机地址
fixed-address 192.168.2.110;                  客户机的ip
}

}

启动

[root@ygy130 ~]# service dhcpd restart
Shutting down dhcpd: [ OK ]
Starting dhcpd: [ OK ]

要关闭防火墙,否则其他机器不能获得服务。
注意,这里多网卡,要设置路由才能上网。
[root@ygy130 ~]# route add default gw 192.168.1.1 eth0
[root@ygy130 ~]# route add default gw 192.168.8.1 eth1
[root@yu131 ~]# route add -net 192.168.8.0/24 gw 192.168.1.1 eth0
这样就能上网了。

重启失效。

时间同步:ntpdate time.windows.com

yum install ntpdate -y

[root@ygy130 ~]# date +" %F"
2016-09-25

修改时间

[root@ygy130 ~]# date -s "2015-3-6 21:13"
Fri Mar 6 21:13:00 CST 2015
[root@ygy130 ~]# date
Fri Mar 6 21:13:03 CST 2015

[root@ygy130 ~]# hwclock -r
Sun 25 Sep 2016 11:59:48 PM CST -0.766794 seconds
[root@ygy130 ~]# hwclock -w
[root@ygy130 ~]# hwclock -r
Fri 06 Mar 2015 09:14:06 PM CST -0.329304 seconds

[root@yu131 ~]# ntpdate time.windows.com
26 Sep 00:01:30 ntpdate[12406]: adjust time server 40.118.103.7 offset 0.040445 sec
[root@yu131 ~]# date
Mon Sep 26 00:01:35 CST 2016

dhcp 和ntpdate时间同步的更多相关文章

  1. Linux下ntpdate时间同步

    Linux下ntpdate时间同步 Ntp服务器配置(暂略,以后整理) 时间同步方法 同步命令               # ntpdate ntp服务器域名或IP           例:# nt ...

  2. Linux 时间同步 03 ntpdate时间同步

    Linux 时间同步 03 ntpdate时间同步 目录 Linux 时间同步 03 ntpdate时间同步 安装ntpdate 修改/etc/sysconfig/ntpdate 使用ntpdate手 ...

  3. ntpdate时间同步

    为什么需要网络同步时间: Linux服务器运行久时,系统时间就会存在一定的误差,一般情况下可以使用date命令进行时间设置,但在做数据库集群分片等操作时对多台机器的时间差是有要求的,此时就需要使用nt ...

  4. yum tenxun ntpdate 时间同步

    centos7 wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.cloud.tencent.com/repo/centos7_base ...

  5. 时间同步之pxe,cobbler,dhcp

    ntpdate 时间同步 同步方法 ntpdate ntp服务器IP 例: ntpdate 192.168.37.11 自动运行同步时间脚本 crontab -e * */1 * * * /usr/s ...

  6. NTP服务及时间同步(CentOS6.x)

    博客分类: linux   今有一小型项目,完全自主弄,原来以为很简单的NTP服务,我给折腾了2个多小时才整撑头(以前都是运维搞,没太注意,所以这技术的东西,在简单都需要亲尝啊),这里记录为以后别再浪 ...

  7. linux配置时间同步

    目标环境,5台linux centos 6.3, 一台作为NTPD服务与外部公共NTP服务同步时间,同时作为内网的NTPD服务器,其他机器与这台服务做时间同步.  服务器IP 角色   说明 同步方式 ...

  8. CentOS7 设置集群时间同步

    1. 安装ntp时间同步工具 yum -y install ntp ntpdate #安装ntpdate时间同步工具 ntpdate cn.pool.ntp.org #设置时间同步 hwclock - ...

  9. 内网环境NTP服务及时间同步(CentOS6.x)配置和部署

    目标环境,5台linux centos 6.3, 一台作为NTPD服务与外部公共NTP服务同步时间,同时作为内网的NTPD服务器,其他机器与这台服务做时间同步.  服务器IP 角色   说明 同步方式 ...

随机推荐

  1. Hadoop(25)-高可用集群配置,HDFS-HA和YARN-HA

    一. HA概述 1. 所谓HA(High Available),即高可用(7*24小时不中断服务). 2. 实现高可用最关键的策略是消除单点故障.HA严格来说应该分成各个组件的HA机制:HDFS的HA ...

  2. 转译符,re模块,random模块

    一, 转译符 1.python 中的转译符 正则表达式中的内容在Python中就是字符串 ' \n ' : \ 转移符赋予了这个n一个特殊意义,表示一个换行符 ' \ \ n' :  \ \  表示取 ...

  3. POJ1985 树的直径(BFS

    Cow Marathon   Description After hearing about the epidemic of obesity in the USA, Farmer John wants ...

  4. Python3 函数参数

    # # 常规参数 # def jiafa(a,b): # print(a+b) # # jiafa(5,6) # # # def xinxi(name,location,sex='male'): # ...

  5. 2018 ccpc final I. Cockroaches

    I. Cockroaches time limit per test6. s memory limit per test256 MB inputstandard input outputstandar ...

  6. php复制目录很浪

    一不小心搞出个超级深层次文件夹 主要是因为懒,在网上随便找了段复制文件夹的代码贴上了,结果是很恐怖,一个文件夹复制到他自身里面的时候,将会产生循环嵌套文件夹,后果是,windows因为文件名太长而无法 ...

  7. 关于springboot 打包问题 jar包和 war包

    起因:项目开发完成   需要打包部署了  发现自己不会打包 那么开始网上学习打包? 那么怎么来打包那? 我们以前没有采用springboot 时候我们都是直接将项目打成war包形式  然后放到tomc ...

  8. python基础——重访类型分类

    python基础--重访类型分类 对象根据分类来共享操作:例如,字符串.列表和元组都共享诸如合并.长度和索引等序列操作. 只有可变对象(列表.字典和集合)可以原处修改:我们不能原处修改数字,字符串.元 ...

  9. 【jQuery】 资料

    [jQuery] 资料 1. 选择器 http://www.w3school.com.cn/jquery/jquery_ref_selectors.asp 2. 事件 http://www.w3sch ...

  10. 步骤1:JMeter 录制脚本接口测试

    JMeter 常用测试方法简介 1.下载安装 http://jmeter.apache.org/download_jmeter.cgi 安装JDK,配置环境变量JAVA_HOME. 系统要求:JMet ...