配置所有设备的时区为GMT+08:00,调整SW1时间为实际时间,SW1配置为ntp server,其他设备用SW1 loopback1 ipv4地址作为ntp server地址, ntp client 请求报文时间间隔1分钟
时间: 2024-05-16 13:17:25 浏览: 186
RHEL7时间同步设置
5星 · 资源好评率100%
步骤如下:
1. 配置所有设备的时区为GMT+08:00:
```
conf t
clock timezone GMT+8 8
```
2. 调整SW1时间为实际时间,配置SW1为ntp server:
```
conf t
ntp master
```
3. 配置其他设备使用SW1的loopback1接口IP地址作为ntp server地址:
```
conf t
ntp server <SW1的loopback1接口IP地址>
```
4. 配置ntp client请求报文时间间隔为1分钟:
```
conf t
ntp update-calendar
ntp refresh-interval 1
```
注意:在配置ntp server和ntp client时,要确保网络连通,以便ntp client能够同步到ntp server的时间。
阅读全文