Book
- Basic setup of a SOHO server
- SoHo - Software repositories
- SoHo - Alias of loopback interface
- SoHo - IPtables configuration example
- SoHo - Webmin
- SoHo - DNS
- SoHo - VMWare
- SoHo - Windows
- SoHo - OpenVPN
- SoHo - Remote Desktop
- Nameserver on Windows XP forwarding to public DNS with private zones
- SoHO - NTP
- SoHo - SSH
- SoHo - Ubuntu prerequisites
- How to strengthen SSH
- Fixing Nessus complaints
- Java installation on RHEL 4
- Installing vsFTPd on CentOS
- How to setup CA (certificate authority)
- Installation of VIM X11 and archivers on RHEL 4 x86_64
- SoHo - MS & Open-Office
- User management
- CommuniGate Pro
- Backup
- Issue tracking for small groups
- Jabber setup and configuration
- Monitoring & Statistics
- Printing in SOHO
- Faxes in SOHO
- T38 Modem
- PostScript fonts for faxes
- Installing Brother MFU drivers on Ubuntu
- Installing Hylafax client on RHEL4 and Fedora
- Installing Hylafax server on RHEL4
- Installing Hylafax server on Ubuntu
- Integrating Hylafax with CUPS
- Integrating Hylafax with CommuniGate
- Managing Hylafax from Ubuntu client
- Sending and receiving faxes over internet (links)
- How to test faxing
- Drivers for Brother MFUs
- Brand new idea about faxing
- External faxing resources
- Antivirus & Antispam
- External SOHO References
- Supplementary SOHO procedures
SoHO - NTP
in
Define servers for synchronization in /etc/ntp.conf:
server 0.rhel.pool.ntp.org server 1.rhel.pool.ntp.org server 2.rhel.pool.ntp.org server time.nist.gov server 127.127.1.0 # local clock fudge 127.127.1.0 stratum 10
$ ntpdate -q ntp.domain.com server x.x.x.x, stratum 16, offset 0.0035, delay 0.042 ntpdate[2]: no server suitable for synchronization foundAfter restart the NTP server reports a maximum stratum of 16. Then after a while, it sets its stratum to that of local clock plus one. That is, we can boost reported stratum by assigning, say 5 in the fudge statement above. After a long while, when synchronization is settled, the server will set its stratum to that of the best synchronization source plus one. Since we use time.nist.gov, the stratum will be 2, and clients should finally accept us.
Let in our internal network:
restrict 10.20.0.0 mask 255.255.0.0 nomodify notrap
Run on boot:
chkconfig ntpd on service ntpd restart
Check synchronization:
ntpq -p ntpq -c rv ntpdc -c sysstats
Set clients to synchronize to our server via /etc/ntp.conf:
server 172.16.162.57

Comments
Post new comment