需要测试。- @echo off
- echo 服务器端,运行。
-
- ;Windows Time
- sc config w32time start= auto
- net start w32time
- cls
-
- reg add HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\TimeProviders\NtpServer /v Enabled /t REG_DWORD /d 1 /f
- reg add HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\Config /v AnnounceFlags /t REG_DWORD /d 5 /f
- reg add HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time /v Start /t REG_DWORD /d 2 /f
- reg add HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\Parameters /v Type /t REG_SZ /d NTP /f
- cls
-
- echo 修改Windows防火墙设置,允许123端口的UDP连接。开启NTP端口 NTP默认使用的端口号是UDP123
- cls
- ipseccmd -w REG -p "Nable ports" -r "Nable UDP/123" -f *+0:123:UDP -n PASS -x
-
-
- ping 127.0.0.1 -n 5 >nul 2>nul
-
-
- echo 端口是某个程序或者某个服务开的,可以关掉对应的程序或者服务,这样就可以关掉相应的端口
- cls
- net stop w32time && net start w32time
- cls
-
- echo.
- netstat -an |find /i "LISTENING"
- echo.&echo 请按任意键退出...
- 1pause>nul
- cls
-
- netstat -an
- netstat -a -n
-
- ping 127.0.0.1 -n 6 >nul 2>nul
-
- exit
复制代码
|