aboutsummaryrefslogtreecommitdiffstats
path: root/documentation
diff options
context:
space:
mode:
authorMatt Rude <[email protected]>2011-09-19 23:34:47 -0500
committerMatt Rude <[email protected]>2011-09-19 23:34:47 -0500
commit605c842ab4c58520ca98e40ad13c02fa824731fc (patch)
tree0f9edc8400fcf72097f42aa28a68e8614678f7c9 /documentation
parentce4f68566e1c0087c4da6e6c06fafe4170b2ec32 (diff)
downloadtime.mattrude.com-605c842ab4c58520ca98e40ad13c02fa824731fc.tar.gz
time.mattrude.com-605c842ab4c58520ca98e40ad13c02fa824731fc.tar.bz2
time.mattrude.com-605c842ab4c58520ca98e40ad13c02fa824731fc.zip
Adding missing files
Diffstat (limited to 'documentation')
-rw-r--r--documentation/images/SNSRCFG_320.exebin0 -> 441432 bytes
-rw-r--r--documentation/mac_osx_ntp_config.md22
-rw-r--r--documentation/windows7_sntp_config.md36
3 files changed, 58 insertions, 0 deletions
diff --git a/documentation/images/SNSRCFG_320.exe b/documentation/images/SNSRCFG_320.exe
new file mode 100644
index 0000000..34a4b96
--- /dev/null
+++ b/documentation/images/SNSRCFG_320.exe
Binary files differ
diff --git a/documentation/mac_osx_ntp_config.md b/documentation/mac_osx_ntp_config.md
new file mode 100644
index 0000000..12dd1fc
--- /dev/null
+++ b/documentation/mac_osx_ntp_config.md
@@ -0,0 +1,22 @@
+It.s been a while. Here is a simple guide in setting up an NTP Server in your Mac OS X. Although it does look trivial, it took me a while to figure it out (and find solutions out there). Steps 1 & 2 are important, as it does the trick.
+
+* Disable the synchronizing of the local clock to ntp. Uncheck .Set date & time automatically..
+* If you find NTP in the services offered in Server Admin, stop it also.
+* Open the Terminal. Create or edit /etc/ntp.conf and add the ntp servers from where you will synch.
+ server 0.asia.pool.ntp.org minpoll 12 maxpoll 17
+ server 1.asia.pool.ntp.org minpoll 12 maxpoll 17
+ server 2.asia.pool.ntp.org minpoll 12 maxpoll 17
+ server 3.asia.pool.ntp.org minpoll 12 maxpoll 17
+ server 0.jp.pool.ntp.org minpoll 12 maxpoll 17
+
+* Edit or check /etc/ntp-restrict.conf. Add the allowed ip address range to synch with your server.
+ restrict 10.0.0.0 mask 255.0.0.0 nomodify notrap
+ restrict 202.92.128.0 mask 255.255.224.0 nomodify notrap
+
+* Edit /etc/hostconfig.
+ TIMESYNC=-NO-
+ TIMESERV=-YES-
+
+* Reboot server.
+* Check if process is running: ps ax| grep ntp
+* Check if it is synching with external ntp servers: ntpq -p
diff --git a/documentation/windows7_sntp_config.md b/documentation/windows7_sntp_config.md
new file mode 100644
index 0000000..794a712
--- /dev/null
+++ b/documentation/windows7_sntp_config.md
@@ -0,0 +1,36 @@
+If you have an issue with your system clock losing time, you've probably had to go and re-sync your clock with the internet time servers. The problem is that there are just way too many clicks required to get to the right screen, so the command line is much simpler.
+
+Note that you can partially solve this issue by changing the time server you are using or increasing the intervals between time checks, but there are some instances where youâll just want to quickly sync the time manually.
+
+## Sync Clock the Slow GUI Way
+
+First you'll have to right-click on the clock and choose "Adjust Date/Time"
+
+![win7_TS-1](images/win7_TS-1.png)
+
+Then you select the Internet Time tab, and click the Change Settings button.
+
+![win7_TS-2](images/win7_TS-2.png)
+
+After the UAC prompt you can finally click the **Update now** button to tell the computer to resync.
+
+![win7_TS-3](images/win7_TS-3.png)
+
+That.s a lot of steps. but check out how simple it is from the command line.
+
+## Sync Clock from Command Line
+
+Simply open an administrative mode command prompt (right-click, Run as administrator), and then type in the following command:
+
+## w32tm /resync
+
+![win7_TS-4](images/win7_TS-4.png)
+
+And now your clock is sync.d. If you want proof, you could check the time settings panel again.
+
+![win7_TS-5](images/win7_TS-5.png)
+
+## References
+
+* <http://technet.microsoft.com/en-us/library/cc773263(WS.10).aspx>
+* <http://support.microsoft.com/kb/223184>