Training courses

Kernel and Embedded Linux

Bootlin training courses

Embedded Linux, kernel,
Yocto Project, Buildroot, real-time,
graphics, boot time, debugging...

Bootlin logo

Elixir Cross Referencer

   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
.de1 NOP
.  it 1 an-trap
.  if \\n[.$] \,\\$*\/
..
.ie t \
.ds B-Font [CB]
.ds I-Font [CI]
.ds R-Font [CR]
.el \
.ds B-Font B
.ds I-Font I
.ds R-Font R
.TH ntpq @NTPQ_MS@ "14 Aug 2018" "4.2.8p12" "User Commands"
.\"
.\" EDIT THIS FILE WITH CAUTION (/tmp/.ag-_XaWRE/ag-lYaOQE)
.\"
.\" It has been AutoGen-ed August 14, 2018 at 08:29:58 AM by AutoGen 5.18.5
.\" From the definitions ntpq-opts.def
.\" and the template file agman-cmd.tpl
.SH NAME
\f\*[B-Font]ntpq\fP
\- standard NTP query program
.SH SYNOPSIS
\f\*[B-Font]ntpq\fP
.\" Mixture of short (flag) options and long options
[\f\*[B-Font]\-flags\f[]]
[\f\*[B-Font]\-flag\f[] [\f\*[I-Font]value\f[]]]
[\f\*[B-Font]\-\-option-name\f[][[=| ]\f\*[I-Font]value\f[]]]
[ host ...]
.sp \n(Ppu
.ne 2

.SH DESCRIPTION
.sp \n(Ppu
.ne 2

The
\f\*[B-Font]ntpq\fP
utility program is used to query NTP servers to monitor NTP operations
and performance, requesting
information about current state and/or changes in that state.
The program may be run either in interactive mode or controlled using
command line arguments.
Requests to read and write arbitrary
variables can be assembled, with raw and pretty-printed output
options being available.
The
\f\*[B-Font]ntpq\fP
utility can also obtain and print a
list of peers in a common format by sending multiple queries to the
server.
.sp \n(Ppu
.ne 2

If one or more request options is included on the command line
when
\f\*[B-Font]ntpq\fP
is executed, each of the requests will be sent
to the NTP servers running on each of the hosts given as command
line arguments, or on localhost by default.
If no request options
are given,
\f\*[B-Font]ntpq\fP
will attempt to read commands from the
standard input and execute these on the NTP server running on the
first host given on the command line, again defaulting to localhost
when no other host is specified.
The
\f\*[B-Font]ntpq\fP
utility will prompt for
commands if the standard input is a terminal device.
.sp \n(Ppu
.ne 2

\f\*[B-Font]ntpq\fP
uses NTP mode 6 packets to communicate with the
NTP server, and hence can be used to query any compatible server on
the network which permits it.
Note that since NTP is a UDP protocol
this communication will be somewhat unreliable, especially over
large distances in terms of network topology.
The
\f\*[B-Font]ntpq\fP
utility makes
one attempt to retransmit requests, and will time requests out if
the remote host is not heard from within a suitable timeout
time.
.sp \n(Ppu
.ne 2

Note that in contexts where a host name is expected, a
\f\*[B-Font]\-4\f[]
qualifier preceding the host name forces resolution to the IPv4
namespace, while a
\f\*[B-Font]\-6\f[]
qualifier forces resolution to the IPv6 namespace.
For examples and usage, see the
\*[Lq]NTP Debugging Techniques\*[Rq]
page.
.sp \n(Ppu
.ne 2

Specifying a
command line option other than
\f\*[B-Font]\-i\f[]
or
\f\*[B-Font]\-n\f[]
will
cause the specified query (queries) to be sent to the indicated
host(s) immediately.
Otherwise,
\f\*[B-Font]ntpq\fP
will attempt to read
interactive format commands from the standard input.
.SS "Internal Commands"
.sp \n(Ppu
.ne 2

Interactive format commands consist of a keyword followed by zero
to four arguments.
Only enough characters of the full keyword to
uniquely identify the command need be typed.
.sp \n(Ppu
.ne 2

A
number of interactive format commands are executed entirely within
the
\f\*[B-Font]ntpq\fP
utility itself and do not result in NTP
requests being sent to a server.
These are described following.
.TP 15
.NOP \f\*[B-Font]?\f[] [\f\*[I-Font]command\f[]]
.br
.ns
.TP 15
.NOP \f\*[B-Font]help\f[] [\f\*[I-Font]command\f[]]
A
\[oq]\&?\[cq]
by itself will print a list of all the commands
known to
\f\*[B-Font]ntpq\fP.
A
\[oq]\&?\[cq]
followed by a command name will print function and usage
information about the command.
.br
.ns
.TP 15
.NOP \f\*[B-Font]addvars\f[] \f\*[I-Font]name\f[][\&=\f\*[I-Font]value\f[]][,...]
.br
.ns
.TP 15
.NOP \f\*[B-Font]rmvars\f[] \f\*[I-Font]name\f[][,...]
.br
.ns
.TP 15
.NOP \f\*[B-Font]clearvars\f[]
.br
.ns
.TP 15
.NOP \f\*[B-Font]showvars\f[]
The arguments to this command consist of a list of
items of the form
\f\*[I-Font]name\f[][\&=\f\*[I-Font]value\f[]],
where the
.NOP \&=\f\*[I-Font]value\f[]
is ignored, and can be omitted,
in requests to the server to read variables.
The
\f\*[B-Font]ntpq\fP
utility maintains an internal list in which data to be included in
messages can be assembled, and displayed or set using the
\f\*[B-Font]readlist\f[]
and
\f\*[B-Font]writelist\f[]
commands described below.
The
\f\*[B-Font]addvars\f[]
command allows variables and their optional values to be added to
the list.
If more than one variable is to be added, the list should
be comma-separated and not contain white space.
The
\f\*[B-Font]rmvars\f[]
command can be used to remove individual variables from the list,
while the
\f\*[B-Font]clearvars\f[]
command removes all variables from the
list.
The
\f\*[B-Font]showvars\f[]
command displays the current list of optional variables.
.br
.ns
.TP 15
.NOP \f\*[B-Font]authenticate\f[] [\f\*[B-Font]yes\f[]|\f\*[B-Font]no\f[]]
Normally
\f\*[B-Font]ntpq\fP
does not authenticate requests unless
they are write requests.
The command
\f\*[B-Font]authenticate\f[] \f\*[B-Font]yes\f[]
causes
\f\*[B-Font]ntpq\fP
to send authentication with all requests it
makes.
Authenticated requests causes some servers to handle
requests slightly differently.
The command
\f\*[B-Font]authenticate\f[]
causes
\f\*[B-Font]ntpq\fP
to display whether or not
it is currently authenticating requests.
.br
.ns
.TP 15
.NOP \f\*[B-Font]cooked\f[]
Causes output from query commands to be "cooked", so that
variables which are recognized by
\f\*[B-Font]ntpq\fP
will have their
values reformatted for human consumption.
Variables which
\f\*[B-Font]ntpq\fP
could not decode completely are
marked with a trailing
\[oq]\&?\[cq].
.br
.ns
.TP 15
.NOP \f\*[B-Font]debug\f[] [\f\*[B-Font]more\f[]|\f\*[B-Font]less\f[]|\f\*[B-Font]off\f[]]
With no argument, displays the current debug level.
Otherwise, the debugging level is changed as indicated.
.br
.ns
.TP 15
.NOP \f\*[B-Font]delay\f[] [\f\*[I-Font]milliseconds\f[]]
Specify a time interval to be added to timestamps included in
requests which require authentication.
This is used to enable
(unreliable) server reconfiguration over long delay network paths
or between machines whose clocks are unsynchronized.
Actually the
server does not now require timestamps in authenticated requests,
so this command may be obsolete.
Without any arguments, displays the current delay.
.br
.ns
.TP 15
.NOP \f\*[B-Font]drefid\f[] [\f\*[B-Font]hash\f[]|\f\*[B-Font]ipv4\f[]]
Display refids as IPv4 or hash.
Without any arguments, displays whether refids are shown as IPv4
addresses or hashes.
.br
.ns
.TP 15
.NOP \f\*[B-Font]exit\f[]
Exit
\f\*[B-Font]ntpq\fP.
.br
.ns
.TP 15
.NOP \f\*[B-Font]host\f[] [\f\*[I-Font]name\f[]]
Set the host to which future queries will be sent.
The
\f\*[I-Font]name\f[]
may be either a host name or a numeric address.
Without any arguments, displays the current host.
.br
.ns
.TP 15
.NOP \f\*[B-Font]hostnames\f[] [\f\*[B-Font]yes\f[]|\f\*[B-Font]no\f[]]
If
\f\*[B-Font]yes\f[]
is specified, host names are printed in
information displays.
If
\f\*[B-Font]no\f[]
is specified, numeric
addresses are printed instead.
The default is
\f\*[B-Font]yes\f[],
unless
modified using the command line
\f\*[B-Font]\-n\f[]
switch.
Without any arguments, displays whether host names or numeric addresses
are shown.
.br
.ns
.TP 15
.NOP \f\*[B-Font]keyid\f[] [\f\*[I-Font]keyid\f[]]
This command allows the specification of a key number to be
used to authenticate configuration requests.
This must correspond
to the
\f\*[B-Font]controlkey\f[]
key number the server has been configured to use for this
purpose.
Without any arguments, displays the current
\f\*[I-Font]keyid\f[].
.br
.ns
.TP 15
.NOP \f\*[B-Font]keytype\f[] [\f\*[I-Font]digest\f[]]
Specify the digest algorithm to use for authenticating requests, with default
\f\*[B-Font]MD5\f[].
If
\f\*[B-Font]ntpq\fP
was built with OpenSSL support, and OpenSSL is installed,
\f\*[I-Font]digest\f[]
can be any message digest algorithm supported by OpenSSL.
If no argument is given, the current
\f\*[B-Font]keytype\f[] \f\*[I-Font]digest\f[]
algorithm used is displayed.
.br
.ns
.TP 15
.NOP \f\*[B-Font]ntpversion\f[] [\f\*[B-Font]1\f[]|\f\*[B-Font]2\f[]|\f\*[B-Font]3\f[]|\f\*[B-Font]4\f[]]
Sets the NTP version number which
\f\*[B-Font]ntpq\fP
claims in
packets.
Defaults to 3, and note that mode 6 control messages (and
modes, for that matter) didn't exist in NTP version 1.
There appear
to be no servers left which demand version 1.
With no argument, displays the current NTP version that will be used
when communicating with servers.
.br
.ns
.TP 15
.NOP \f\*[B-Font]passwd\f[]
This command prompts you to type in a password (which will not
be echoed) which will be used to authenticate configuration
requests.
The password must correspond to the key configured for
use by the NTP server for this purpose if such requests are to be
successful.
.br
.ns
.TP 15
.NOP \f\*[B-Font]poll\f[] [\f\*[I-Font]n\f[]] [\f\*[B-Font]verbose\f[]]
Poll an NTP server in client mode
\f\*[I-Font]n\f[]
times.
Poll not implemented yet.
.br
.ns
.TP 15
.NOP \f\*[B-Font]quit\f[]
Exit
\f\*[B-Font]ntpq\fP.
.br
.ns
.TP 15
.NOP \f\*[B-Font]raw\f[]
Causes all output from query commands is printed as received
from the remote server.
The only formating/interpretation done on
the data is to transform nonascii data into a printable (but barely
understandable) form.
.br
.ns
.TP 15
.NOP \f\*[B-Font]timeout\f[] [\f\*[I-Font]milliseconds\f[]]
Specify a timeout period for responses to server queries.
The
default is about 5000 milliseconds.
Without any arguments, displays the current timeout period.
Note that since
\f\*[B-Font]ntpq\fP
retries each query once after a timeout, the total waiting time for
a timeout will be twice the timeout value set.
.br
.ns
.TP 15
.NOP \f\*[B-Font]version\f[]
Display the version of the
\f\*[B-Font]ntpq\fP
program.
.PP
.SS "Control Message Commands"
Association ids are used to identify system, peer and clock variables.
System variables are assigned an association id of zero and system name
space, while each association is assigned a nonzero association id and
peer namespace.
Most control commands send a single message to the server and expect a
single response message.
The exceptions are the
\f\*[B-Font]peers\f[]
command, which sends a series of messages,
and the
\f\*[B-Font]mreadlist\f[]
and
\f\*[B-Font]mreadvar\f[]
commands, which iterate over a range of associations.
.TP 10
.NOP \f\*[B-Font]apeers\f[]
Display a list of peers in the form:
.Dl [tally]remote refid assid st t when pool reach delay offset jitter
where the output is just like the
\f\*[B-Font]peers\f[]
command except that the
\f\*[B-Font]refid\f[]
is displayed in hex format and the association number is also displayed.
.br
.ns
.TP 10
.NOP \f\*[B-Font]associations\f[]
Display a list of mobilized associations in the form:
.Dl ind assid status conf reach auth condition last_event cnt
.RS
.IP \fB\(bu\fP 2
.IP \fB\(bu\fP 2 \f\*[B-Font]ind\f[] \f\*[B-Font]Ta\f[] \f\*[B-Font]index\f[] \f\*[B-Font]on\f[] \f\*[B-Font]this\f[] \f\*[B-Font]list\f[]
.IP \fB\(bu\fP 2 \f\*[B-Font]assid\f[] \f\*[B-Font]Ta\f[] \f\*[B-Font]association\f[] \f\*[B-Font]id\f[]
.IP \fB\(bu\fP 2 \f\*[B-Font]status\f[] \f\*[B-Font]Ta\f[] \f\*[B-Font]peer\f[] \f\*[B-Font]status\f[] \f\*[B-Font]word\f[]
.IP \fB\(bu\fP 2 \f\*[B-Font]conf\f[] \f\*[B-Font]Ta\f[] \f\*[B-Font]yes\f[]: \f\*[B-Font]No\f[] \f\*[B-Font]persistent,\f[] \f\*[B-Font]no\f[]: \f\*[B-Font]No\f[] \f\*[B-Font]ephemeral\f[]
.IP \fB\(bu\fP 2 \f\*[B-Font]reach\f[] \f\*[B-Font]Ta\f[] \f\*[B-Font]yes\f[]: \f\*[B-Font]No\f[] \f\*[B-Font]reachable,\f[] \f\*[B-Font]no\f[]: \f\*[B-Font]No\f[] \f\*[B-Font]unreachable\f[]
.IP \fB\(bu\fP 2 \f\*[B-Font]auth\f[] \f\*[B-Font]Ta\f[] \f\*[B-Font]ok\f[], \f\*[B-Font]yes\f[], \f\*[B-Font]bad\f[] \f\*[B-Font]No\f[] \f\*[B-Font]and\f[] \f\*[B-Font]none\f[]
.IP \fB\(bu\fP 2 \f\*[B-Font]condition\f[] \f\*[B-Font]Ta\f[] \f\*[B-Font]selection\f[] \f\*[B-Font]status\f[] \f\*[B-Font]\&(see\f[] \f\*[B-Font]the\f[] \f\*[B-Font]select\f[] \f\*[B-Font]No\f[] \f\*[B-Font]field\f[] \f\*[B-Font]of\f[] \f\*[B-Font]the\f[] \f\*[B-Font]peer\f[] \f\*[B-Font]status\f[] \f\*[B-Font]word\&)\f[]
.IP \fB\(bu\fP 2 \f\*[B-Font]last_event\f[] \f\*[B-Font]Ta\f[] \f\*[B-Font]event\f[] \f\*[B-Font]report\f[] \f\*[B-Font]\&(see\f[] \f\*[B-Font]the\f[] \f\*[B-Font]event\f[] \f\*[B-Font]No\f[] \f\*[B-Font]field\f[] \f\*[B-Font]of\f[] \f\*[B-Font]the\f[] \f\*[B-Font]peer\f[] \f\*[B-Font]status\f[] \f\*[B-Font]word\&)\f[]
.IP \fB\(bu\fP 2 \f\*[B-Font]cnt\f[] \f\*[B-Font]Ta\f[] \f\*[B-Font]event\f[] \f\*[B-Font]count\f[] \f\*[B-Font]\&(see\f[] \f\*[B-Font]the\f[] \f\*[B-Font]count\f[] \f\*[B-Font]No\f[] \f\*[B-Font]field\f[] \f\*[B-Font]of\f[] \f\*[B-Font]the\f[] \f\*[B-Font]peer\f[] \f\*[B-Font]status\f[] \f\*[B-Font]word\&)\f[]
.RE
.br
.ns
.TP 10
.NOP \f\*[B-Font]authinfo\f[]
Display the authentication statistics counters:
time since reset, stored keys, free keys, key lookups, keys not found,
uncached keys, expired keys, encryptions, decryptions.
.br
.ns
.TP 10
.NOP \f\*[B-Font]clocklist\f[] [\f\*[I-Font]associd\f[]]
.br
.ns
.TP 10
.NOP \f\*[B-Font]cl\f[] [\f\*[I-Font]associd\f[]]
Display all clock variables in the variable list for those associations
supporting a reference clock.
.br
.ns
.TP 10
.NOP \f\*[B-Font]clockvar\f[] [\f\*[I-Font]associd\f[]] [\f\*[I-Font]name\f[][\&=\f\*[I-Font]value\f[]][] ,...]
.br
.ns
.TP 10
.NOP \f\*[B-Font]cv\f[] [\f\*[I-Font]associd\f[]] [\f\*[I-Font]name\f[][\&=\f\*[I-Font]value\f[]][] ,...]
Display a list of clock variables for those associations supporting a
reference clock.
.br
.ns
.TP 10
.NOP \f\*[B-Font]:config\f[] \f\*[I-Font]configuration command line\f[]
Send the remainder of the command line, including whitespace, to the
server as a run-time configuration command in the same format as a line
in the configuration file.
This command is experimental until further notice and clarification.
Authentication is of course required.
.br
.ns
.TP 10
.NOP \f\*[B-Font]config-from-file\f[] \f\*[I-Font]filename\f[]
Send each line of
\f\*[I-Font]filename\f[]
to the server as run-time configuration commands in the same format as
lines in the configuration file.
This command is experimental until further notice and clarification.
Authentication is required.
.br
.ns
.TP 10
.NOP \f\*[B-Font]ifstats\f[]
Display status and statistics counters for each local network interface address:
interface number, interface name and address or broadcast, drop, flag,
ttl, mc, received, sent, send failed, peers, uptime.
Authentication is required.
.br
.ns
.TP 10
.NOP \f\*[B-Font]iostats\f[]
Display network and reference clock I/O statistics:
time since reset, receive buffers, free receive buffers, used receive buffers,
low water refills, dropped packets, ignored packets, received packets,
packets sent, packet send failures, input wakeups, useful input wakeups.
.br
.ns
.TP 10
.NOP \f\*[B-Font]kerninfo\f[]
Display kernel loop and PPS statistics:
associd, status, pll offset, pll frequency, maximum error,
estimated error, kernel status, pll time constant, precision,
frequency tolerance, pps frequency, pps stability, pps jitter,
calibration interval, calibration cycles, jitter exceeded,
stability exceeded, calibration errors.
As with other ntpq output, times are in milliseconds; very small values
may be shown as exponentials.
The precision value displayed is in milliseconds as well, unlike the
precision system variable.
.br
.ns
.TP 10
.NOP \f\*[B-Font]lassociations\f[]
Perform the same function as the associations command, except display
mobilized and unmobilized associations, including all clients.
.br
.ns
.TP 10
.NOP \f\*[B-Font]lopeers\f[] [\f\*[B-Font]\-4\f[]|\f\*[B-Font]\-6\f[]]
Display a list of all peers and clients showing
\f\*[B-Font]dstadr\f[]
(associated with the given IP version).
.br
.ns
.TP 10
.NOP \f\*[B-Font]lpassociations\f[]
Display the last obtained list of associations, including all clients.
.br
.ns
.TP 10
.NOP \f\*[B-Font]lpeers\f[] [\f\*[B-Font]\-4\f[]|\f\*[B-Font]\-6\f[]]
Display a list of all peers and clients (associated with the given IP version).
.br
.ns
.TP 10
.NOP \f\*[B-Font]monstats\f[]
Display monitor facility status, statistics, and limits:
enabled, addresses, peak addresses, maximum addresses,
reclaim above count, reclaim older than, kilobytes, maximum kilobytes.
.br
.ns
.TP 10
.NOP \f\*[B-Font]mreadlist\f[] \f\*[I-Font]associdlo\f[] \f\*[I-Font]associdhi\f[]
.br
.ns
.TP 10
.NOP \f\*[B-Font]mrl\f[] \f\*[I-Font]associdlo\f[] \f\*[I-Font]associdhi\f[]
Perform the same function as the
\f\*[B-Font]readlist\f[]
command for a range of association ids.
.br
.ns
.TP 10
.NOP \f\*[B-Font]mreadvar\f[] \f\*[I-Font]associdlo\f[] \f\*[I-Font]associdhi\f[] [\f\*[I-Font]name\f[]][,...]
This range may be determined from the list displayed by any
command showing associations.
.br
.ns
.TP 10
.NOP \f\*[B-Font]mrv\f[] \f\*[I-Font]associdlo\f[] \f\*[I-Font]associdhi\f[] [\f\*[I-Font]name\f[]][,...]
Perform the same function as the
\f\*[B-Font]readvar\f[]
command for a range of association ids.
This range may be determined from the list displayed by any
command showing associations.
.br
.ns
.TP 10
.NOP \f\*[B-Font]mrulist\f[] [\f\*[B-Font]limited\f[] | \f\*[B-Font]kod\f[] | \f\*[B-Font]mincount\f[]\&=\f\*[I-Font]count\f[] | \f\*[B-Font]laddr\f[]\&=\f\*[I-Font]localaddr\f[] | \f\*[B-Font]sort\f[]\&=[\&-]\f\*[I-Font]sortorder\f[] | \f\*[B-Font]resany\f[]\&=\f\*[I-Font]hexmask\f[] | \f\*[B-Font]resall\f[]\&=\f\*[I-Font]hexmask\f[]]
Display traffic counts of the most recently seen source addresses
collected and maintained by the monitor facility.
With the exception of
\f\*[B-Font]sort\f[]\&=[\&-]\f\*[I-Font]sortorder\f[],
the options filter the list returned by
\fCntpd\f[]\fR(8)\f[].
The
\f\*[B-Font]limited\f[]
and
\f\*[B-Font]kod\f[]
options return only entries representing client addresses from which the
last packet received triggered either discarding or a KoD response.
The
\f\*[B-Font]mincount\f[]=\f\*[I-Font]count\f[]
option filters entries representing less than
\f\*[I-Font]count\f[]
packets.
The
\f\*[B-Font]laddr\f[]=\f\*[I-Font]localaddr\f[]
option filters entries for packets received on any local address other than
\f\*[I-Font]localaddr\f[].
\f\*[B-Font]resany\f[]=\f\*[I-Font]hexmask\f[]
and
\f\*[B-Font]resall\f[]=\f\*[I-Font]hexmask\f[]
filter entries containing none or less than all, respectively, of the bits in
\f\*[I-Font]hexmask\f[],
which must begin with
\f\*[B-Font]0x\f[].
The
\f\*[I-Font]sortorder\f[]
defaults to
\f\*[B-Font]lstint\f[]
and may be 
\f\*[B-Font]addr\f[],
\f\*[B-Font]avgint\f[],
\f\*[B-Font]count\f[],
\f\*[B-Font]lstint\f[],
or any of those preceded by
\[oq]\&-\[cq]
to reverse the sort order.
The output columns are:
.RS
.TP 10
.NOP Column
Description
.br
.ns
.TP 10
.NOP \f\*[B-Font]lstint\f[]
Interval in seconds between the receipt of the most recent packet from
this address and the completion of the retrieval of the MRU list by
\f\*[B-Font]ntpq\fP.
.br
.ns
.TP 10
.NOP \f\*[B-Font]avgint\f[]
Average interval in s between packets from this address.
.br
.ns
.TP 10
.NOP \f\*[B-Font]rstr\f[]
Restriction flags associated with this address.
Most are copied unchanged from the matching
\f\*[B-Font]restrict\f[]
command, however 0x400 (kod) and 0x20 (limited) flags are cleared unless
the last packet from this address triggered a rate control response.
.br
.ns
.TP 10
.NOP \f\*[B-Font]r\f[]
Rate control indicator, either
a period,
\f\*[B-Font]L\f[]
or
\f\*[B-Font]K\f[]
for no rate control response,
rate limiting by discarding, or rate limiting with a KoD response, respectively.
.br
.ns
.TP 10
.NOP \f\*[B-Font]m\f[]
Packet mode.
.br
.ns
.TP 10
.NOP \f\*[B-Font]v\f[]
Packet version number.
.br
.ns
.TP 10
.NOP \f\*[B-Font]count\f[]
Packets received from this address.
.br
.ns
.TP 10
.NOP \f\*[B-Font]rport\f[]
Source port of last packet from this address.
.br
.ns
.TP 10
.NOP \f\*[B-Font]remote\f[] \f\*[B-Font]address\f[]
host or DNS name, numeric address, or address followed by
claimed DNS name which could not be verified in parentheses.
.RE
.br
.ns
.TP 10
.NOP \f\*[B-Font]opeers\f[] [\f\*[B-Font]\-4\f[] | \f\*[B-Font]\-6\f[]]
Obtain and print the old-style list of all peers and clients showing
\f\*[B-Font]dstadr\f[]
(associated with the given IP version),
rather than the
\f\*[B-Font]refid\f[].
.br
.ns
.TP 10
.NOP \f\*[B-Font]passociations\f[]
Perform the same function as the
\f\*[B-Font]associations\f[]
command,
except that it uses previously stored data rather than making a new query.
.br
.ns
.TP 10
.NOP \f\*[B-Font]peers\f[]
Display a list of peers in the form:
.Dl [tally]remote refid st t when pool reach delay offset jitter
.RS
.TP 10
.NOP Variable
Description
.br
.ns
.TP 10
.NOP \f\*[B-Font][tally]\f[]
single-character code indicating current value of the
\f\*[B-Font]select\f[]
field of the
.Lk decode.html#peer "peer status word"
.br
.ns
.TP 10
.NOP \f\*[B-Font]remote\f[]
host name (or IP number) of peer.
The value displayed will be truncated to 15 characters unless the
\f\*[B-Font]ntpq\fP
\f\*[B-Font]\-w\f[]
option is given, in which case the full value will be displayed
on the first line, and if too long,
the remaining data will be displayed on the next line.
.br
.ns
.TP 10
.NOP \f\*[B-Font]refid\f[]
source IP address or
.Lk decode.html#kiss "'kiss code"
.br
.ns
.TP 10
.NOP \f\*[B-Font]st\f[]
stratum: 0 for local reference clocks, 1 for servers with local
reference clocks, ..., 16 for unsynchronized server clocks
.br
.ns
.TP 10
.NOP \f\*[B-Font]t\f[]
\f\*[B-Font]u\f[]:
unicast or manycast client,
\f\*[B-Font]b\f[]:
broadcast or multicast client,
\f\*[B-Font]p\f[]:
pool source,
\f\*[B-Font]l\f[]:
local (reference clock),
\f\*[B-Font]s\f[]:
symmetric (peer),
\f\*[B-Font]A\f[]:
manycast server,
\f\*[B-Font]B\f[]:
broadcast server,
\f\*[B-Font]M\f[]:
multicast server
.br
.ns
.TP 10
.NOP \f\*[B-Font]when\f[]
time in seconds, minutes, hours, or days since the last packet
was received, or
\[oq]\&-\[cq]
if a packet has never been received
.br
.ns
.TP 10
.NOP \f\*[B-Font]poll\f[]
poll interval (s)
.br
.ns
.TP 10
.NOP \f\*[B-Font]reach\f[]
reach shift register (octal)
.br
.ns
.TP 10
.NOP \f\*[B-Font]delay\f[]
roundtrip delay
.br
.ns
.TP 10
.NOP \f\*[B-Font]offset\f[]
offset of server relative to this host
.br
.ns
.TP 10
.NOP \f\*[B-Font]jitter\f[]
offset RMS error estimate.
.RE
.br
.ns
.TP 10
.NOP \f\*[B-Font]pstats\f[] \f\*[I-Font]associd\f[]
Display the statistics for the peer with the given
\f\*[I-Font]associd\f[]:
associd, status, remote host, local address, time last received,
time until next send, reachability change, packets sent,
packets received, bad authentication, bogus origin, duplicate,
bad dispersion, bad reference time, candidate order.
.br
.ns
.TP 10
.NOP \f\*[B-Font]readlist\f[] [\f\*[I-Font]associd\f[]]
.br
.ns
.TP 10
.NOP \f\*[B-Font]rl\f[] [\f\*[I-Font]associd\f[]]
Display all system or peer variables.
If the
\f\*[I-Font]associd\f[]
is omitted, it is assumed to be zero.
.br
.ns
.TP 10
.NOP \f\*[B-Font]readvar\f[] [\f\*[I-Font]associd\f[] \f\*[I-Font]name\f[][=\f\*[I-Font]value\f[]] [, ...]]
.br
.ns
.TP 10
.NOP \f\*[B-Font]rv\f[] [\f\*[I-Font]associd\f[] \f\*[I-Font]name\f[][=\f\*[I-Font]value\f[]] [, ...]]
Display the specified system or peer variables.
If
\f\*[I-Font]associd\f[]
is zero, the variables are from the
\fISystem\f[] \fIVariables\f[]
name space, otherwise they are from the
\fIPeer\f[] \fIVariables\f[]
name space.
The
\f\*[I-Font]associd\f[]
is required, as the same name can occur in both spaces.
If no
\f\*[I-Font]name\f[]
is included, all operative variables in the name space are displayed.
In this case only, if the
\f\*[I-Font]associd\f[]
is omitted, it is assumed to be zero.
Multiple names are specified with comma separators and without whitespace.
Note that time values are represented in milliseconds
and frequency values in parts-per-million (PPM).
Some NTP timestamps are represented in the format
\f\*[I-Font]YYYY\f[]\f\*[I-Font]MM\f[] \f\*[I-Font]DD\f[] \f\*[I-Font]TTTT\f[],
where
\f\*[I-Font]YYYY\f[]
is the year,
\f\*[I-Font]MM\f[]
the month of year,
\f\*[I-Font]DD\f[]
the day of month and
\f\*[I-Font]TTTT\f[]
the time of day.
.br
.ns
.TP 10
.NOP \f\*[B-Font]reslist\f[]
Display the access control (restrict) list for
\f\*[B-Font]ntpq\fP.
Authentication is required.
.br
.ns
.TP 10
.NOP \f\*[B-Font]saveconfig\f[] \f\*[I-Font]filename\f[]
Save the current configuration,
including any runtime modifications made by
\f\*[B-Font]:config\f[]
or
\f\*[B-Font]config-from-file\f[],
to the NTP server host file
\f\*[I-Font]filename\f[].
This command will be rejected by the server unless
.Lk miscopt.html#saveconfigdir "saveconfigdir"
appears in the
\fCntpd\f[]\fR(8)\f[]
configuration file.
\f\*[I-Font]filename\f[]
can use
\fCdate\f[]\fR(1)\f[]
format specifiers to substitute the current date and time, for
example,
.in +4
\f\*[B-Font]saveconfig\f[] \fIntp-%Y%m%d-%H%M%S.conf\f[]. 
.in -4
The filename used is stored in system variable
\f\*[B-Font]savedconfig\f[].
Authentication is required.
.br
.ns
.TP 10
.NOP \f\*[B-Font]sysinfo\f[]
Display system operational summary:
associd, status, system peer, system peer mode, leap indicator,
stratum, log2 precision, root delay, root dispersion,
reference id, reference time, system jitter, clock jitter,
clock wander, broadcast delay, symm. auth. delay.
.br
.ns
.TP 10
.NOP \f\*[B-Font]sysstats\f[]
Display system uptime and packet counts maintained in the
protocol module:
uptime, sysstats reset, packets received, current version,
older version, bad length or format, authentication failed,
declined, restricted, rate limited, KoD responses,
processed for time.
.br
.ns
.TP 10
.NOP \f\*[B-Font]timerstats\f[]
Display interval timer counters:
time since reset, timer overruns, calls to transmit.
.br
.ns
.TP 10
.NOP \f\*[B-Font]writelist\f[] \f\*[I-Font]associd\f[]
Set all system or peer variables included in the variable list.
.br
.ns
.TP 10
.NOP \f\*[B-Font]writevar\f[] \f\*[I-Font]associd\f[] \f\*[I-Font]name\f[]=\f\*[I-Font]value\f[] [, ...]
Set the specified variables in the variable list.
If the
\f\*[I-Font]associd\f[]
is zero, the variables are from the
\fISystem\f[] \fIVariables\f[]
name space, otherwise they are from the
\fIPeer\f[] \fIVariables\f[]
name space.
The
\f\*[I-Font]associd\f[]
is required, as the same name can occur in both spaces.
Authentication is required.
.PP
.SS Status Words and Kiss Codes
The current state of the operating program is shown
in a set of status words
maintained by the system.
Status information is also available on a per-association basis.
These words are displayed by the
\f\*[B-Font]readlist\f[]
and
\f\*[B-Font]associations\f[]
commands both in hexadecimal and in decoded short tip strings.
The codes, tips and short explanations are documented on the
.Lk decode.html "Event Messages and Status Words"
page.
The page also includes a list of system and peer messages,
the code for the latest of which is included in the status word.
.sp \n(Ppu
.ne 2

Information resulting from protocol machine state transitions
is displayed using an informal set of ASCII strings called
.Lk decode.html#kiss "kiss codes" .
The original purpose was for kiss-o'-death (KoD) packets
sent by the server to advise the client of an unusual condition.
They are now displayed, when appropriate,
in the reference identifier field in various billboards.
.SS System Variables
The following system variables appear in the
\f\*[B-Font]readlist\f[]
billboard.
Not all variables are displayed in some configurations.
.sp \n(Ppu
.ne 2

.TP 10
.NOP Variable
Description
.br
.ns
.TP 10
.NOP \f\*[B-Font]status\f[]
.Lk decode.html#sys "system status word"
.br
.ns
.TP 10
.NOP \f\*[B-Font]version\f[]
NTP software version and build time
.br
.ns
.TP 10
.NOP \f\*[B-Font]processor\f[]
hardware platform and version
.br
.ns
.TP 10
.NOP \f\*[B-Font]system\f[]
operating system and version
.br
.ns
.TP 10
.NOP \f\*[B-Font]leap\f[]
leap warning indicator (0-3)
.br
.ns
.TP 10
.NOP \f\*[B-Font]stratum\f[]
stratum (1-15)
.br
.ns
.TP 10
.NOP \f\*[B-Font]precision\f[]
precision (log2 s)
.br
.ns
.TP 10
.NOP \f\*[B-Font]rootdelay\f[]
total roundtrip delay to the primary reference clock
.br
.ns
.TP 10
.NOP \f\*[B-Font]rootdisp\f[]
total dispersion to the primary reference clock
.br
.ns
.TP 10
.NOP \f\*[B-Font]refid\f[]
reference id or
.Lk decode.html#kiss "kiss code"
.br
.ns
.TP 10
.NOP \f\*[B-Font]reftime\f[]
reference time
.br
.ns
.TP 10
.NOP \f\*[B-Font]clock\f[]
date and time of day
.br
.ns
.TP 10
.NOP \f\*[B-Font]peer\f[]
system peer association id
.br
.ns
.TP 10
.NOP \f\*[B-Font]tc\f[]
time constant and poll exponent (log2 s) (3-17)
.br
.ns
.TP 10
.NOP \f\*[B-Font]mintc\f[]
minimum time constant (log2 s) (3-10)
.br
.ns
.TP 10
.NOP \f\*[B-Font]offset\f[]
combined offset of server relative to this host
.br
.ns
.TP 10
.NOP \f\*[B-Font]frequency\f[]
frequency drift (PPM) relative to hardware clock
.br
.ns
.TP 10
.NOP \f\*[B-Font]sys_jitter\f[]
combined system jitter
.br
.ns
.TP 10
.NOP \f\*[B-Font]clk_wander\f[]
clock frequency wander (PPM)
.br
.ns
.TP 10
.NOP \f\*[B-Font]clk_jitter\f[]
clock jitter
.br
.ns
.TP 10
.NOP \f\*[B-Font]tai\f[]
TAI-UTC offset (s)
.br
.ns
.TP 10
.NOP \f\*[B-Font]leapsec\f[]
NTP seconds when the next leap second is/was inserted
.br
.ns
.TP 10
.NOP \f\*[B-Font]expire\f[]
NTP seconds when the NIST leapseconds file expires
.PP
The jitter and wander statistics are exponentially-weighted RMS averages.
The system jitter is defined in the NTPv4 specification;
the clock jitter statistic is computed by the clock discipline module.
.sp \n(Ppu
.ne 2

When the NTPv4 daemon is compiled with the OpenSSL software library,
additional system variables are displayed,
including some or all of the following,
depending on the particular Autokey dance:
.TP 10
.NOP Variable
Description
.br
.ns
.TP 10
.NOP \f\*[B-Font]host\f[]
Autokey host name for this host
.br
.ns
.TP 10
.NOP \f\*[B-Font]ident\f[]
Autokey group name for this host
.br
.ns
.TP 10
.NOP \f\*[B-Font]flags\f[]
host flags  (see Autokey specification)
.br
.ns
.TP 10
.NOP \f\*[B-Font]digest\f[]
OpenSSL message digest algorithm
.br
.ns
.TP 10
.NOP \f\*[B-Font]signature\f[]
OpenSSL digest/signature scheme
.br
.ns
.TP 10
.NOP \f\*[B-Font]update\f[]
NTP seconds at last signature update
.br
.ns
.TP 10
.NOP \f\*[B-Font]cert\f[]
certificate subject, issuer and certificate flags
.br
.ns
.TP 10
.NOP \f\*[B-Font]until\f[]
NTP seconds when the certificate expires
.PP
.SS Peer Variables
The following peer variables appear in the
\f\*[B-Font]readlist\f[]
billboard for each association.
Not all variables are displayed in some configurations.
.sp \n(Ppu
.ne 2

.TP 10
.NOP Variable
Description
.br
.ns
.TP 10
.NOP \f\*[B-Font]associd\f[]
association id
.br
.ns
.TP 10
.NOP \f\*[B-Font]status\f[]
.Lk decode.html#peer "peer status word"
.br
.ns
.TP 10
.NOP \f\*[B-Font]srcadr\f[]
source (remote) IP address
.br
.ns
.TP 10
.NOP \f\*[B-Font]srcport\f[]
source (remote) port
.br
.ns
.TP 10
.NOP \f\*[B-Font]dstadr\f[]
destination (local) IP address
.br
.ns
.TP 10
.NOP \f\*[B-Font]dstport\f[]
destination (local) port
.br
.ns
.TP 10
.NOP \f\*[B-Font]leap\f[]
leap indicator (0-3)
.br
.ns
.TP 10
.NOP \f\*[B-Font]stratum\f[]
stratum (0-15)
.br
.ns
.TP 10
.NOP \f\*[B-Font]precision\f[]
precision (log2 s)
.br
.ns
.TP 10
.NOP \f\*[B-Font]rootdelay\f[]
total roundtrip delay to the primary reference clock
.br
.ns
.TP 10
.NOP \f\*[B-Font]rootdisp\f[]
total root dispersion to the primary reference clock
.br
.ns
.TP 10
.NOP \f\*[B-Font]refid\f[]
reference id or
.Lk decode.html#kiss "kiss code"
.br
.ns
.TP 10
.NOP \f\*[B-Font]reftime\f[]
reference time
.br
.ns
.TP 10
.NOP \f\*[B-Font]rec\f[]
last packet received time
.br
.ns
.TP 10
.NOP \f\*[B-Font]reach\f[]
reach register (octal)
.br
.ns
.TP 10
.NOP \f\*[B-Font]unreach\f[]
unreach counter
.br
.ns
.TP 10
.NOP \f\*[B-Font]hmode\f[]
host mode (1-6)
.br
.ns
.TP 10
.NOP \f\*[B-Font]pmode\f[]
peer mode (1-5)
.br
.ns
.TP 10
.NOP \f\*[B-Font]hpoll\f[]
host poll exponent (log2 s) (3-17)
.br
.ns
.TP 10
.NOP \f\*[B-Font]ppoll\f[]
peer poll exponent (log2 s) (3-17)
.br
.ns
.TP 10
.NOP \f\*[B-Font]headway\f[]
headway (see
.Lk rate.html "Rate Management and the Kiss-o'-Death Packet" )
.br
.ns
.TP 10
.NOP \f\*[B-Font]flash\f[]
.Lk decode.html#flash "flash status word"
.br
.ns
.TP 10
.NOP \f\*[B-Font]keyid\f[]
symmetric key id
.br
.ns
.TP 10
.NOP \f\*[B-Font]offset\f[]
filter offset
.br
.ns
.TP 10
.NOP \f\*[B-Font]delay\f[]
filter delay
.br
.ns
.TP 10
.NOP \f\*[B-Font]dispersion\f[]
filter dispersion
.br
.ns
.TP 10
.NOP \f\*[B-Font]jitter\f[]
filter jitter
.br
.ns
.TP 10
.NOP \f\*[B-Font]bias\f[]
unicast/broadcast bias
.br
.ns
.TP 10
.NOP \f\*[B-Font]xleave\f[]
interleave delay (see
.Lk xleave.html "NTP Interleaved Modes" )
.PP
The
\f\*[B-Font]bias\f[]
variable is calculated when the first broadcast packet is received
after the calibration volley.
It represents the offset of the broadcast subgraph relative to the
unicast subgraph.
The
\f\*[B-Font]xleave\f[]
variable appears only for the interleaved symmetric and interleaved modes.
It represents the internal queuing, buffering and transmission delays
for the preceding packet.
.sp \n(Ppu
.ne 2

When the NTPv4 daemon is compiled with the OpenSSL software library,
additional peer variables are displayed, including the following:
.TP 10
.NOP Variable
Description
.br
.ns
.TP 10
.NOP \f\*[B-Font]flags\f[]
peer flags (see Autokey specification)
.br
.ns
.TP 10
.NOP \f\*[B-Font]host\f[]
Autokey server name
.br
.ns
.TP 10
.NOP \f\*[B-Font]flags\f[]
peer flags (see Autokey specification)
.br
.ns
.TP 10
.NOP \f\*[B-Font]signature\f[]
OpenSSL digest/signature scheme
.br
.ns
.TP 10
.NOP \f\*[B-Font]initsequence\f[]
initial key id
.br
.ns
.TP 10
.NOP \f\*[B-Font]initkey\f[]
initial key index
.br
.ns
.TP 10
.NOP \f\*[B-Font]timestamp\f[]
Autokey signature timestamp
.br
.ns
.TP 10
.NOP \f\*[B-Font]ident\f[]
Autokey group name for this association
.PP
.SS Clock Variables
The following clock variables appear in the
\f\*[B-Font]clocklist\f[]
billboard for each association with a reference clock.
Not all variables are displayed in some configurations.
.TP 10
.NOP Variable
Description
.br
.ns
.TP 10
.NOP \f\*[B-Font]associd\f[]
association id
.br
.ns
.TP 10
.NOP \f\*[B-Font]status\f[]
.Lk decode.html#clock "clock status word"
.br
.ns
.TP 10
.NOP \f\*[B-Font]device\f[]
device description
.br
.ns
.TP 10
.NOP \f\*[B-Font]timecode\f[]
ASCII time code string (specific to device)
.br
.ns
.TP 10
.NOP \f\*[B-Font]poll\f[]
poll messages sent
.br
.ns
.TP 10
.NOP \f\*[B-Font]noreply\f[]
no reply
.br
.ns
.TP 10
.NOP \f\*[B-Font]badformat\f[]
bad format
.br
.ns
.TP 10
.NOP \f\*[B-Font]baddata\f[]
bad date or time
.br
.ns
.TP 10
.NOP \f\*[B-Font]fudgetime1\f[]
fudge time 1
.br
.ns
.TP 10
.NOP \f\*[B-Font]fudgetime2\f[]
fudge time 2
.br
.ns
.TP 10
.NOP \f\*[B-Font]stratum\f[]
driver stratum
.br
.ns
.TP 10
.NOP \f\*[B-Font]refid\f[]
driver reference id
.br
.ns
.TP 10
.NOP \f\*[B-Font]flags\f[]
driver flags
.PP
.SH "OPTIONS"
.TP
.NOP \f\*[B-Font]\-4\f[], \f\*[B-Font]\-\-ipv4\f[]
Force IPv4 name resolution.
This option must not appear in combination with any of the following options:
ipv6.
.sp
Force resolution of following host names on the command line
to the IPv4 namespace.
.TP
.NOP \f\*[B-Font]\-6\f[], \f\*[B-Font]\-\-ipv6\f[]
Force IPv6 name resolution.
This option must not appear in combination with any of the following options:
ipv4.
.sp
Force resolution of following host names on the command line
to the IPv6 namespace.
.TP
.NOP \f\*[B-Font]\-c\f[] \f\*[I-Font]cmd\f[], \f\*[B-Font]\-\-command\f[]=\f\*[I-Font]cmd\f[]
run a command and exit.
This option may appear an unlimited number of times.
.sp
The following argument is interpreted as an interactive format command
and is added to the list of commands to be executed on the specified
host(s).
.TP
.NOP \f\*[B-Font]\-d\f[], \f\*[B-Font]\-\-debug\-level\f[]
Increase debug verbosity level.
This option may appear an unlimited number of times.
.sp
.TP
.NOP \f\*[B-Font]\-D\f[] \f\*[I-Font]number\f[], \f\*[B-Font]\-\-set\-debug\-level\f[]=\f\*[I-Font]number\f[]
Set the debug verbosity level.
This option may appear an unlimited number of times.
This option takes an integer number as its argument.
.sp
.TP
.NOP \f\*[B-Font]\-i\f[], \f\*[B-Font]\-\-interactive\f[]
Force ntpq to operate in interactive mode.
This option must not appear in combination with any of the following options:
command, peers.
.sp
Force \fBntpq\fP to operate in interactive mode.
Prompts will be written to the standard output and
commands read from the standard input.
.TP
.NOP \f\*[B-Font]\-n\f[], \f\*[B-Font]\-\-numeric\f[]
numeric host addresses.
.sp
Output all host addresses in dotted-quad numeric format rather than
converting to the canonical host names.
.TP
.NOP \f\*[B-Font]\-\-old\-rv\f[]
Always output status line with readvar.
.sp
By default, \fBntpq\fP now suppresses the \fBassocid=...\fP
line that precedes the output of \fBreadvar\fP
(alias \fBrv\fP) when a single variable is requested, such as
\fBntpq \-c "rv 0 offset"\fP.
This option causes \fBntpq\fP to include both lines of output
for a single-variable \fBreadvar\fP.
Using an environment variable to
preset this option in a script will enable both older and
newer \fBntpq\fP to behave identically in this regard.
.TP
.NOP \f\*[B-Font]\-p\f[], \f\*[B-Font]\-\-peers\f[]
Print a list of the peers.
This option must not appear in combination with any of the following options:
interactive.
.sp
Print a list of the peers known to the server as well as a summary
of their state. This is equivalent to the 'peers' interactive command.
.TP
.NOP \f\*[B-Font]\-r\f[] \f\*[I-Font]keyword\f[], \f\*[B-Font]\-\-refid\f[]=\f\*[I-Font]keyword\f[]
Set default display type for S2+ refids.
This option takes a keyword as its argument.  The argument sets an enumeration value that can
be tested by comparing them against the option value macro.
The available keywords are:
.in +4
.nf
.na
hash ipv4
.fi
or their numeric equivalent.
.in -4
.sp
The default
\f\*[I-Font]keyword\f[]
for this option is:
.ti +4
 ipv4
.sp
Set the default display format for S2+ refids.
.TP
.NOP \f\*[B-Font]\-w\f[], \f\*[B-Font]\-\-wide\f[]
Display the full 'remote' value.
.sp
Display the full value of the 'remote' value.  If this requires
more than 15 characters, display the full value, emit a newline,
and continue the data display properly indented on the next line.
.TP
.NOP \f\*[B-Font]\-\&?\f[], \f\*[B-Font]\-\-help\f[]
Display usage information and exit.
.TP
.NOP \f\*[B-Font]\-\&!\f[], \f\*[B-Font]\-\-more-help\f[]
Pass the extended usage information through a pager.
.TP
.NOP \f\*[B-Font]\->\f[] [\f\*[I-Font]cfgfile\f[]], \f\*[B-Font]\-\-save-opts\f[] [=\f\*[I-Font]cfgfile\f[]]
Save the option state to \fIcfgfile\fP.  The default is the \fIlast\fP
configuration file listed in the \fBOPTION PRESETS\fP section, below.
The command will exit after updating the config file.
.TP
.NOP \f\*[B-Font]\-<\f[] \f\*[I-Font]cfgfile\f[], \f\*[B-Font]\-\-load-opts\f[]=\f\*[I-Font]cfgfile\f[], \f\*[B-Font]\-\-no-load-opts\f[]
Load options from \fIcfgfile\fP.
The \fIno-load-opts\fP form will disable the loading
of earlier config/rc/ini files.  \fI\-\-no-load-opts\fP is handled early,
out of order.
.TP
.NOP \f\*[B-Font]\-\-version\f[] [{\f\*[I-Font]v|c|n\f[]}]
Output version of program and exit.  The default mode is `v', a simple
version.  The `c' mode will print copyright information and `n' will
print the full copyright notice.
.PP
.SH "OPTION PRESETS"
Any option that is not marked as \fInot presettable\fP may be preset
by loading values from configuration ("RC" or ".INI") file(s) and values from
environment variables named:
.nf
  \fBNTPQ_<option-name>\fP or \fBNTPQ\fP
.fi
.ad
The environmental presets take precedence (are processed later than)
the configuration files.
The \fIhomerc\fP files are "\fI$HOME\fP", and "\fI.\fP".
If any of these are directories, then the file \fI.ntprc\fP
is searched for within those directories.
.SH "ENVIRONMENT"
See \fBOPTION PRESETS\fP for configuration environment variables.
.SH "FILES"
See \fBOPTION PRESETS\fP for configuration files.
.SH "EXIT STATUS"
One of the following exit values will be returned:
.TP
.NOP 0 " (EXIT_SUCCESS)"
Successful program execution.
.TP
.NOP 1 " (EXIT_FAILURE)"
The operation failed or the command syntax was not valid.
.TP
.NOP 66 " (EX_NOINPUT)"
A specified configuration file could not be loaded.
.TP
.NOP 70 " (EX_SOFTWARE)"
libopts had an internal operational error.  Please report
it to autogen-users@lists.sourceforge.net.  Thank you.
.PP
.SH "AUTHORS"
The University of Delaware and Network Time Foundation
.SH "COPYRIGHT"
Copyright (C) 1992-2017 The University of Delaware and Network Time Foundation all rights reserved.
This program is released under the terms of the NTP license, <http://ntp.org/license>.
.SH "BUGS"
Please send bug reports to: http://bugs.ntp.org, bugs@ntp.org
.SH "NOTES"
This manual page was \fIAutoGen\fP-erated from the \fBntpq\fP
option definitions.