違いは、原則としてルーターかスイッチかです。
そのため、正確な時間を設定します。
まず最初に、アクセス時にルーター上にインターフェイスを作成し、正確な時間を取得します。
RTR-001#conf t
RTR001(config)#interface Loopback100
RTR001(config)# description -=I=- NTP service -=I=-
RTR001(config)# ip address 10.10.10.100 255.255.255.255
RTR001(config)#^Z
RTR001#
実際、このループバックには完全に異なるネットワークからのアドレスがあり、OSPFでアナウンスされています
(RTR-002#sho ip ro | inc 57.100
O 10.10.57.100/32
[110/11] 10.10.57.1、02:02:25、FastEthernet0 / 1.822経由)
時間を受け取る外部サーバーを設定します
RTR-001#conf t
RTR001(config)#ntp update-calendar
RTR-001#conf t
RTR001(config)#ntp update-calendar
-NTPサーバーからカレンダーを更新します。
RTR001(config)#ntp server 192.73.48.1 prefer
RTR001(config)#ntp server 192.73.48.2
RTR001(config)#ntp server 192.73.48.6
RTR001(config)#ntp server 192.73.48.1 prefer
RTR001(config)#ntp server 192.73.48.2
RTR001(config)#ntp server 192.73.48.6
-NTPサーバーのアドレスを設定します。最初のサーバーが優先されます。
私たちはチェックします:
RTR001#sho clock
14:11:54.530 MSD Thu Oct 1 2009
RTR001#
正確な時刻はルーター上にあるようです:) NTPステータスを確認します。
RTR001#sho ntp status
Clock is synchronized, stratum 3, reference is 192.73.48.1
nominal freq is 250.0000 Hz, actual freq is 249.9948 Hz, precision is 2**24
reference time is CE6EFA48.2E139AA2 (13:52:08.179 MSD Thu Oct 1 2009)
clock offset is -0.0232 msec, root delay is 0.32 msec
root dispersion is 0.08 msec, peer dispersion is 0.01 msec
loopfilter state is 'CTRL' (Normal Controlled Loop), drift is 0.000020656 s/s
system poll interval is 1024, last update was 1199 sec ago.
RTR001#
ルーター/スイッチでタイムゾーンと夏時間を設定することをお勧めします。
clock timezone MSK 3
タイムゾーン
clock summer-time MSD recurring last Sun Mar 2:00 last Sun Oct 2:00
:00-夏時間
次に、ネットワークの残りのデバイスの時間を設定します。
スイッチに次の設計を浸透させます。
C2970(config)#ntp server 10.10.10.100
その後、ルーターから時間がかかり始めます。
C2970#sho ntp stat
Clock is synchronized, stratum 4, reference is 10.10.10.100
nominal freq is 119.2092 Hz, actual freq is 119.2072 Hz, precision is 2**18
reference time is CE6F0038.2117CCA0 (14:17:28.129 MSD Thu Oct 1 2009)
clock offset is -0.8434 msec, root delay is 329.33 msec
root dispersion is 93.77 msec, peer dispersion is 1.75 msec
C2970#
スイッチをタイムサーバーとして機能させるには、インターネット上でスイッチを解放するだけです。)そして、Vlanインターフェイスに切り替えます。
そして今、楽しい部分のために、ワークステーションに私たちの機器から時間がかかるようにします。 この目的のために、自動ログオンに関連付けられたグループ政治家のバッチファイルを使用します。
@echo
net time /setsntp
@echo : 10.10.10.100
w32tm /config /syncfromflags:manual /manualpeerlist:10.10.10.100
@echo
w32tm /config /update
@echo
w32tm /resync
net time /querysntp
pause
私は覚えていないが、著者にバッチファイルのテキストを取りました-敬意!!!
資料のより詳細な研究については、この記事を読むことをお勧めします。
この概要ツアーでは、NTP認証(ntp認証)の問題、ACLを介したNTPへのアクセス、ブロードキャストサービスのセットアップ、およびセキュリティの問題に対処しませんでした。 おもしろければ、コメントに書いてください-補足します。