天狼晓月 发表于 2013-9-20 14:46:56

openWRT时间同步的最简方法

SSH中,三行命令:
opkg update
opkg install ntpclient
ntpclient -s -c 0 -h ntp.sjtu.edu.cn

最后把这个 放到 rc.local 里, 每次启动 都会更细系统时间(或在web界面加入开机后运行,或定时执行计划任务)
ntpclient -s -c 0 -h ntp.sjtu.edu.cn

web界面中加入
开始:——管理界面——系统——开机启动
ntpclient -s -c 0 -h 202.120.2.101

每次开机执行一次。


开始:——管理界面——服务——计划任务
0 */8 * * * ntpclient -s -c 0 -h 202.120.2.101

8小时执行一次。
页: [1]
查看完整版本: openWRT时间同步的最简方法