Why Is My NTP Server Costing Me $500/Year [1]? Part 1
Our recent monthly Amazon AWS bills were much higher than normal—$40 dollars higher than normal. What happened?
We investigated and discovered our public NTP server was heavily loaded. Over a typical 45-minute period, our instance provided time service to 248,777 unique clients (possibly more, given that a firewall may "mask" several clients), with an aggregate outbound data of 247,581,892 bytes (247 MB). Over the course of a month this traffic ballooned to 332GB outbound traffic, which cost ~$40.
This blog post discusses the techniques we used to investigate the problem. A future blog post (Part 2) will discuss how we fixed the problem.
What had happened? Our account has only one instance, and it's a t1.micro instance, Amazon's smallest, least expensive instance. Had we deployed other instances and forgotten to shut them down? Had someone broken into our AWS account and used it to mine bitcoins? Had our instance been used in an NTP amplification attack? We scrutinized our Amazon AWS bill:
[caption id="attachment_29145" align="alignnone" width="300"] This month's Amazon AWS Bill. The bandwidth charges are surprisingly large given that the bulk of the traffic is DNS and NTP[/caption]
We determined the following:
- It's unlikely that someone had broken into our Amazon AWS account—there was only one instance spun up during the month, and it was our t1.micro.
- The unexpected charges were in one area only—bandwidth.
- The bandwidth was symmetrical (i.e. the total inbound bandwidth was within 5% of the total outbound bandwidth). This would indicate that our instance was not used in a NTP amplification attack (an NTP amplification attack would be indicated by lopsided bandwidth usage: outbound bandwidth would have been much higher than inbound)
We needed more data. We turned to Amazon's Usage Reports.
AWS Console → My Account → Reports → AWS Usage Report → Amazon Elastic Compute Cloud
We ran a report requesting the following information:
- Usage Types: DataTransfer-Out-Bytes
- Operation: All Operations
- Time Period: Custom date range
- from: Jun 1 2013
- to: Jun 1 2014
- Report Granularity: Days
- click Download report (CSV)
We downloaded the report and imported it into a spreadsheet (Apple's Numbers). We noticed that the traffic had a thousand-fold increase on March 30, 2014: it climbed from 4.2MB outbound to 8.9GB outbound.
We graphed the spreadsheet to get a closer look at the data:
[caption id="attachment_29136" align="alignnone" width="300"] Amazon AWS Outbound Bandwidth Usage, by Day[/caption]
We used a logarithmic scale when creating the graph. A logarithmic scale has two advantages over a linear scale:
- it smoothes bumps
- it does a better job of displaying data that spans multiple orders of magnitude
We noticed the following:
- Before 3/29/2014, daily outbound bandwidth was fairly consistent at 2-6 MB / day
- After 3/30/2014, daily outbound bandwidth was fairly consistent at 8-12 GB / day
What happened on 3/30?
We use git to track changes on our instance's /etc/ directory; we use git log to see what changes happened on 3/30:
$ git log --graph --pretty=format:'%h %ci %s'
* 4346463 2014-06-11 14:38:57 +0000 apt-get update; apt-get upgrade
* 0edb10d 2014-03-29 18:41:36 +0000 ntp installed
* f8302e2 2014-03-29 17:19:31 +0000 pre-ntpd checkin
* d172264 2013-05-02 05:26:25 +0000 Initial Checkin
We had enabled NTP on 3/29.
That was also the day when we registered our server with the NTP Pool, a volunteer effort where users can make their NTP servers available to the public for time services. The project has been so successful that it's the default "time server" for most of the major Linux distributions.
It takes about a day for the NTP Pool to satisfy itself that your newly-added server is functional and to make it available to the public—that is likely why we didn't see any traffic until a day later, 3/30.
Could NTP be the culprit? Had our good friend NTP stabbed us in the back? It didn't seem possible. Furthermore, the documentation on the www.pool.ntp.org website states that typical traffic is "...roughly equivalent to 10-15Kbit/sec (sic) [2] with spikes of 50-120Kbit/sec".
But we're seeing 740-1000kbit/sec [3]: seventy times more than what we should be seeing. And note that we're being generous—we assume that they are referring to outbound traffic only when they suggest it should be 10-15kbit/sec; if they meant inbound and outbound combined, then our NTP traffic is one hundred forty times more than what we should be seeing.
We need to examine packets. We decide to do a packet trace on our instance for a 45-minute period:
$ sudo time -f "%e seconds" tcpdump -w /tmp/aws.pcap
tcpdump: listening on eth0, link-type EN10MB (Ethernet), capture size 65535 bytes
^C5617555 packets captured
5626229 packets received by filter
8665 packets dropped by kernel
2693.13 seconds
We don't concern ourselves with the 8665 packets that were dropped by the kernel—they represent less than 0.15% of the overall traffic, and are thus inconsequential.
We copy the file (/tmp/aws.pcap) to our local workstation (doing traffic analysis on a t1.micro instance is painfully slow).
We need to make sure our packet trace is representative of typical traffic to our server, at least in terms of throughput (kbits/sec). In other words, our packet trace should have an outbound throughput on the order of 740-1000kbit/sec.
We have a dilemma: tcpdump's units of measurement are packets, not bytes. We will address this in two steps:
- We will run
tcpdump
to create a .pcap file that contains only the outbound packets. - We will use
pcap_len
[4] to determine the total aggregate size of those packets in bytes.
Once we have the total number of bytes, we can determine the throughput.
$ tcpdump -r ~/Downloads/aws.pcap -w ~/Downloads/aws-outbound.pcap src host 10.206.10.174
$ ./pcap_len ~/Downloads/aws-outbound.pcap
linktype EN10MB
total len = 248453677, total packets = 2756609
We have 248453677 bytes / 2693 seconds, which works out to [5] 738 kbits / sec, which is in line with our typical outbound traffic (740-1000kbits/sec)
We want to confirm that NTP is the bulk of our traffic. We want to make sure that NTP is the bad guy before we point fingers. Once again, we use tcpdump
in conjunction with pcap_len
to determine how many bytes of our outbound traffic is NTP:
$ tcpdump -r ~/Downloads/aws-outbound.pcap -w ~/Downloads/aws-outbound-ntp-only.pcap src port 123
$ ./pcap_len ~/Downloads/aws-outbound-ntp-only.pcap
linktype EN10MB
total len = 247581892, total packets = 2750878
We don't care how many seconds passed; we merely care how many bytes we sent outbound (248453677) and how many of them were NTP (247581892). We determine that NTP accounts for 99.6% [6] of our outbound traffic.
NTP is the bad guy.
We want to see if we have an excessive number of NTP clients vis-a-vis other NTP pool members. Fortunately, we have another machine (our home network's FreeBSD firewall, also an NTP server and connected to the Comcast network) that's also in the NTP pool. We'll pull statistics from there:
$ sudo time tcpdump -i em3 -w /tmp/home.pcap port 123
tcpdump: listening on em3, link-type EN10MB (Ethernet), capture size 65535 bytes
^C381383 packets captured
468696 packets received by filter
0 packets dropped by kernel
2209.59 real 0.25 user 0.19 sys
We are only concerned with outbound NTP traffic. tcpdump
and pcap_len
to the rescue:
$ tcpdump -r ~/Downloads/home.pcap -w ~/Downloads/home-outbound-ntp-only.pcap src port 123 src host 24.23.190.188
$ pcap_len ~/Downloads/home-outbound-ntp-only.pcap
linktype EN10MB
total len = 17161678, total packets = 190685
Let's determine our home NTP outbound traffic: 17161678 bytes / 2209 secs = 7769 bytes / sec = 62 kbits /sec.
Let's determine our AWS NTP outbound traffic: 247581892 bytes / 2693 secs = 91935 bytes / sec = 735 kbits /sec
Our AWS server is dishing out 11.8 times the NTP traffic that our home server is. But that's not quite the metric we want; the metric we want is "how much bandwidth per unique client (unique IP address)"
We determine the number of unique NTP clients that each host (AWS and home) have:
tcpdump -nr ~/Downloads/aws-outbound-ntp-only.pcap | awk ' { print $5 } ' | sed 's=\.[0-9]*:==' | sort | uniq | wc -l
248777
tcpdump -nr ~/Downloads/home-outbound-ntp-only.pcap | awk ' { print $5 } ' | sed 's=\.[0-9]*:==' | sort | uniq | wc -l
34908
Our AWS server is handling 7.1 times the number of unique NTP clients that our home server is handling. This is troubling. It means that certain AWS NTP clients are using up more bandwidth than they should. Furthermore, we need to remember that we ran tcpdump longer (2693.13 seconds) on our AWS server than we did (2209.59 seconds) on our home server, giving AWS more time to collect unique clients. In other words, the ratio is probably worse (if we extrapolate based on number of seconds, the AWS server is spending twice the bandwidth for each client than the home server).
We suspect that broken/poorly configured clients may account for much of the traffic. The grand prize belongs to an IP address located in Puerto Rico (162.220.96.14) managed to query our AWS server 18,287 times over the course of 2693 seconds, which works out to 6.7 queries / second.
The runner-up was also located in Puerto Rico (70.45.91.171), with 12,996 queries at a rate of 4.8 queries / second. Which begs the question: what the heck is going on in Puerto Rico?
Let's take a brief moment to discuss how we generated these numbers: we lashed together a series of pipes to list each unique IP address and the number of packets our instance sent to that address, converted the output into CSV (comma-separated values), and then imported the data into a spreadsheet for visual examination.
tcpdump -nr ~/Downloads/aws-outbound-ntp-only.pcap | awk ' { print $5 } ' | sed 's=\.[0-9]*:==' | sort | uniq -c | sort -n > /tmp/ntp_clients.txt
awk '{print $1}' < /tmp/ntp_clients.txt | uniq -c | sed 's=^ *==; s= =,=' > /tmp/clients.csv
And let's discuss the graph below. It shows the correlation between the number of unique clients, and the number of queries each one makes. We want to see, for example, if we block any client that makes more than 289 queries in a 45-minute period, how much money would we save? (In this example, we would save $48 over the course of the year)
[caption id="attachment_29153" align="alignnone" width="300"] This chart is tricky: let's use an example. The 25% on the Y-axis crosses 23 on the X-axis, which means, "25% of the NTP traffic is to machines which have made 23 or fewer queries"[/caption]
Now we have some tools to make decisions. As with most engineering decisions, economics has a powerful say:
If we block IP addresses that query time more than (over the course of 45 minutes)... | ...then we cut our bandwidth... | ...and spend this much annually |
---|---|---|
0 | 100% | $0 |
3 | 90% | $48 |
23 | 75% | $120 |
51 | 50% | $240 |
79 | 25% | $360 |
289 | 10% | $432 |
864 | 5% | $456 |
18287 | 0% | $480 |
But we are uncomfortable with this heavy-handed approach of blocking IPs based on nothing more than the number of queries. Our assumption that a large number of queries is indicative of a faulty NTP client is misguided: For example, a corporate firewall would appear as a faulty client, but merely because it's passing along hundreds of queries from many internal workstations.
We'll explore finer-grained approaches to determining faulty clients in the next blog post. Stay tuned.
1 The yearly cost is slightly less than $500, closer to $480; however, we decided to exercise poetic license for a catchy headline. Yes, in the finest tabloid tradition, we sacrificed accuracy on the altar of publicity.
2 The SI prefix "k" (kilo) should be lowercase. Just sayin'.
3 Math is as follows:
8,000,000,000 bytes / day
× 1 day / 24 hours
× 1 hour / 3600 seconds
× 8 bits / 1 byte
× 1 kbit / 1000 bits
= 740.740740740741 kbit / sec
4 pcap_len is a program of dubious provenance that was uploaded to a tcpdump mailing list in 2004. Thanks Alex Medvedev wherever you are.
But we are not country bumpkins who trust anyone who happens to post code to a mailing list. We want to confirm that the pcap_len
program works correctly. We need to know two things:
- What is the size of an NTP packet?
- What is the overhead of the pcap file format?
The size of the NTP packet is straightforward, 90 bytes:
- 14 bytes Ethernet II MAC header
- 20 bytes IPv4 header
- 8 bytes UDP header
- 48 bytes NTP data
And the pcap file format overhead per packet? 16 bytes.
- Size of the AWS outbound NTP pcap file: 291595964
- Size of the AWS outbound NTP packets according to
pcap_len
: 247581892 - Ratio of NTP packet + pcap overhead to NTP packet: (90 + 16)/90 = 1.17777
247581892 * 1.17777 = 291596450 (within 486 bytes of 291595964, within 0.0001%, which is good enough for us. The remaining bytes are most likely due to pcap file format overhead (excluding the per-packet pcap overhead)).
Yes, pcap_len
passes our cross-check.
5 Math is as follows:
248453677 bytes / 2693 seconds
= 92259 bytes / sec
× 8 bits / 1 byte
× 1 kbit / 1000 bits
= 738 kbits /sec
6 Math is as follows:
( 247581892 / 248453677 ) × 100 = 99.6%
In the previous blog post, we concluded that providing an Amazon AWS-based NTP server that was a member of the NTP Pool Project was incurring ~$500/year in bandwidth charges.
In this blog post we examine the characteristics of NTP clients (mostly virtualized). We are particularly interested in the NTP polling interval, the frequency with which the NTP client polls its upstream server. The frequency with which our server is polled correlates directly with our costs (our $500 in Amazon AWS bandwidth corresponds to 46 billion NTP polls [1] ). Determining which clients poll excessively may provide us a tool to reduce the costs of maintaining our NTP server.
This blog posts describes the polling interval of several clients running under several hypervisors, and one client running on bare metal (OS X). This post also describes our methodology in gathering those numbers.
The polling intervals of ntpd
vary from 64 seconds (the minimum) to 1024 seconds (the maximum)—as much as sixteenfold (note that these values can be overridden in the configuration file, but for purposes of our research we are focusing solely on the default values).
We discover that clients running on certain hypervisors correlate strongly in the amount of polling (e.g. the VirtualBox NTP clients frequently poll at the default minimum poll interval, 64 seconds).
[caption id="attachment_29440" align="alignnone" width="300"] NTP Polling Intervals over a 3-hour period. Note the heavy cluster of dots around 64 seconds—the minimum polling interval[/caption]
[caption id="attachment_29441" align="alignnone" width="300"] A close-up of the 64-second polling interval ("minpoll"). Notice the dots are mostly VirtualBox with a sprinkling of KVM. NTP clients perform poorly under those hypervisors.[/caption]
By examining the chart (the chart and the underlying data can be viewed on Google Docs), we can see the following:
- The guest VMs running under VirtualBox perform the worst (with one exception: Windows). Note that their polling intervals are clustered around the 64-second mark—the minimum allowed polling interval.
- The Windows VM appears to query for time but once a day. It doesn't appear to be running
ntpd
; rather, it appears to set the time via the NTP protocol with a proprietary Microsoft client. - The OS X host only queried its NTP server once during a 3-hour period. Since this value (10800 seconds) is more than the default
maxpoll
value (1024 seconds), we suspect that OS X uses a proprietary daemon and notntpd
. - The guest VM running under ESXi performs quite well; although its datapoint is obscured in the chart, if one were to browse the underlying data, one would see that its datapoints are clustered around
maxpoll
, i.e. 1024 seconds. - The guest VM running under Xen (AWS) also performs quite well; its datapoints are also clustered around
maxpoll
. - The guest VM running under KVM performs better than the VirtualBox VMs, which is admittedly damning with faint praise. Their polling intervals tend to cluster around 128 seconds, with smaller clusters at 64 and 256 seconds.
Guest Operating System | Hypervisor | ntpd version | Average polling interval (higher is better) |
---|---|---|---|
Ubuntu 14.04 64-bit | VirtualBox 4.3.12 r93733 on OS X 10.9.4 | 4.2.6p5 | 126 |
FreeBSD 10.0 64-bit | VirtualBox 4.3.12 r93733 on OS X 10.9.4 | 4.2.4p8 | 62 |
Windows 7 Pro 64-bit | VirtualBox 4.3.12 r93733 on OS X 10.9.4 | N/A | N/A [2] |
OS X 10.9.4 | N/A | 16614 | |
Ubuntu 13.04 64-bit | Xen (AWS), t1.micro | 4.2.6p5 | 1056 |
FreeBSD 9.2 64-bit | KVM (Hetzner), VQ7 | 4.2.4p8 | 146 |
Ubuntu 14.04.1 64-bit | KVM (Hetzner), VQ7 | 4.2.4p8 | 146 |
Ubuntu 12.04 64-bit | ESXi 5.5 | 4.2.6p3 | 1048 |
The remainder of this blog posts discusses the methodology we used to collect and present the data.
We decide to characterize the NTP traffic of several different operating systems:
- Windows 7 64-bit
- OS X 10.9.3
- Ubuntu 64-bit (14.04, 13.04, and 12.04)
- Debian 32-bit
- FreeBSD [3] 64-bit (10.0 and 9.2)
We decide to test the following Hypervisors:
- VirtualBox 4.3.12 r93733
- KVM (Hetzner)
- Xen (Amazon AWS)
- ESXi 5.5
We're ignoring embedded systems, a fairly broad category which covers things as modest as a home WiFi Access Point to as complex as a high-end Juniper router.
There are two reasons we are ignoring those systems.
- We don't have the resources to test them (we don't have the time or the money to purchase dozens of home gateways, configure them, and measure their NTP behavior, let alone the more-expensive higher-end equipment)
- The operating system of many embedded systems have roots in the Open Source community (e.g. dd-wrt is linux-based, Juniper's JunOS is FreeBSD-based). There's reason to believe that the NTP client of those systems would behave the same as the systems upon which they are based.
We wish we had the resources to characterize embedded systems—sometimes they are troublemakers:
- The operating system of embedded systems that do not have roots in the Open Source community have a poor track record of providing good NTP clients. Netgear, SMC, and D-Link, to mention a few, have had their missteps.
Windows and Apple clients don't matter. Why?
- They are not our NTP server's clients. Both Microsoft and Apple have made NTP servers available (time.windows.com and time.apple.com, respectively) and have made them the default NTP server for their operating system.
- They rarely query for time: OS X polls every few hours, and Windows 7's polling was so infrequent that we did measure a single query over the course of 3 days.
We suspect that fewer than 1% of our NTP clients are either Windows or OS X (but we have no data to confirm that).
Regardless of its usefulness, we're characterizing the behavior of their clients.
The ESXi, Xen (AWS), and KVM (Hetzner) clients have already been set up (not for characterizing NTP, but we're temporarily borrowing them to perform our measurements); however, the VirtualBox clients (specifically the Ubuntu and FreeBSD guest VMs) need to be set up.
We choose one machine of each of the four primary Operating Systems (OS X, Windows, Linux, *BSD). We define hostnames, IP addresses, and, in the case of FreeBSD and Linux, ethernet MAC addresses (we use locally-administered MAC addresses [4] ). Strictly speaking, creating hostnames, defining MAC addresses, creating DHCP entries, is not necessary. We put in the effort because we prefer structure:
- hostname↔IP address mappings are centralized in DNS (which is technically a distributed, not centralized, system, but we're not here to quibble)
- IP address↔MAC address mappings are centralized in one DHCP configuration file rather than being balkanized in various Vagrantfiles.
Here are the Four Hosts of the Apocalypse [5] (with apologies to St. John the Evangelist)
Operating System | Fully-Qualified Domain Name | IP Address | MAC Address |
---|---|---|---|
OS X 10.9.3 | tara.nono.com | 10.9.9.30 | 00:3e:e1:c2:0e:1a |
Windows 7 Pro 64-bit | w7.nono.com | 10.9.9.100 | 08:00:27:ea:2e:43 |
Ubuntu 14.04 64-bit | vm-ubuntu.nono.com | 10.9.9.101 | 02:00:11:22:33:44 |
FreeBSD 10.0 64-bit | vm-fbsd.nono.com | 10.9.9.102 | 02:00:11:22:33:55 |
We use Vagrant (a tool that automates the creation and configuration of VMs) to create our VMs. We add the Vagrant "boxes" (VM templates) and create & initialize the necessary directories:
vagrant box add ubuntu/trusty64
vagrant box add chef/freebsd-10.0
cd ~/workspace
mkdir vagrant_vms
cd vagrant_vms
for DIR in ubuntu_14.04 fbsd_10.0; do
mkdir $DIR
pushd $DIR
vagrant init
popd
done
Now let's configure the Ubuntu VM. We have two goals:
- We want the Ubuntu VM to have an IP address that is distinct from the host machine's. This will enable us to distinguish the Ubuntu VM's NTP traffic from the host machine's (the host machine, by the way, is an Apple Mac Pro running OS X 10.9.3).
- We want the Ubuntu VM to run NTP
The former is accomplished by modifying the config.vm.network
setting in the Vagrantfile
to use a bridged interface (in addition to Vagrant's default use of a NAT interface); the latter is accomplished by creating a shell script that installs and runs NTP and modifying the Vagrantfile
to run said script.
cd ubuntu_14.04/
vim Vagrantfile
config.vm.box = 'ubuntu/trusty64'
config.vm.network :public_network, bridge: 'en0: Ethernet 1', mac: '020011223344', use_dhcp_assigned_default_route: true
config.vm.provision :shell, path: 'ntp.sh'
cat > ntp.sh <<EOF
#!/usr/bin/env bash
apt-get install -y ntp
EOF
vagrant up
Now that we have set up an Ubuntu 14.04 as a client, let's turn our attention to FreeBSD 10.0.
cd ../fbsd_10.0
vim Vagrantfile
config.vm.box = 'chef/freebsd-10.0'
# Use NFS as a shared folder
config.vm.network 'private_network', ip: '10.0.1.10'
config.vm.network :public_network, bridge: 'en0: Ethernet 1', mac: '020011223355', use_dhcp_assigned_default_route: true
config.vm.synced_folder ".", "/vagrant", :nfs => true, id: "vagrant-root"
config.vm.provision :shell, path: 'gateway_and_ntp.sh'
cat > gateway_and_ntp.sh <<EOF
#!/usr/bin/env bash
route delete default 10.0.2.2
route add default 10.9.9.1
grep ntpd_enable /etc/rc.conf || echo 'ntpd_enable="YES"' >> /etc/rc.conf
/etc/rc.d/ntpd start
EOF
vagrant up
The FreeBSD Vagrantfile is slightly different [6] than the Ubuntu Vagrantfile.
We enable packet tracing on the upstream firewall (in the case of the VirtualBox guests or the bare-iron OS X host) or on the VM itself (in the case of our AWS/Xen, Hetzner/KVM, and ESXi guests).
Here are the commands we used:
# on our internal firewall
sudo tcpdump -ni em0 -w /tmp/ntp_vbox.pcap -W 1 -G 10800 port ntp
# on our AWS t1.micro instance, traffic to upstream servers only
sudo tcpdump -w /tmp/ntp_xen_linux.pcap -W 1 -G 10800 port ntp and \( host 216.66.0.142 or host 50.97.210.169 or host 72.14.183.239 or host 108.166.189.70 \)
# on our Hetzner FreeBSD instance, traffic to upstream servers only
sudo tcpdump -i re0 -w /tmp/ntp_kvm_fbsd.pcap -W 1 -G 10800 port ntp and \( host 2a01:4f8:141:282::5:3 or host 2a01:4f8:201:4101::5 or host 78.46.60.42 or host 129.70.132.32 \)
# our ESXi 5.5 instance
sudo tcpdump -w /tmp/ntp_esxi_ubuntu.pcap -W 1 -G 10800 port ntp and host 91.189.94.4
# on our bare-iron Raspberry Pi ubuntu (actually raspbian)
sudo tcpdump -w /tmp/ntp_raspbian.pcap -W 1 -G 10800 port ntp
# on our Hetzner VQ7
sudo tcpdump -w /tmp/ntp_kvm_ubuntu.pcap -W 1 -G 10800 port ntp
Notes
- we passed the
-W 1 -G 10800
totcpdump
; this is to enable packet capture for 10800 seconds (i.e. 3 hours) and then stop. This will allow us to capture the same duration of traffic from our machines, which makes certain comparisons easier (e.g. the number of times upstream servers were polled over the course of three hours). - we used the
-w
flag (e.g.-w /tmp/ntp_vbox.pcap
) to save the output to a file. This enables us to make several passes at the capture data. - We filtered for ntp traffic (
port ntp
) - for machines that were NTP servers as well as clients, we restricted traffic capture to the machines that were its upstream server(s) (e.g. the ESXi's Ubuntu VM's upstream server is 91.189.94.4, so we appended
and host 91.189.94.4
to the filter)
We need to convert our output into .csv (comma-separated values) files to enable us to import them into Google Docs.
We determine the upstream NTP servers using ntpq
:
vagrant@vagrant-ubuntu-trusty-64:~$ ntpq -pn
remote refid st t when poll reach delay offset jitter
==============================================================================
+74.120.8.2 128.4.1.1 2 u 4 64 377 52.586 -34.323 2.141
-50.7.64.4 71.40.128.146 2 u 63 64 375 84.136 -28.303 3.513
-2001:19f0:1590: 128.4.1.1 2 u 56 64 377 91.651 -24.310 2.218
*4.53.160.75 204.9.54.119 2 u 35 64 377 59.146 -32.741 3.297
+91.189.94.4 193.79.237.14 2 u 2 64 377 147.590 -32.185 1.860
Next we create a .csv file to be imported into Google Docs for additional manipulation:
for NTP_SERVER in \
74.120.8.2 \
50.7.64.4 \
2001:19f0:1590:5123:1057:a11:da7a:1 \
4.53.160.75 \
91.189.94.4
do
tcpdump -tt -nr ~/Downloads/ntp_vbox.pcap src host $NTP_SERVER |
awk 'BEGIN {prev = 0 }; { printf "%d\n", $1 -prev; prev = $1 }' |
tail +2 | sort | uniq -c |
sort -k 2 |
awk "BEGIN { print \"polling interval (seconds), VB/Ubu/$NTP_SERVER\" }
{ printf \"%d,%d\n\", \$2, \$1 }" > /tmp/vb-ubu-$NTP_SERVER.csv
done
Notes regarding the shell script above:
tcpdump
's-tt
flag is to generate relative timestamps, so that we may easily calculate the amount of time between each responsetcpdump
'ssrc host
parameter is to restrict the packets to NTP responses and not NTP queries (it's simpler if we pay attention to half the conversation)- the first
awk
command prints the interval (in seconds) between each NTP response - the
tail
command strips the very first response whose time interval is pathological (i.e. whose time interval is the number of seconds since the Epoch, e.g. 1404857430) - the
sort
anduniq
tells us the number of times a response was made for a given interval (e.g. "384 NTP responses had a 64-second polling interval") - the second
sort
command sorts the query by seconds, lexically (not numerically). The reason we sort lexically is because thejoin
command, which we will use in the next step, requires lexical collation, not numerical. (in other words, "1 < 120 < 16 < 2", not "1 < 2 < 16 < 120") - the second
awk
command puts the data in a format that's friendly for Google spreadsheets
We use ntp -pn
to determine the upstream NTP servers.
Then we create .csv files:
for NTP_SERVER in \
72.20.40.62 \
69.167.160.102 \
108.166.189.70
do
tcpdump -tt -nr ~/Downloads/ntp_vbox.pcap src host $NTP_SERVER |
awk 'BEGIN {prev = 0 }; { printf "%d\n", $1 -prev; prev = $1 }' |
tail +2 | sort | uniq -c |
awk "BEGIN { print \"polling interval (seconds), VB/FB/$NTP_SERVER\" }
{ printf \"%d,%d\n\", \$2, \$1 }" |
sort > /tmp/vb-fb-$NTP_SERVER.csv
done
The Windows server is easier: there's only one NTP server it queries (time.windows.com), so we can filter by our VM's IP address rather than the NTP server's IP address:
tcpdump -tt -nr ~/Downloads/ntp_vbox.pcap dst host w7.nono.com |
awk 'BEGIN {prev = 0 }; { printf "%d\n", $1 -prev; prev = $1 }' |
tail +2 | sort | uniq -c |
awk "BEGIN { print \"polling interval (seconds), VB/W7\" }
{ printf \"%d,%d\n\", \$2, \$1 }" |
sort > /tmp/vb-w7.csv
Like Windows, there's only one NTP server (time.apple.com), so we can filter by our VM's IP address:
tcpdump -tt -nr ~/Downloads/ntp_vbox.pcap dst host tara.nono.com |
awk 'BEGIN {prev = 0 }; { printf "%d\n", $1 -prev; prev = $1 }' |
tail +2 | sort | uniq -c |
awk "BEGIN { print \"polling interval (seconds), OS X\" }
{ printf \"%d,%d\n\", \$2, \$1 }" |
sort > /tmp/osx.csv
for NTP_SERVER in \
216.66.0.142 \
72.14.183.239 \
108.166.189.70
do
tcpdump -tt -nr ~/Downloads/ntp_xen_linux.pcap src host $NTP_SERVER |
awk 'BEGIN {prev = 0 }; { printf "%d\n", $1 -prev; prev = $1 }' |
tail +2 | sort | uniq -c |
awk "BEGIN { print \"polling interval (seconds), Xen/Ubu/$NTP_SERVER\" }
{ printf \"%d,%d\n\", \$2, \$1 }" |
sort > /tmp/xen-ubu-$NTP_SERVER.csv
done
for NTP_SERVER in \
2a01:4f8:141:282::5:3 \
2a01:4f8:201:4101::5 \
78.46.60.42
do
tcpdump -tt -nr ~/Downloads/ntp_kvm_fbsd.pcap src host $NTP_SERVER |
awk 'BEGIN {prev = 0 }; { printf "%d\n", $1 -prev; prev = $1 }' |
tail +2 | sort | uniq -c |
awk "BEGIN { print \"polling interval (seconds), KVM/FB/$NTP_SERVER\" }
{ printf \"%d,%d\n\", \$2, \$1 }" |
sort > /tmp/kvm-fb-$NTP_SERVER.csv
done
tcpdump -tt -nr ~/Downloads/ntp_esxi_ubuntu.pcap src host 91.189.94.4 |
awk 'BEGIN {prev = 0 }; { printf "%d\n", $1 -prev; prev = $1 }' |
tail +2 | sort | uniq -c |
awk "BEGIN { print \"polling interval (seconds), ESXi/Ubu\" }
{ printf \"%d,%d\n\", \$2, \$1 }" |
sort > /tmp/esxi-ubu.csv
Next we need to merge the above files into one file that we can easily import into Google Docs.
COMMAS=''
CSV_INDEX=0
for CSV_FILE in *.csv; do
CSV_TEMP=$$.$CSV_INDEX.csv
CSV_INDEX=$(( CSV_INDEX + 1 ))
[ ! -f $CSV_TEMP ] && touch $CSV_TEMP
( join -t , $CSV_TEMP $CSV_FILE
join -v 1 -t , $CSV_TEMP $CSV_FILE | sed "s/\$/,/"
join -v 2 -t , $CSV_TEMP $CSV_FILE | sed "s/\([^,]*\$\)/$COMMAS\1/" ) |
sort > $$.$CSV_INDEX.csv
COMMAS="$COMMAS,"
done
Note:
- we use the
join
command to merge the proper fields together; this is so our scatterplot will display properly. The join-field is the polling interval in seconds - we use 3 iterations of
join
- the first one merges the fields with common polling intervals
- the second one merges the polling intervals that are present in the first file but not the second
- the final one merges the polling intervals that are present in the second file but not the first
- we invoke
sort
in order to keep our temporary files lexically collated, a requirement ofjoin
- we create a series of temporary files, the last one of which (e.g.
5192.17.csv
) we will import into Google Docs - we need to perform one final
sort
before import (we need to sort numerically, not lexically):
sort -g < 5192.17.csv > final.csv
In order to create our scatterplot, we must comply with Google's requirements. For example, each column needs at least 1 datapoint.
- we add a value of 1 polling interval of 10800 seconds to the OS X column. During our 3-hour packet capture, our OS X host only queried its NTP server once, and we removed that packet (we measure intervals between packets, and we need at least 2 packets measure). Our data now indicates that OS X queries once every 3 hours.
- we remove the column VB/FB/72.20.40.62. That NTP server is unreachable/broken and has no data points.
- we add a value of 1 polling interval of 86400 seconds to the VB/W7 column. Windows 7 appears to only query for time information once per day (not discovered in this packet capture but in an earlier one)
An earlier version of this blog post had incorrect values of the polling intervals of the OS X and the Windows 7 clients. Both clients polled so infrequently that we subsequently ran a 3-day trace (instead of the original 3-hour trace)for those clients.
1 Math is as follows:
90 B / NTP poll
$500 total
$0.12 / 1 GB
$500
× 1 GB / $0.12
× 1,000,000,000 bytes / GB
× 1 poll / 90 B
= 46296296296 polls = 46.29 Gpolls
2 Over the course of a 72-hour (3 day) trace, we were unable to capture a single NTP packet with a source or destination of our Windows 7 client machine. Our conclusion is that Windows is either polling extremely infrequently (more likely) or that it's using a non-NTP protocol to synchronize time (less likely).
3 The inclusion of FreeBSD in the list of Operating Systems is made less for its prevalence (it is vastly overshadowed by Linux in terms of deployments) than for the strong emotional attachment the author has for it.
4 To define our own addresses without fear of colliding with an existing address, we set the locally administered bit (the second least significant bit of the most significant byte) to 1.
5 The term "host" has a specific connotation within the context of virtualization, and we are deliberately mis-using using that term to achieve poetic effect (i.e. "hosts" sounds similar to "horsemen"). But let's be clear on our terms: a "host" is an Operating System (usually running on bare-iron, but optionally running as a guest VM on another host) running virtualization software (e.g. VirtualBox, Fusion, ESXi, Xen); a "guest" is an operating system that's running on top of the virtualization software which the host is providing.
In our example only one of the 4 hosts is truly a host—the OS X box is a true host (it provides the virtualization software (VirtualBox) on top of which the remaining 3 operating systems (Ubuntu, FreeBSD, and Windows 7) are running).
6 We'd like to point out the shortcomings of the FreeBSD setup versus the Ubuntu setup: in the Ubuntu setup, we were able to use a directive (use_dhcp_assigned_default_route
) to configure Ubuntu to send outbound traffic via its bridged interface. Unfortunately, that directive didn't work for our FreeBSD VM. So we used a script to set the default route, but the script is not executed when FreeBSD VM is rebooted, and the FreeBSD VM will revert to using the NAT interface instead of the bridged interface, which means we will no longer be able to distinguish the FreeBSD NTP traffic from the OS X host's NTP traffic.
The workaround is to never reboot the FreeBSD VM. Instead, we use vagrant up
and vagrant destroy
when we need to bring up or shut down the FreeBSD VM. We incur a penalty in that it takes slightly longer to boot our machine via vagrant up
.
Also note that we modified the config.vm.network
to use a host-only network instead of the regular NAT network. That change was necessary for the FreeBSD guest to run the required gateway_and_ntp.sh
script. Virtualbox was kind enough to warn us:
NFS requires a host-only network to be created.
Please add a host-only network to the machine (with either DHCP or a
static IP) for NFS to work.
Running a Network Time Protocol (NTP) server on the Internet can incur significant ($500/year) bandwidth charges, much of it due to poorly-behaved clients. In this blog post we explore using NTP's built-in rate-limiting controls to throttle the requests from poorly-behaved clients while honoring the requests from the well-behaved ones. We find that with the proper tools in place we can reduce our charges as much as 25% (we can save $125/year).
In the first part of our series, Why Is My NTP Server Costing $500/Year? Part 1, we conclusively determined that our NTP server was costing us $500/year in bandwidth charges. In our second installment, Why Is My NTP Server Costing Me $500/Year? Part 2: Characterizing the NTP Clients, we came to the conclusion that the poorly-behaved clients were most likely embedded systems with badly-coded NTP software and not Windows, OS X, Linux, or FreeBSD.
We determine the effectiveness of rate limiting by running the following command on our NTP server. In our initial configuration (restrict kod limited
) and no tuning, we see that over 25% of the NTP queries are rate-limited ( 630616082 ÷ 2434660116 × 100% = 25.9% )):
ntpq -c sysstats
uptime: 1360392
sysstats reset: 1360392
packets received: 2434660116
current version: 1498949584
older version: 935661639
bad length or format: 16090
authentication failed: 276043
declined: 179
restricted: 42729
rate limited: 630616082
KoD responses: 156166249
processed for time: 4043
We determine the following:
- our server receives an average of 1789 NTP queries/second (2,434,660,116 queries ÷ 136,039 seconds)
- 25% of the NTP queries are rate-limited ( 630616082 rate-limited queries ÷ 2434660116 packets received × 100%). These are bad NTP clients.
- our server has been up 15.7 days (136,039 seconds ÷ 86,400 seconds/day)
ntp.conf
We explore reducing the minimum interval between 2 packets from 2 seconds to one second. This is to accommodate clients who barely fall within the interval due to jitter. http://lists.ntp.org/pipermail/questions/2010-April/026306.html
Also, we explore not sending a KoD packet
- no kod
discard minimum 0
/var/vcap/packages/ntp-4.2.8p2/bin/ntpq -c sysstats
uptime: 4566190
sysstats reset: 4566190
packets received: 9495345201
current version: 5961053583
older version: 3532450004
bad length or format: 68989
authentication failed: 1503697
declined: 889
restricted: 72709
rate limited: 1045933181
KoD responses: 0
processed for time: 17398
We were curious if Amazon's new virtualization type, HVM, would perform better than the original virtualization type, paravirtualization. Our answer seems to indicate that HVM performs twice as well as paravirtualization, at least in regards latency (i.e. HVM instance has a latency of roughly -2ms to +2ms (4ms spread), and the paravirtualization instance has a latency of -4ms to +4ms (8ms spread)) (lower is better). See the charts below.
[caption id="attachment_33419" align="alignnone" width="300"] t1.micro with paravirtualization. Notice the points vary from -4ms to +4ms (the axis on the left). Keep in mind the y axis is logarithmic.[/caption]
[caption id="attachment_33418" align="alignnone" width="300"] t2.micro with HVM virtualization. Notice the points cluster in two bands at -2ms and +2ms (the axis on the left). We hypothesize that this may be due to the VM having access to the CPU once every 4ms, but we are not sure. Keep in mind the y axis is logarithmic.[/caption]
Disclaimer: these charts are not definitive: many factors affect latency. The t2.micro/HVM chart is much newer (June 2015) than the t1.micro/paravirtualization chart (April 2014), and many changes to the AWS infrastructure may have occurred in the interim. For example, the t2.micro/HVM may be running on much newer, faster hardware.
- The NTP canonical documentation describes in technical detail the ntpd rate-limiting options
- ntpd's Most Recently Used (MRU) source IP addresses of NTP clients was increased from the default of 600 to accommodate public servers which can have thousands of queries per second. Our server receives almost 1,800 queries per second.