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
|
'\" te
.\" Copyright (C) 2003, Sun Microsystems, Inc. All Rights Reserved.
.\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License.
.\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License.
.\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner]
.TH SLP.CONF 4 "Feb 18, 2003"
.SH NAME
slp.conf \- configuration file for Service Location Protocol agents
.SH SYNOPSIS
.LP
.nf
\fB/etc/inet/slp.conf\fR
.fi
.SH DESCRIPTION
.sp
.LP
\fBslp.conf \fR provides all Service Location Protocol ("\fBSLP\fR") agents
with their operational configuration. \fBslpd\fR(1M) reads \fBslp.conf\fR on
startup. Service Agents ("\fBSA\fRs") and User Agents ("\fBUA\fRs") read
\fBslp.conf\fR on invocation of the \fBSA\fR and \fBUA\fR library routines;
configuration parameters are then cached on a per-process basis. All \fBSA\fR's
must use the same set of properties as \fBslpd\fR on the local machine, since
\fBslpd\fR acts as an \fBSA\fR server.
.sp
.LP
The configuration file format consists of a newline-delimited list of zero or
more property definitions. Each property definition corresponds to a particular
configurable \fBSLP\fR, network, or other parameter in one or more of the three
\fBSLP\fR agents. The file format grammar is shown in \fIRFC 2234\fR as
follows:
.sp
.in +2
.nf
config-file = line-list
line-list = line / line line-list
line = property-line / comment-line
comment-line = ( "#" / ";" ) 1*allchar newline
property-line = property newline
property = tag "=" value-list
tag = prop / prop "." tag
prop = 1*tagchar
value-list = value / value "," value-list
value = int / bool /
"(" value-list ")" / string
int = 1*DIGIT
bool = "true" / "false" / "TRUE" / "FALSE"
newline = CR / ( CRLF )
string = 1*stringchar
tagchar = DIGIT / ALPHA / tother / escape
tother = %x21-%x2d / %x2f /
%x3a / %x3c-%x40 /
%x5b-%x60 / %7b-%7e
; i.e., all characters except `.',
; and `='.
stringchar = DIGIT / ALPHA / sother / escape
sother = %x21-%x29 / %x2a-%x2b /
%x2d-%x2f / %x3a-%x40 /
%x5b-%x60 / %7b-%7e
; i.e., all characters except `,'
allchar = DIGIT / ALPHA / HTAB / SP
escape = "\e" HEXDIG HEXDIG
; Used for reserved characters
.fi
.in -2
.sp
.LP
The properties fall into one of the following categories:
.RS +4
.TP
.ie t \(bu
.el o
\fBDA\fR Configuration
.RE
.RS +4
.TP
.ie t \(bu
.el o
Static Scope Configuration
.RE
.RS +4
.TP
.ie t \(bu
.el o
Tracing and Logging
.RE
.RS +4
.TP
.ie t \(bu
.el o
Serialized Proxy Registrations
.RE
.RS +4
.TP
.ie t \(bu
.el o
Networking Configuration Parameters
.RE
.RS +4
.TP
.ie t \(bu
.el o
\fBUA\fR Configuration
.RE
.SS "DA Configuration"
.sp
.LP
The following are configuration properties and their parameters for \fBDA\fRs:
.sp
.ne 2
.na
\fB\fBnet.slp.isDA\fR\fR
.ad
.RS 24n
.sp
.ne 2
.na
\fBSetting Type\fR
.ad
.RS 19n
Boolean
.RE
.sp
.ne 2
.na
\fBDefault Value\fR
.ad
.RS 19n
\fBFalse\fR
.RE
.sp
.ne 2
.na
\fBRange of Values\fR
.ad
.RS 19n
\fBTrue\fR or \fBFalse\fR
.RE
A boolean that indicates whether \fBslpd\fR(1M) is to act as a \fBDA\fR. If
\fBFalse\fR, \fBslpd\fR(1M) is not run as a \fBDA\fR.
.RE
.sp
.ne 2
.na
\fB\fBnet.slp.DAHeartBeat\fR\fR
.ad
.RS 24n
.sp
.ne 2
.na
\fBSetting Type\fR
.ad
.RS 19n
Integer
.RE
.sp
.ne 2
.na
\fBDefault Value\fR
.ad
.RS 19n
10800 seconds (3 hours)
.RE
.sp
.ne 2
.na
\fBRange of Values\fR
.ad
.RS 19n
2000 - 259200000 seconds
.RE
A 32-bit integer giving the number of seconds for the passive \fBDA\fR
advertisement heartbeat. The default value is 10800 seconds. This property is
ignored if \fBnet.slp.isDA\fR is \fBFalse\fR.
.RE
.sp
.ne 2
.na
\fB\fBnet.slp.DAAttributes\fR\fR
.ad
.RS 24n
.sp
.ne 2
.na
\fBSetting Type\fR
.ad
.RS 19n
List of Strings
.RE
.sp
.ne 2
.na
\fBDefault Value\fR
.ad
.RS 19n
Unassigned
.RE
.sp
.ne 2
.na
\fBRange of Values\fR
.ad
.RS 19n
List of Attribute Tag/Value List Pairs
.RE
A comma-separated list of parenthesized attribute tag/value list pairs that the
\fBDA\fR must advertise in \fBDA\fR advertisements. The property must be in
the \fBSLP\fR attribute list wire format, which requires that you use a
backslash ("\\") to escape reserved characters. See \fIRFC 2608\fR for more
information on reserved characters, or refer to the \fISystem Administration
Guide: Network Services\fR.
.RE
.SS "Static Scope Configuration"
.sp
.LP
The following properties and their parameters allow you to configure various
aspects of scope and \fBDA\fR handling:
.sp
.ne 2
.na
\fB\fBnet.slp.useScopes\fR\fR
.ad
.RS 23n
.sp
.ne 2
.na
\fBSetting Type\fR
.ad
.RS 19n
List of Strings
.RE
.sp
.ne 2
.na
\fBDefault Value\fR
.ad
.RS 19n
\fBDefault\fR, for \fBSA\fR and \fBDA\fR; unassigned for \fBUA\fR.
.RE
.sp
.ne 2
.na
\fBRange of Values\fR
.ad
.RS 19n
List of Strings
.RE
A list of strings indicating either the scopes that a \fBUA\fR or an \fBSA\fR
is allowed to use when making requests, or the scopes a \fBDA\fR must
support. If not present for the \fBDA\fR and \fBSA\fR, the default scope
\fBDefault\fR is used. If not present for the \fBUA\fR, then the user scoping
model is in force, in which active and passive \fBDA\fR or \fBSA\fR discovery
are used for scope discovery. The scope \fBDefault\fR is used if no other
information is available. If a \fBDA\fR or \fBSA\fR gets another scope in a
request, a \fBSCOPE_NOT_SUPPORTED\fR error is returned, unless the request was
multicast, in which case it is dropped. If a \fBDA\fR receives another scope in
a registration, a \fBSCOPE_NOT_SUPPORTED\fR error will be returned. Unlike
other properties, this property is "read-only", so attempts to change it
programmatically after the configuration file has been read are ignored.
.RE
.sp
.ne 2
.na
\fB\fBnet.slp.DAAddresses\fR\fR
.ad
.RS 23n
.sp
.ne 2
.na
\fBSetting Type\fR
.ad
.RS 19n
List of Strings
.RE
.sp
.ne 2
.na
\fBDefault Value\fR
.ad
.RS 19n
Unassigned
.RE
.sp
.ne 2
.na
\fBRange of Values\fR
.ad
.RS 19n
IPv4 addresses or host names
.RE
A list of \fBIP\fR addresses or \fBDNS\fR-resolvable names that denote
the \fBDA\fRs to use for statically configured \fBUA\fRs and \fBSA\fRs. The
property is read by \fBslpd\fR(1M), and registrations are forwarded to the
\fBDA\fRs. The \fBDA\fRs are provided to \fBUA\fRs upon request. Unlike other
properties, this property is "read-only", so attempts to change it after the
configuration file has been read are ignored.
.sp
The following grammar describes the property:
.sp
.in +2
.nf
addr-list = addr / addr "," addr-list
addr = fqdn / hostnumber
fqdn = ALPHA / ALPHA *[ anum / "-" ] anum
anum = ALPHA / DIGIT
hostnumber = 1*3DIGIT 3("." 1*3DIGIT)
.fi
.in -2
The following is an example using this grammar:
.sp
.in +2
.nf
sawah,mandi,sambal
.fi
.in -2
\fBIP\fR addresses can be used instead of host names in networks where
\fBDNS\fR is not deployed, but network administrators are reminded that using
\fBIP\fR addresses will complicate machine renumbering, since the \fBSLP\fR
configuration property files in statically configured networks will have to be
changed.
.RE
.SS "Tracing and Logging"
.sp
.LP
These properties direct tracing and logging information to be sent to
\fBsyslogd\fR at the \fBLOG_INFO\fR priority. These properties affect
\fBslpd\fR(1M) only.
.sp
.ne 2
.na
\fB\fBnet.slp.traceDATraffic\fR\fR
.ad
.RS 26n
.sp
.ne 2
.na
\fBSetting Type\fR
.ad
.RS 19n
Boolean
.RE
.sp
.ne 2
.na
\fBDefault Value\fR
.ad
.RS 19n
\fBFalse\fR
.RE
.sp
.ne 2
.na
\fBRange of Values\fR
.ad
.RS 19n
\fBTrue\fR or \fBFalse\fR
.RE
Set \fBnet.slp.traceDATraffic\fR to \fBTrue\fR to enable logging of \fBDA\fR
traffic by \fBslpd\fR.
.RE
.sp
.ne 2
.na
\fB\fBnet.slp.traceMsg\fR\fR
.ad
.RS 26n
.sp
.ne 2
.na
\fBSetting Type\fR
.ad
.RS 19n
Boolean
.RE
.sp
.ne 2
.na
\fBDefault Value\fR
.ad
.RS 19n
\fBFalse\fR
.RE
.sp
.ne 2
.na
\fBRange of Values\fR
.ad
.RS 19n
\fBTrue\fR or \fBFalse\fR
.RE
Set \fBnet.slp.traceMsg\fR to \fBTrue\fR to display details about \fBSLP\fR
messages. The fields in all incoming messages and outgoing replies are
printed by \fBslpd\fR.
.RE
.sp
.ne 2
.na
\fB\fBnet.slp.traceDrop\fR\fR
.ad
.RS 26n
.sp
.ne 2
.na
\fBSetting Type\fR
.ad
.RS 19n
Boolean
.RE
.sp
.ne 2
.na
\fBDefault Value\fR
.ad
.RS 19n
\fBFalse\fR
.RE
.sp
.ne 2
.na
\fBRange of Values\fR
.ad
.RS 19n
\fBTrue\fR or \fBFalse\fR
.RE
Set this property to \fBTrue\fR to display details when an \fBSLP\fRmessage is
dropped by \fBslpd\fR for any reason.
.RE
.sp
.ne 2
.na
\fB\fBnet.slp.traceReg\fR\fR
.ad
.RS 26n
.sp
.ne 2
.na
\fBSetting Type\fR
.ad
.RS 19n
Boolean
.RE
.sp
.ne 2
.na
\fBDefault Value\fR
.ad
.RS 19n
\fBFalse\fR
.RE
.sp
.ne 2
.na
\fBRange of Values\fR
.ad
.RS 19n
\fBTrue\fR or \fBFalse\fR
.RE
Set this property to \fBTrue\fR to display the table of service advertisements
when a registration or deregistration is processed by \fBslpd\fR.
.RE
.SS "Serialized Proxy Registrations"
.sp
.LP
The following properties control reading and writing serialized
registrations.
.sp
.ne 2
.na
\fB\fBnet.slp.serializedRegURL\fR\fR
.ad
.RS 28n
.sp
.ne 2
.na
\fBSetting Type\fR
.ad
.RS 19n
String
.RE
.sp
.ne 2
.na
\fBDefault Value\fR
.ad
.RS 19n
Unassigned
.RE
.sp
.ne 2
.na
\fBRange of Values\fR
.ad
.RS 19n
Valid \fBURL\fR
.RE
A string containing a \fBURL\fR pointing to a document, which contains
serialized registrations that should be processed when the \fBslpd\fR starts
up.
.RE
.SS "Networking Configuration Parameters"
.sp
.LP
The properties that follow allow you to set various network configuration
parameters:
.sp
.ne 2
.na
\fB\fBnet.slp.isBroadcastOnly\fR\fR
.ad
.sp .6
.RS 4n
.sp
.ne 2
.na
\fBSetting Type\fR
.ad
.RS 19n
Boolean
.RE
.sp
.ne 2
.na
\fBDefault Value\fR
.ad
.RS 19n
\fBFalse\fR
.RE
.sp
.ne 2
.na
\fBRange of Values\fR
.ad
.RS 19n
\fBTrue\fR or \fBFalse\fR
.RE
A boolean that indicates if broadcast should be used instead of multicast.
.RE
.sp
.ne 2
.na
\fB\fBnet.slp.multicastTTL\fR\fR
.ad
.sp .6
.RS 4n
.sp
.ne 2
.na
\fBSetting Type\fR
.ad
.RS 19n
Positive Integer
.RE
.sp
.ne 2
.na
\fBDefault Value\fR
.ad
.RS 19n
\fB255\fR
.RE
.sp
.ne 2
.na
\fBRange of Values\fR
.ad
.RS 19n
A positive integer from 1 to 255.
.RE
A positive integer less than or equal to 255 that defines the multicast
\fBTTL\fR.
.RE
.sp
.ne 2
.na
\fB\fBnet.slp.DAActiveDiscoveryInterval\fR\fR
.ad
.sp .6
.RS 4n
.sp
.ne 2
.na
\fBSetting Type\fR
.ad
.RS 19n
Integer
.RE
.sp
.ne 2
.na
\fBDefault Value\fR
.ad
.RS 19n
900 seconds (15 minutes)
.RE
.sp
.ne 2
.na
\fBRange of Values\fR
.ad
.RS 19n
From 300 to 10800 seconds
.RE
A 16-bit positive integer giving the number of seconds between \fBDA\fR active
discovery queries. The default value is 900 seconds (15 minutes). If the
property is set to zero, active discovery is turned off. This is useful when
the \fBDA\fRs available are explicitly restricted to those obtained from the
\fBnet.slp.DAAddresses\fR property.
.RE
.sp
.ne 2
.na
\fB\fBnet.slp.multicastMaximumWait\fR\fR
.ad
.sp .6
.RS 4n
.sp
.ne 2
.na
\fBSetting Type\fR
.ad
.RS 19n
Integer
.RE
.sp
.ne 2
.na
\fBDefault Value\fR
.ad
.RS 19n
15000 milliseconds (15 seconds)
.RE
.sp
.ne 2
.na
\fBRange of Values\fR
.ad
.RS 19n
1000 to 60000 milliseconds
.RE
A 32-bit integer giving the maximum value for the sum of the
\fBnet.slp.multicastTimeouts\fR values and \fBnet.slp.DADiscoveryTimeouts\fR
values in milliseconds.
.RE
.sp
.ne 2
.na
\fB\fBnet.slp.multicastTimeouts\fR\fR
.ad
.sp .6
.RS 4n
.sp
.ne 2
.na
\fBSetting Type\fR
.ad
.RS 19n
List of Integers
.RE
.sp
.ne 2
.na
\fBDefault Value\fR
.ad
.RS 19n
\fB3000,3000,3000,3000\fR
.RE
.sp
.ne 2
.na
\fBRange of Values\fR
.ad
.RS 19n
List of Positive Integers
.RE
A list of 32-bit integers used as timeouts, in milliseconds, to implement the
multicast convergence algorithm. Each value specifies the time to wait before
sending the next request, or until nothing new has been learned from two
successive requests. In a fast network the aggressive values of
\fB1000,1250,1500,2000,4000\fR allow better performance. The sum of the list
must equal \fBnet.slp.multicastMaximumWait\fR.
.RE
.sp
.ne 2
.na
\fB\fBnet.slp.passiveDADetection\fR\fR
.ad
.sp .6
.RS 4n
.sp
.ne 2
.na
\fBSetting Type\fR
.ad
.RS 19n
Boolean
.RE
.sp
.ne 2
.na
\fBDefault Value\fR
.ad
.RS 19n
\fBTrue\fR
.RE
.sp
.ne 2
.na
\fBRange of Values\fR
.ad
.RS 19n
\fBTrue\fR or \fBFalse\fR
.RE
A boolean indicating whether \fBslpd\fR should perform passive \fBDA\fR
detection.
.RE
.sp
.ne 2
.na
\fB\fBnet.slp.DADiscoveryTimeouts\fR\fR
.ad
.sp .6
.RS 4n
.sp
.ne 2
.na
\fBSetting Type\fR
.ad
.RS 19n
List of Integers.
.RE
.sp
.ne 2
.na
\fBDefault Value\fR
.ad
.RS 19n
\fB2000,2000,2000,2000,3000,4000\fR
.RE
.sp
.ne 2
.na
\fBRange of Values\fR
.ad
.RS 19n
List of Positive Integers
.RE
A list of 32-bit integers used as timeouts, in milliseconds, to implement the
multicast convergence algorithm during active \fBDA\fR discovery. Each value
specifies the time to wait before sending the next request, or until nothing
new has been learned from two successive requests. The sum of the list must
equal \fBnet.slp.multicastMaximumWait\fR.
.RE
.sp
.ne 2
.na
\fB\fBnet.slp.datagramTimeouts\fR\fR
.ad
.sp .6
.RS 4n
.sp
.ne 2
.na
\fBSetting Type\fR
.ad
.RS 19n
List of Integers
.RE
.sp
.ne 2
.na
\fBDefault Value\fR
.ad
.RS 19n
\fB3000,3000,3000\fR
.RE
.sp
.ne 2
.na
\fBRange of Values\fR
.ad
.RS 19n
List of Positive Integers
.RE
A list of 32-bit integers used as timeouts, in milliseconds, to implement
unicast datagram transmission to \fBDA\fRs. The \fIn\fRth value gives the time
to block waiting for a reply on the \fIn\fRth try to contact the \fBDA\fR.
.RE
.sp
.ne 2
.na
\fB\fBnet.slp.randomWaitBound\fR\fR
.ad
.sp .6
.RS 4n
.sp
.ne 2
.na
\fBSetting Type\fR
.ad
.RS 19n
Integer
.RE
.sp
.ne 2
.na
\fBDefault Value\fR
.ad
.RS 19n
1000 milliseconds (1 second)
.RE
.sp
.ne 2
.na
\fBRange of Values\fR
.ad
.RS 19n
1000 to 3000 milliseconds
.RE
Sets the upper bound for calculating the random wait time before attempting to
contact a \fBDA\fR.
.RE
.sp
.ne 2
.na
\fB\fBnet.slp.MTU\fR\fR
.ad
.sp .6
.RS 4n
.sp
.ne 2
.na
\fBSetting Type\fR
.ad
.RS 19n
Integer
.RE
.sp
.ne 2
.na
\fBDefault Value\fR
.ad
.RS 19n
1400
.RE
.sp
.ne 2
.na
\fBRange of Values\fR
.ad
.RS 19n
128 to 8192
.RE
A 16-bit integer that specifies the network packet size, in bytes. The packet
size includes \fBIP\fR and \fBTCP\fR or \fBUDP\fR headers.
.RE
.sp
.ne 2
.na
\fB\fBnet.slp.interfaces\fR\fR
.ad
.sp .6
.RS 4n
.sp
.ne 2
.na
\fBSetting Type\fR
.ad
.RS 19n
List of Strings
.RE
.sp
.ne 2
.na
\fBDefault Value\fR
.ad
.RS 19n
Default interface
.RE
.sp
.ne 2
.na
\fBRange of Values\fR
.ad
.RS 19n
IPv4 addresses or host names
.RE
List of strings giving the \fBIP\fR addresses or host names of the network
interface cards on which the \fBDA\fR or \fBSA\fR should listen on port 427 for
multicast, unicast \fBUDP\fR, and \fBTCP\fR messages. The default value is
unassigned, indicating that the default network interface card should be used.
An example is:
.sp
.in +2
.nf
195.42.42.42,195.42.142.1,195.42.120.1
.fi
.in -2
The example machine has three interfaces on which the \fBDA\fR should listen.
Note that if \fBIP\fR addresses are used, the property must be renumbered if
the network is renumbered.
.RE
.SS "UA Configuration"
.sp
.LP
The following configuration parameters apply to the \fBUA\fR:
.sp
.ne 2
.na
\fB\fBnet.slp.locale\fR\fR
.ad
.RS 22n
.sp
.ne 2
.na
\fBSetting Type\fR
.ad
.RS 19n
String
.RE
.sp
.ne 2
.na
\fBDefault Value\fR
.ad
.RS 19n
\fBen\fR
.RE
.sp
.ne 2
.na
\fBRange of Values\fR
.ad
.RS 19n
See \fIRFC 1766\fR for a list of the locale language tag names.
.RE
A \fIRFC 1766\fR Language Tag for the language locale. Setting this
property causes the property value to become the default locale for
\fBSLP\fR messages.
.RE
.sp
.ne 2
.na
\fB\fBnet.slp.maxResults\fR\fR
.ad
.RS 22n
.sp
.ne 2
.na
\fBSetting Type\fR
.ad
.RS 19n
Integer
.RE
.sp
.ne 2
.na
\fBDefault Value\fR
.ad
.RS 19n
\fB-1\fR
.RE
.sp
.ne 2
.na
\fBRange of Values\fR
.ad
.RS 19n
\fB-1\fR, positive integer
.RE
A 32 bit-integer that specifies the maximum number of results to accumulate and
return for a synchronous request before the timeout, or the maximum number of
results to return through a callback if the request results are reported
asynchronously. Positive integers and \fB-1\fR are legal values. If the value
of \fBnet.slp.maxResults\fR is \fB-1\fR, all results should be returned.
.RE
.sp
.ne 2
.na
\fB\fBnet.slp.typeHint\fR\fR
.ad
.RS 22n
.sp
.ne 2
.na
\fBSetting Type\fR
.ad
.RS 19n
List of Strings
.RE
.sp
.ne 2
.na
\fBDefault Value\fR
.ad
.RS 19n
Unassigned
.RE
.sp
.ne 2
.na
\fBRange of Values\fR
.ad
.RS 19n
Service type names
.RE
A list of service type names. In the absence of any \fBDA\fRs, \fBUA\fRs
perform \fBSA\fR discovery to find scopes. If the \fBnet.slp.typeHint\fR
property is set, only \fBSA\fR's advertising types on the list respond. Note
that \fBUA\fRs set this property programmatically. It is not typically set in
the configuration file. The default is unassigned, meaning do not restrict the
type.
.RE
.SH ATTRIBUTES
.sp
.LP
See \fBattributes\fR(5) for descriptions of the following attributes:
.sp
.sp
.TS
box;
c | c
l | l .
ATTRIBUTE TYPE ATTRIBUTE VALUE
_
CSI Enabled
_
Interface Stability Standard
.TE
.SH SEE ALSO
.sp
.LP
\fBslpd\fR(1M), \fBslpd.reg\fR(4), \fBslp_api\fR(3SLP), \fBslp\fR(7P)
.sp
.LP
\fISystem Administration Guide: Network Services\fR
.sp
.LP
Alvestrand, H. \fIRFC 1766: Tags for the Identification of Languages\fR.
Network Working Group. March 1995.
.sp
.LP
Crocker, D., Overell, P. \fIRFC 2234, Augmented BNF for Syntax Specifications:
ABNF\fR. The Internet Society. 1997.
.sp
.LP
Kempf, J. and Guttman, E. \fIRFC 2614, An API for Service Location\fR. The
Internet Society. June 1999.
|