- Timestamp:
- Dec 18, 2013, 1:04:00 AM (11 years ago)
- Children:
- f975b3a
- Parents:
- 1c9985f (diff), 8abef998 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Location:
- patches
- Files:
-
- 19 added
- 16 deleted
- 5 moved
Legend:
- Unmodified
- Added
- Removed
-
patches/coreutils-8.22-uname-1.patch
r1c9985f r026bb5d 10 10 Rediffed for 8.4 by Joe Ciccone 11 11 Rediffed for 8.9 by Joe Ciccone 12 Rediffed for 8.16 by Jonathan Norman - 2012-06-10 13 Rediffed for 8.19 by William Harrington - 2012-08-27 14 Renamed for 8.20 by William Harrington - 2012-11-01 15 Rediffed for 8.21 by William Harrington 2013-05-31 16 Renamed for 8.22 by William Harrington - 2013-12-14 12 17 13 --- coreutils-8.9.orig/src/uname.c 2010-01-01 08:06:47.000000000 -0500 14 +++ coreutils-8.9/src/uname.c 2010-07-26 20:44:24.389842706 -0400 15 @@ -50,6 +50,11 @@ 18 diff -Naur coreutils-8.21.orig/src/uname.c coreutils-8.21/src/uname.c 19 --- coreutils-8.21.orig/src/uname.c 2013-01-31 00:46:24.000000000 +0000 20 +++ coreutils-8.21/src/uname.c 2013-05-31 13:41:32.683326834 +0000 21 @@ -49,6 +49,11 @@ 16 22 # include <mach-o/arch.h> 17 23 #endif … … 25 31 #include "error.h" 26 32 #include "quote.h" 27 @@ -15 5,6 +160,117 @@33 @@ -153,6 +158,117 @@ 28 34 exit (status); 29 35 } … … 143 149 printed. */ 144 150 145 @@ -30 2,10 +418,14 @@151 @@ -300,10 +416,14 @@ 146 152 if (toprint & PRINT_PROCESSOR) 147 153 { … … 159 165 } 160 166 #endif 161 @@ -35 8,9 +478,13 @@167 @@ -356,9 +476,13 @@ 162 168 if (element == unknown) 163 169 { -
patches/iputils-s20121221-fixes-1.patch
r1c9985f r026bb5d 1 Submitted By: Joe Ciccone <jciccone@gmail.com>2 Date: 201 1-01-083 Initial Package Version: s201 004181 Submitted By: William Harrington <kb0iic at cross-lfs dot org> 2 Date: 2013-08-06 3 Initial Package Version: s20121221 4 4 Upstream Status: Unknown 5 5 Origin: Unknown 6 Description: Contains Pregenerated Documentation6 Description: Contains Fixes for Various Issues and Manpages 7 7 8 9 diff -Naur iputils-s20101006.orig/doc/arping.8 iputils-s20101006/doc/arping.8 10 --- iputils-s20101006.orig/doc/arping.8 1969-12-31 19:00:00.000000000 -0500 11 +++ iputils-s20101006/doc/arping.8 2011-01-08 20:09:50.402928174 -0500 12 @@ -0,0 +1,110 @@ 8 diff -Naur iputils-s20121221.orig/Makefile iputils-s20121221/Makefile 9 --- iputils-s20121221.orig/Makefile 2012-12-21 14:01:07.000000000 +0000 10 +++ iputils-s20121221/Makefile 2013-08-06 18:09:09.448346619 +0000 11 @@ -2,8 +2,6 @@ 12 # Configuration 13 # 14 15 -# CC 16 -CC=gcc 17 # Path to parent kernel include files directory 18 LIBC_INCLUDE=/usr/include 19 # Libraries 20 @@ -36,7 +34,7 @@ 21 22 # GNU TLS library for ping6 [yes|no|static] 23 USE_GNUTLS=yes 24 -# Crypto library for ping6 [shared|static] 25 +# Crypto library for ping6 [shared|static|no] 26 USE_CRYPTO=shared 27 # Resolv library for ping6 [yes|static] 28 USE_RESOLV=yes 29 @@ -48,11 +46,10 @@ 30 31 # ------------------------------------- 32 # What a pity, all new gccs are buggy and -Werror does not work. Sigh. 33 -# CCOPT=-fno-strict-aliasing -Wstrict-prototypes -Wall -Werror -g 34 -CCOPT=-fno-strict-aliasing -Wstrict-prototypes -Wall -g 35 -CCOPTOPT=-O3 36 -GLIBCFIX=-D_GNU_SOURCE 37 -DEFINES= 38 +# CFLAGS+=-fno-strict-aliasing -Wstrict-prototypes -Wall -Werror -g 39 +CFLAGS?=-O3 -g 40 +CFLAGS+=-fno-strict-aliasing -Wstrict-prototypes -Wall 41 +CPPFLAGS+=-D_GNU_SOURCE 42 LDLIB= 43 44 FUNC_LIB = $(if $(filter static,$(1)),$(LDFLAG_STATIC) $(2) $(LDFLAG_DYNAMIC),$(2)) 45 @@ -63,7 +60,10 @@ 46 LIB_CRYPTO = $(call FUNC_LIB,$(USE_GNUTLS),$(LDFLAG_GNUTLS)) 47 DEF_CRYPTO = -DUSE_GNUTLS 48 else 49 +ifneq ($(USE_CRYPTO),no) 50 LIB_CRYPTO = $(call FUNC_LIB,$(USE_CRYPTO),$(LDFLAG_CRYPTO)) 51 + DEF_CRYPTO = -DUSE_OPENSSL 52 +endif 53 endif 54 55 # USE_RESOLV: LIB_RESOLV 56 @@ -110,7 +110,6 @@ 57 IPV6_TARGETS=tracepath6 traceroute6 ping6 58 TARGETS=$(IPV4_TARGETS) $(IPV6_TARGETS) 59 60 -CFLAGS=$(CCOPTOPT) $(CCOPT) $(GLIBCFIX) $(DEFINES) 61 LDLIBS=$(LDLIB) $(ADDLIB) 62 63 UNAME_N:=$(shell uname -n) 64 @@ -129,6 +128,7 @@ 65 $(COMPILE.c) $< $(DEF_$(patsubst %.o,%,$@)) -S -o $@ 66 %.o: %.c 67 $(COMPILE.c) $< $(DEF_$(patsubst %.o,%,$@)) -o $@ 68 +LINK.o += $(CFLAGS) 69 $(TARGETS): %: %.o 70 $(LINK.o) $^ $(LIB_$@) $(LDLIBS) -o $@ 71 72 @@ -149,7 +149,7 @@ 73 DEF_ping_common = $(DEF_CAP) $(DEF_IDN) 74 DEF_ping = $(DEF_CAP) $(DEF_IDN) $(DEF_WITHOUT_IFADDRS) 75 LIB_ping = $(LIB_CAP) $(LIB_IDN) 76 -DEF_ping6 = $(DEF_CAP) $(DEF_IDN) $(DEF_WITHOUT_IFADDRS) $(DEF_ENABLE_PING6_RTHDR) 77 +DEF_ping6 = $(DEF_CAP) $(DEF_IDN) $(DEF_WITHOUT_IFADDRS) $(DEF_ENABLE_PING6_RTHDR) $(DEF_CRYPTO) 78 LIB_ping6 = $(LIB_CAP) $(LIB_IDN) $(LIB_RESOLV) $(LIB_CRYPTO) 79 80 ping: ping_common.o 81 diff -Naur iputils-s20121221.orig/doc/arping.8 iputils-s20121221/doc/arping.8 82 --- iputils-s20121221.orig/doc/arping.8 1970-01-01 00:00:00.000000000 +0000 83 +++ iputils-s20121221/doc/arping.8 2013-01-04 10:38:27.000000000 +0000 84 @@ -0,0 +1,109 @@ 13 85 +.\" This manpage has been automatically generated by docbook2man 14 86 +.\" from a DocBook document. This tool can be found at: … … 16 88 +.\" Please send any bug reports, improvements, comments, patches, 17 89 +.\" etc. to Steve Cheng <steve@ggi-project.org>. 18 +.TH "ARPING" "8" "0 8 January 2011" "iputils-101006" "System Manager's Manual: iputils"90 +.TH "ARPING" "8" "04 January 2013" "iputils-121221" "System Manager's Manual: iputils" 19 91 +.SH NAME 20 92 +arping \- send ARP REQUEST to a neighbour host … … 53 125 +.TP 54 126 +\fB-I \fIinterface\fB\fR 55 +Name of network device where to send ARP REQUEST packets. This option 56 +is required. 127 +Name of network device where to send ARP REQUEST packets. 57 128 +.TP 58 129 +\fB-h\fR … … 113 184 +.SH "SECURITY" 114 185 +.PP 115 +\fBarping\fR requires CAP_NET_RAW IOcapability186 +\fBarping\fR requires CAP_NET_RAW capability 116 187 +to be executed. It is not recommended to be used as set-uid root, 117 188 +because it allows user to modify ARP caches of neighbour hosts. … … 121 192 +and the latest versions are available in source form at 122 193 +http://www.skbuff.net/iputils/iputils-current.tar.bz2. 123 diff -Naur iputils-s201 01006.orig/doc/clockdiff.8 iputils-s20101006/doc/clockdiff.8124 --- iputils-s201 01006.orig/doc/clockdiff.8 1969-12-31 19:00:00.000000000 -0500125 +++ iputils-s201 01006/doc/clockdiff.8 2011-01-08 20:09:50.611280874 -0500194 diff -Naur iputils-s20121221.orig/doc/clockdiff.8 iputils-s20121221/doc/clockdiff.8 195 --- iputils-s20121221.orig/doc/clockdiff.8 1970-01-01 00:00:00.000000000 +0000 196 +++ iputils-s20121221/doc/clockdiff.8 2013-01-04 10:38:27.000000000 +0000 126 197 @@ -0,0 +1,81 @@ 127 198 +.\" This manpage has been automatically generated by docbook2man … … 130 201 +.\" Please send any bug reports, improvements, comments, patches, 131 202 +.\" etc. to Steve Cheng <steve@ggi-project.org>. 132 +.TH "CLOCKDIFF" "8" "0 8 January 2011" "iputils-101006" "System Manager's Manual: iputils"203 +.TH "CLOCKDIFF" "8" "04 January 2013" "iputils-121221" "System Manager's Manual: iputils" 133 204 +.SH NAME 134 205 +clockdiff \- measure clock difference between hosts … … 199 270 +.SH "SECURITY" 200 271 +.PP 201 +\fBclockdiff\fR requires CAP_NET_RAW IOcapability272 +\fBclockdiff\fR requires CAP_NET_RAW capability 202 273 +to be executed. It is safe to be used as set-uid root. 203 274 +.SH "AVAILABILITY" … … 206 277 +and the latest versions are available in source form at 207 278 +http://www.skbuff.net/iputils/iputils-current.tar.bz2. 208 diff -Naur iputils-s201 01006.orig/doc/index.html iputils-s20101006/doc/index.html209 --- iputils-s201 01006.orig/doc/index.html 1969-12-31 19:00:00.000000000 -0500210 +++ iputils-s201 01006/doc/index.html 2011-01-08 20:09:49.631531431 -0500211 @@ -0,0 +1,17 0@@212 +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">279 diff -Naur iputils-s20121221.orig/doc/index.html iputils-s20121221/doc/index.html 280 --- iputils-s20121221.orig/doc/index.html 1970-01-01 00:00:00.000000000 +0000 281 +++ iputils-s20121221/doc/index.html 2013-01-04 10:38:35.000000000 +0000 282 @@ -0,0 +1,175 @@ 283 +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 213 284 +<HTML 214 285 +><HEAD … … 285 356 +><DT 286 357 +><A 287 +HREF="r4 37.html"358 +HREF="r466.html" 288 359 +>arping</A 289 360 +> -- send ARP REQUEST to a neighbour host</DT 290 361 +><DT 291 362 +><A 292 +HREF="r 596.html"363 +HREF="r625.html" 293 364 +>clockdiff</A 294 365 +> -- measure clock difference between hosts</DT 295 366 +><DT 296 367 +><A 297 +HREF="r 691.html"368 +HREF="r720.html" 298 369 +>rarpd</A 299 370 +> -- answer RARP REQUESTs</DT 300 371 +><DT 301 372 +><A 302 +HREF="r 790.html"373 +HREF="r819.html" 303 374 +>tracepath</A 304 375 +> -- traces path to a network host discovering MTU along this path</DT 305 376 +><DT 306 377 +><A 307 +HREF="r 884.html"378 +HREF="r918.html" 308 379 +>traceroute6</A 309 380 +> -- traces path to a network host</DT 310 381 +><DT 311 382 +><A 312 +HREF="r9 49.html"383 +HREF="r983.html" 313 384 +>tftpd</A 314 385 +> -- Trivial File Transfer Protocol server</DT 315 386 +><DT 316 387 +><A 317 +HREF="r1022.html" 388 +HREF="r1056.html" 389 +>ninfod</A 390 +> -- Respond to IPv6 Node Information Queries</DT 391 +><DT 392 +><A 393 +HREF="r1125.html" 318 394 +>rdisc</A 319 395 +> -- network router discovery daemon</DT 320 396 +><DT 321 397 +><A 322 +HREF="r1 144.html"398 +HREF="r1269.html" 323 399 +>pg3</A 324 400 +> -- send stream of UDP packets</DT … … 381 457 +> 382 458 \ No newline at end of file 383 diff -Naur iputils-s201 01006.orig/doc/iputils.html iputils-s20101006/doc/iputils.html384 --- iputils-s201 01006.orig/doc/iputils.html 1969-12-31 19:00:00.000000000 -0500385 +++ iputils-s201 01006/doc/iputils.html 2011-01-08 20:09:50.282802377 -0500459 diff -Naur iputils-s20121221.orig/doc/iputils.html iputils-s20121221/doc/iputils.html 460 --- iputils-s20121221.orig/doc/iputils.html 1970-01-01 00:00:00.000000000 +0000 461 +++ iputils-s20121221/doc/iputils.html 2013-01-04 10:38:35.000000000 +0000 386 462 @@ -0,0 +1,491 @@ 387 +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">463 +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 388 464 +<HTML 389 465 +><HEAD … … 877 953 +> 878 954 \ No newline at end of file 879 diff -Naur iputils-s20101006.orig/doc/pg3.8 iputils-s20101006/doc/pg3.8 880 --- iputils-s20101006.orig/doc/pg3.8 1969-12-31 19:00:00.000000000 -0500 881 +++ iputils-s20101006/doc/pg3.8 2011-01-08 20:09:50.890656148 -0500 955 diff -Naur iputils-s20121221.orig/doc/ninfod.8 iputils-s20121221/doc/ninfod.8 956 --- iputils-s20121221.orig/doc/ninfod.8 1970-01-01 00:00:00.000000000 +0000 957 +++ iputils-s20121221/doc/ninfod.8 2013-01-04 10:38:27.000000000 +0000 958 @@ -0,0 +1,72 @@ 959 +.\" This manpage has been automatically generated by docbook2man 960 +.\" from a DocBook document. This tool can be found at: 961 +.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/> 962 +.\" Please send any bug reports, improvements, comments, patches, 963 +.\" etc. to Steve Cheng <steve@ggi-project.org>. 964 +.TH "NINFOD" "8" "04 January 2013" "iputils-121221" "System Manager's Manual: iputils" 965 +.SH NAME 966 +ninfod \- Respond to IPv6 Node Information Queries 967 +.SH SYNOPSIS 968 + 969 +\fBninfod\fR [\fB-dhv\fR] [\fB-p \fIpidfile\fB\fR] [\fB-u \fIuser\fB\fR] 970 + 971 +.SH "DESCRIPTION" 972 +.PP 973 +Responds to IPv6 Node Information Queries (RFC4620) from clients. 974 +Queries can be sent by various implementations of \fBping6\fR command. 975 +.SH "OPTIONS" 976 +.TP 977 +\fB-a\fR 978 +Debug mode. Do not go background. 979 +.TP 980 +\fB-h\fR 981 +Show help. 982 +.TP 983 +\fB-v\fR 984 +Verbose mode. 985 +.TP 986 +\fB-u \fIuser\fB\fR 987 +Run as another user. 988 +\fIuser\fR can either be username or user ID. 989 +.TP 990 +\fB-p \fIpidfile\fB\fR 991 +File for process-id storage. 992 +\fIuser\fR is required to be able to create the file. 993 +.SH "SEE ALSO" 994 +.PP 995 +\fBping\fR(8). 996 +.SH "AUTHOR" 997 +.PP 998 +\fBninfod\fR was written by USAGI/WIDE Project. 999 +.SH "COPYING" 1000 +.PP 1001 + 1002 +.nf 1003 +Copyright (C) 2012 YOSHIFUJI Hideaki. 1004 +Copyright (C) 2002 USAGI/WIDE Project. 1005 +All rights reserved. 1006 + 1007 +Redistribution and use in source and binary forms, with or without 1008 +modification, are permitted provided that the following conditions 1009 +are met: 1010 +1. Redistributions of source code must retain the above copyright 1011 + notice, this list of conditions and the following disclaimer. 1012 +2. Redistributions in binary form must reproduce the above copyright 1013 + notice, this list of conditions and the following disclaimer in the 1014 + documentation and/or other materials provided with the distribution. 1015 +3. Neither the name of the project nor the names of its contributors 1016 + may be used to endorse or promote products derived from this software 1017 + without specific prior written permission. 1018 + 1019 +THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND 1020 +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 1021 +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 1022 +ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE 1023 +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 1024 +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 1025 +OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 1026 +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 1027 +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 1028 +OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 1029 +SUCH DAMAGE. 1030 +.fi 1031 diff -Naur iputils-s20121221.orig/doc/pg3.8 iputils-s20121221/doc/pg3.8 1032 --- iputils-s20121221.orig/doc/pg3.8 1970-01-01 00:00:00.000000000 +0000 1033 +++ iputils-s20121221/doc/pg3.8 2013-01-04 10:38:27.000000000 +0000 882 1034 @@ -0,0 +1,86 @@ 883 1035 +.\" This manpage has been automatically generated by docbook2man … … 886 1038 +.\" Please send any bug reports, improvements, comments, patches, 887 1039 +.\" etc. to Steve Cheng <steve@ggi-project.org>. 888 +.TH "PG3" "8" "0 8 January 2011" "iputils-101006" "System Manager's Manual: iputils"1040 +.TH "PG3" "8" "04 January 2013" "iputils-121221" "System Manager's Manual: iputils" 889 1041 +.SH NAME 890 1042 +pg3, ipg, pgset \- send stream of UDP packets … … 967 1119 +and the latest versions are available in source form at 968 1120 +http://www.skbuff.net/iputils/iputils-current.tar.bz2. 969 diff -Naur iputils-s201 01006.orig/doc/ping.8 iputils-s20101006/doc/ping.8970 --- iputils-s201 01006.orig/doc/ping.8 1969-12-31 19:00:00.000000000 -0500971 +++ iputils-s201 01006/doc/ping.8 2011-01-08 20:09:50.986782167 -0500972 @@ -0,0 +1,4 08 @@1121 diff -Naur iputils-s20121221.orig/doc/ping.8 iputils-s20121221/doc/ping.8 1122 --- iputils-s20121221.orig/doc/ping.8 1970-01-01 00:00:00.000000000 +0000 1123 +++ iputils-s20121221/doc/ping.8 2013-01-04 10:38:27.000000000 +0000 1124 @@ -0,0 +1,428 @@ 973 1125 +.\" This manpage has been automatically generated by docbook2man 974 1126 +.\" from a DocBook document. This tool can be found at: … … 976 1128 +.\" Please send any bug reports, improvements, comments, patches, 977 1129 +.\" etc. to Steve Cheng <steve@ggi-project.org>. 978 +.TH "PING" "8" "0 8 January 2011" "iputils-101006" "System Manager's Manual: iputils"1130 +.TH "PING" "8" "04 January 2013" "iputils-121221" "System Manager's Manual: iputils" 979 1131 +.SH NAME 980 1132 +ping, ping6 \- send ICMP ECHO_REQUEST to network hosts 981 1133 +.SH SYNOPSIS 982 1134 + 983 +\fBping\fR [\fB- LRUbdfnqrvVaAB\fR] [\fB-c \fIcount\fB\fR] [\fB-m \fImark\fB\fR] [\fB-i \fIinterval\fB\fR] [\fB-l \fIpreload\fB\fR] [\fB-p \fIpattern\fB\fR] [\fB-s \fIpacketsize\fB\fR] [\fB-t \fIttl\fB\fR] [\fB-w \fIdeadline\fB\fR] [\fB-F \fIflowlabel\fB\fR] [\fB-I \fIinterface\fB\fR] [\fB-M \fIhint\fB\fR] [\fB-N \fInioption\fB\fR] [\fB-Q \fItos\fB\fR] [\fB-S \fIsndbuf\fB\fR] [\fB-T \fItimestamp option\fB\fR] [\fB-W \fItimeout\fB\fR] [\fB\fIhop\fB\fR\fI ...\fR] \fB\fIdestination\fB\fR1135 +\fBping\fR [\fB-aAbBdDfhLnOqrRUvV\fR] [\fB-c \fIcount\fB\fR] [\fB-F \fIflowlabel\fB\fR] [\fB-i \fIinterval\fB\fR] [\fB-I \fIinterface\fB\fR] [\fB-l \fIpreload\fB\fR] [\fB-m \fImark\fB\fR] [\fB-M \fIpmtudisc_option\fB\fR] [\fB-N \fInodeinfo_option\fB\fR] [\fB-w \fIdeadline\fB\fR] [\fB-W \fItimeout\fB\fR] [\fB-p \fIpattern\fB\fR] [\fB-Q \fItos\fB\fR] [\fB-s \fIpacketsize\fB\fR] [\fB-S \fIsndbuf\fB\fR] [\fB-t \fIttl\fB\fR] [\fB-T \fItimestamp option\fB\fR] [\fB\fIhop\fB\fR\fI ...\fR] \fB\fIdestination\fB\fR 984 1136 + 985 1137 +.SH "DESCRIPTION" … … 991 1143 +number of ``pad'' bytes used to fill out the packet. 992 1144 +.PP 993 +\fBping6\fR can also send Node Information Queries (RFC4620). 1145 +\fBping6\fR is IPv6 version of \fBping\fR, and can also send Node Information Queries (RFC4620). 1146 +Intermediate \fIhop\fRs may not be allowed, because IPv6 source routing was deprecated (RFC5095). 994 1147 +.SH "OPTIONS" 995 1148 +.TP … … 999 1152 +\fB-A\fR 1000 1153 +Adaptive ping. Interpacket interval adapts to round-trip time, so that 1001 +effectively not more than one (or more, if preload is set) unanswered probe s1002 + present in the network. Minimal interval is 200msec for not super-user.1154 +effectively not more than one (or more, if preload is set) unanswered probe 1155 +is present in the network. Minimal interval is 200msec for not super-user. 1003 1156 +On networks with low rtt this mode is essentially equivalent to flood mode. 1004 1157 +.TP … … 1009 1162 +Do not allow \fBping\fR to change source address of probes. 1010 1163 +The address is bound to one selected when \fBping\fR starts. 1011 +.TP1012 +\fB-m \fImark\fB\fR1013 +use \fImark\fR to tag the packets going out. This is useful1014 +for variety of reasons within the kernel such as using policy1015 +routing to select specific outbound processing.1016 1164 +.TP 1017 1165 +\fB-c \fIcount\fB\fR … … 1026 1174 +Essentially, this socket option is not used by Linux kernel. 1027 1175 +.TP 1028 +\fB- F \fIflow label\fB\fR1029 + Allocate and set 20 bit flow label on echo request packets.1030 + (Only \fBping6\fR). If value is zero, kernel allocates random flow label.1176 +\fB-D\fR 1177 +Print timestamp (unix time + microseconds as in gettimeofday) before 1178 +each line. 1031 1179 +.TP 1032 1180 +\fB-f\fR … … 1039 1187 +Only the super-user may use this option with zero interval. 1040 1188 +.TP 1189 +\fB-F \fIflow label\fB\fR 1190 +\fBping6\fR only. 1191 +Allocate and set 20 bit flow label (in hex) on echo request packets. 1192 +If value is zero, kernel allocates random flow label. 1193 +.TP 1194 +\fB-h\fR 1195 +Show help. 1196 +.TP 1041 1197 +\fB-i \fIinterval\fB\fR 1042 1198 +Wait \fIinterval\fR seconds between sending each packet. … … 1045 1201 +to values less 0.2 seconds. 1046 1202 +.TP 1047 +\fB-I \fIinterface address\fB\fR 1048 +Set source address to specified interface address. Argument 1049 +may be numeric IP address or name of device. When pinging IPv6 1050 +link-local address this option is required. 1203 +\fB-I \fIinterface\fB\fR 1204 +\fIinterface\fR is either an address, or an interface name. 1205 +If \fIinterface\fR is an address, it sets source address 1206 +to specified interface address. 1207 +If \fIinterface\fR in an interface name, it sets 1208 +source interface to specified interface. 1209 +For \fBping6\fR, when doing ping to a link-local scope 1210 +address, link specification (by the '%'-notation in 1211 +\fIdestination\fR, or by this option) is required. 1051 1212 +.TP 1052 1213 +\fB-l \fIpreload\fB\fR … … 1059 1220 +destination is a multicast address. 1060 1221 +.TP 1061 +\fB-N \fInioption\fB\fR 1222 +\fB-m \fImark\fB\fR 1223 +use \fImark\fR to tag the packets going out. This is useful 1224 +for variety of reasons within the kernel such as using policy 1225 +routing to select specific outbound processing. 1226 +.TP 1227 +\fB-M \fIpmtudisc_opt\fB\fR 1228 +Select Path MTU Discovery strategy. 1229 +\fIpmtudisc_option\fR may be either \fIdo\fR 1230 +(prohibit fragmentation, even local one), 1231 +\fIwant\fR (do PMTU discovery, fragment locally when packet size 1232 +is large), or \fIdont\fR (do not set DF flag). 1233 +.TP 1234 +\fB-N \fInodeinfo_option\fB\fR 1235 +\fBping6\fR only. 1062 1236 +Send ICMPv6 Node Information Queries (RFC4620), instead of Echo Request. 1237 +.RS 1238 +.TP 1239 +\fBhelp\fR 1240 +Show help for NI support. 1241 +.RE 1063 1242 +.RS 1064 1243 +.TP … … 1128 1307 +No attempt will be made to lookup symbolic names for host addresses. 1129 1308 +.TP 1309 +\fB-O\fR 1310 +Report outstanding ICMP ECHO reply before sending next packet. 1311 +This is useful together with the timestamp \fB-D\fR to 1312 +log output to a diagnostic file and search for missing answers. 1313 +.TP 1130 1314 +\fB-p \fIpattern\fB\fR 1131 1315 +You may specify up to 16 ``pad'' bytes to fill out the packet you send. … … 1134 1318 +to be filled with all ones. 1135 1319 +.TP 1136 +\fB-D\fR1137 +Print timestamp (unix time + microseconds as in gettimeofday) before1138 +each line.1139 +.TP1140 +\fB-Q \fItos\fB\fR1141 +Set Quality of Service -related bits in ICMP datagrams.1142 +\fItos\fR can be either decimal or hex number.1143 +Traditionally (RFC1349), these have been interpreted as: 0 for reserved1144 +(currently being redefined as congestion control), 1-4 for Type of Service1145 +and 5-7 for Precedence.1146 +Possible settings for Type of Service are: minimal cost: 0x02,1147 +reliability: 0x04, throughput: 0x08, low delay: 0x10. Multiple TOS bits1148 +should not be set simultaneously. Possible settings for1149 +special Precedence range from priority (0x20) to net control (0xe0). You1150 +must be root (CAP_NET_ADMIN capability) to use Critical or1151 +higher precedence value. You cannot set1152 +bit 0x01 (reserved) unless ECN has been enabled in the kernel.1153 +In RFC2474, these fields has been redefined as 8-bit Differentiated1154 +Services (DS), consisting of: bits 0-1 of separate data (ECN will be used,1155 +here), and bits 2-7 of Differentiated Services Codepoint (DSCP).1156 +.TP1157 1320 +\fB-q\fR 1158 1321 +Quiet output. … … 1160 1323 +when finished. 1161 1324 +.TP 1162 +\fB-R\fR 1163 +Record route. 1164 +Includes the RECORD_ROUTE option in the ECHO_REQUEST 1165 +packet and displays the route buffer on returned packets. 1166 +Note that the IP header is only large enough for nine such routes. 1167 +Many hosts ignore or discard this option. 1325 +\fB-Q \fItos\fB\fR 1326 +Set Quality of Service -related bits in ICMP datagrams. 1327 +\fItos\fR can be decimal (\fBping\fR only) or hex number. 1328 + 1329 +In RFC2474, these fields are interpreted as 8-bit Differentiated 1330 +Services (DS), consisting of: bits 0-1 (2 lowest bits) of separate 1331 +data, and bits 2-7 (highest 6 bits) of Differentiated Services 1332 +Codepoint (DSCP). In RFC2481 and RFC3168, bits 0-1 are used for ECN. 1333 + 1334 +Historically (RFC1349, obsoleted by RFC2474), these were interpreted 1335 +as: bit 0 (lowest bit) for reserved (currently being redefined as 1336 +congestion control), 1-4 for Type of Service and bits 5-7 1337 +(highest bits) for Precedence. 1168 1338 +.TP 1169 1339 +\fB-r\fR … … 1175 1345 +used. 1176 1346 +.TP 1347 +\fB-R\fR 1348 +\fBping\fR only. 1349 +Record route. 1350 +Includes the RECORD_ROUTE option in the ECHO_REQUEST 1351 +packet and displays the route buffer on returned packets. 1352 +Note that the IP header is only large enough for nine such routes. 1353 +Many hosts ignore or discard this option. 1354 +.TP 1177 1355 +\fB-s \fIpacketsize\fB\fR 1178 1356 +Specifies the number of data bytes to be sent. … … 1185 1363 +.TP 1186 1364 +\fB-t \fIttl\fB\fR 1365 +\fBping\fR only. 1187 1366 +Set the IP Time to Live. 1188 1367 +.TP … … 1194 1373 +\fItsprespec host1 [host2 [host3 [host4]]]\fR 1195 1374 +(timestamp prespecified hops). 1196 +.TP1197 +\fB-M \fIhint\fB\fR1198 +Select Path MTU Discovery strategy.1199 +\fIhint\fR may be either \fIdo\fR1200 +(prohibit fragmentation, even local one),1201 +\fIwant\fR (do PMTU discovery, fragment locally when packet size1202 +is large), or \fIdont\fR (do not set DF flag).1203 1375 +.TP 1204 1376 +\fB-U\fR … … 1230 1402 +\fB-W \fItimeout\fB\fR 1231 1403 +Time to wait for a response, in seconds. The option affects only timeout 1232 +in absen se of any responses, otherwise \fBping\fR waits for two RTTs.1404 +in absence of any responses, otherwise \fBping\fR waits for two RTTs. 1233 1405 +.PP 1234 1406 +When using \fBping\fR for fault isolation, it should first be run … … 1329 1501 +\fBftp\fR(1). 1330 1502 +.PP 1331 +In normal operation ping prints the ttlvalue from the packet it receives.1503 +In normal operation ping prints the TTL value from the packet it receives. 1332 1504 +When a remote system receives a ping packet, it can do one of three things 1333 1505 +with the TTL field in its response: … … 1372 1544 +.SH "SECURITY" 1373 1545 +.PP 1374 +\fBping\fR requires CAP_NET_RAW IOcapability1546 +\fBping\fR requires CAP_NET_RAW capability 1375 1547 +to be executed. It may be used as set-uid root. 1376 1548 +.SH "AVAILABILITY" … … 1379 1551 +and the latest versions are available in source form at 1380 1552 +http://www.skbuff.net/iputils/iputils-current.tar.bz2. 1381 diff -Naur iputils-s201 01006.orig/doc/r1022.html iputils-s20101006/doc/r1022.html1382 --- iputils-s201 01006.orig/doc/r1022.html 1969-12-31 19:00:00.000000000 -05001383 +++ iputils-s201 01006/doc/r1022.html 2011-01-08 20:09:49.623373190 -05001384 @@ -0,0 +1, 511@@1385 +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">1553 diff -Naur iputils-s20121221.orig/doc/r1056.html iputils-s20121221/doc/r1056.html 1554 --- iputils-s20121221.orig/doc/r1056.html 1970-01-01 00:00:00.000000000 +0000 1555 +++ iputils-s20121221/doc/r1056.html 2013-01-04 10:38:35.000000000 +0000 1556 @@ -0,0 +1,343 @@ 1557 +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 1386 1558 +<HTML 1387 1559 +><HEAD 1388 1560 +><TITLE 1389 +> rdisc</TITLE1561 +>ninfod</TITLE 1390 1562 +><META 1391 1563 +NAME="GENERATOR" … … 1396 1568 +REL="PREVIOUS" 1397 1569 +TITLE="tftpd" 1398 +HREF="r9 49.html"><LINK1570 +HREF="r983.html"><LINK 1399 1571 +REL="NEXT" 1400 +TITLE=" pg3"1401 +HREF="r11 44.html"></HEAD1572 +TITLE="rdisc" 1573 +HREF="r1125.html"></HEAD 1402 1574 +><BODY 1403 1575 +CLASS="REFENTRY" … … 1427 1599 +VALIGN="bottom" 1428 1600 +><A 1429 +HREF="r9 49.html"1601 +HREF="r983.html" 1430 1602 +ACCESSKEY="P" 1431 1603 +>Prev</A … … 1441 1613 +VALIGN="bottom" 1442 1614 +><A 1443 +HREF="r11 44.html"1615 +HREF="r1125.html" 1444 1616 +ACCESSKEY="N" 1445 1617 +>Next</A … … 1452 1624 +><H1 1453 1625 +><A 1626 +NAME="NINFOD" 1627 +></A 1628 +>ninfod</H1 1629 +><DIV 1630 +CLASS="REFNAMEDIV" 1631 +><A 1632 +NAME="AEN1061" 1633 +></A 1634 +><H2 1635 +>Name</H2 1636 +>ninfod -- Respond to IPv6 Node Information Queries</DIV 1637 +><DIV 1638 +CLASS="REFSYNOPSISDIV" 1639 +><A 1640 +NAME="AEN1064" 1641 +></A 1642 +><H2 1643 +>Synopsis</H2 1644 +><P 1645 +><B 1646 +CLASS="COMMAND" 1647 +>ninfod</B 1648 +> [<CODE 1649 +CLASS="OPTION" 1650 +>-dhv</CODE 1651 +>] [-p <TT 1652 +CLASS="REPLACEABLE" 1653 +><I 1654 +>pidfile</I 1655 +></TT 1656 +>] [-u <TT 1657 +CLASS="REPLACEABLE" 1658 +><I 1659 +>user</I 1660 +></TT 1661 +>]</P 1662 +></DIV 1663 +><DIV 1664 +CLASS="REFSECT1" 1665 +><A 1666 +NAME="AEN1073" 1667 +></A 1668 +><H2 1669 +>DESCRIPTION</H2 1670 +><P 1671 +>Responds to <A 1672 +HREF="http://tools.ietf.org/rfc/rfc4620.txt" 1673 +TARGET="_top" 1674 +>IPv6 Node Information Queries (RFC4620)</A 1675 +> from clients. 1676 +Queries can be sent by various implementations of <B 1677 +CLASS="COMMAND" 1678 +>ping6</B 1679 +> command.</P 1680 +></DIV 1681 +><DIV 1682 +CLASS="REFSECT1" 1683 +><A 1684 +NAME="AEN1078" 1685 +></A 1686 +><H2 1687 +>OPTIONS</H2 1688 +><P 1689 +></P 1690 +><DIV 1691 +CLASS="VARIABLELIST" 1692 +><DL 1693 +><DT 1694 +><CODE 1695 +CLASS="OPTION" 1696 +>-a</CODE 1697 +></DT 1698 +><DD 1699 +><P 1700 +>Debug mode. Do not go background. 1701 + </P 1702 +></DD 1703 +><DT 1704 +><CODE 1705 +CLASS="OPTION" 1706 +>-h</CODE 1707 +></DT 1708 +><DD 1709 +><P 1710 +>Show help. 1711 + </P 1712 +></DD 1713 +><DT 1714 +><CODE 1715 +CLASS="OPTION" 1716 +>-v</CODE 1717 +></DT 1718 +><DD 1719 +><P 1720 +>Verbose mode. 1721 + </P 1722 +></DD 1723 +><DT 1724 +><CODE 1725 +CLASS="OPTION" 1726 +>-u <TT 1727 +CLASS="REPLACEABLE" 1728 +><I 1729 +>user</I 1730 +></TT 1731 +></CODE 1732 +></DT 1733 +><DD 1734 +><P 1735 +>Run as another user. 1736 +<TT 1737 +CLASS="REPLACEABLE" 1738 +><I 1739 +>user</I 1740 +></TT 1741 +> can either be username or user ID. 1742 + </P 1743 +></DD 1744 +><DT 1745 +><CODE 1746 +CLASS="OPTION" 1747 +>-p <TT 1748 +CLASS="REPLACEABLE" 1749 +><I 1750 +>pidfile</I 1751 +></TT 1752 +></CODE 1753 +></DT 1754 +><DD 1755 +><P 1756 +>File for process-id storage. 1757 +<TT 1758 +CLASS="REPLACEABLE" 1759 +><I 1760 +>user</I 1761 +></TT 1762 +> is required to be able to create the file. 1763 + </P 1764 +></DD 1765 +></DL 1766 +></DIV 1767 +></DIV 1768 +><DIV 1769 +CLASS="REFSECT1" 1770 +><A 1771 +NAME="AEN1110" 1772 +></A 1773 +><H2 1774 +>SEE ALSO</H2 1775 +><P 1776 +><A 1777 +HREF="r3.html" 1778 +><SPAN 1779 +CLASS="CITEREFENTRY" 1780 +><SPAN 1781 +CLASS="REFENTRYTITLE" 1782 +>ping</SPAN 1783 +>(8)</SPAN 1784 +></A 1785 +>.</P 1786 +></DIV 1787 +><DIV 1788 +CLASS="REFSECT1" 1789 +><A 1790 +NAME="AEN1117" 1791 +></A 1792 +><H2 1793 +>AUTHOR</H2 1794 +><P 1795 +><B 1796 +CLASS="COMMAND" 1797 +>ninfod</B 1798 +> was written by USAGI/WIDE Project.</P 1799 +></DIV 1800 +><DIV 1801 +CLASS="REFSECT1" 1802 +><A 1803 +NAME="AEN1121" 1804 +></A 1805 +><H2 1806 +>COPYING</H2 1807 +><P 1808 +><P 1809 +CLASS="LITERALLAYOUT" 1810 +>Copyright (C) 2012 YOSHIFUJI Hideaki.<br> 1811 +Copyright (C) 2002 USAGI/WIDE Project.<br> 1812 +All rights reserved.<br> 1813 +<br> 1814 +Redistribution and use in source and binary forms, with or without<br> 1815 +modification, are permitted provided that the following conditions<br> 1816 +are met:<br> 1817 +1. Redistributions of source code must retain the above copyright<br> 1818 + notice, this list of conditions and the following disclaimer.<br> 1819 +2. Redistributions in binary form must reproduce the above copyright<br> 1820 + notice, this list of conditions and the following disclaimer in the<br> 1821 + documentation and/or other materials provided with the distribution.<br> 1822 +3. Neither the name of the project nor the names of its contributors<br> 1823 + may be used to endorse or promote products derived from this software<br> 1824 + without specific prior written permission.<br> 1825 +<br> 1826 +THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND<br> 1827 +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE<br> 1828 +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE<br> 1829 +ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE<br> 1830 +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL<br> 1831 +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS<br> 1832 +OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)<br> 1833 +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT<br> 1834 +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY<br> 1835 +OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF<br> 1836 +SUCH DAMAGE.</P 1837 +></P 1838 +></DIV 1839 +><DIV 1840 +CLASS="NAVFOOTER" 1841 +><HR 1842 +ALIGN="LEFT" 1843 +WIDTH="100%"><TABLE 1844 +SUMMARY="Footer navigation table" 1845 +WIDTH="100%" 1846 +BORDER="0" 1847 +CELLPADDING="0" 1848 +CELLSPACING="0" 1849 +><TR 1850 +><TD 1851 +WIDTH="33%" 1852 +ALIGN="left" 1853 +VALIGN="top" 1854 +><A 1855 +HREF="r983.html" 1856 +ACCESSKEY="P" 1857 +>Prev</A 1858 +></TD 1859 +><TD 1860 +WIDTH="34%" 1861 +ALIGN="center" 1862 +VALIGN="top" 1863 +><A 1864 +HREF="index.html" 1865 +ACCESSKEY="H" 1866 +>Home</A 1867 +></TD 1868 +><TD 1869 +WIDTH="33%" 1870 +ALIGN="right" 1871 +VALIGN="top" 1872 +><A 1873 +HREF="r1125.html" 1874 +ACCESSKEY="N" 1875 +>Next</A 1876 +></TD 1877 +></TR 1878 +><TR 1879 +><TD 1880 +WIDTH="33%" 1881 +ALIGN="left" 1882 +VALIGN="top" 1883 +>tftpd</TD 1884 +><TD 1885 +WIDTH="34%" 1886 +ALIGN="center" 1887 +VALIGN="top" 1888 +> </TD 1889 +><TD 1890 +WIDTH="33%" 1891 +ALIGN="right" 1892 +VALIGN="top" 1893 +>rdisc</TD 1894 +></TR 1895 +></TABLE 1896 +></DIV 1897 +></BODY 1898 +></HTML 1899 +> 1900 \ No newline at end of file 1901 diff -Naur iputils-s20121221.orig/doc/r1125.html iputils-s20121221/doc/r1125.html 1902 --- iputils-s20121221.orig/doc/r1125.html 1970-01-01 00:00:00.000000000 +0000 1903 +++ iputils-s20121221/doc/r1125.html 2013-01-04 10:38:35.000000000 +0000 1904 @@ -0,0 +1,567 @@ 1905 +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 1906 +<HTML 1907 +><HEAD 1908 +><TITLE 1909 +>rdisc</TITLE 1910 +><META 1911 +NAME="GENERATOR" 1912 +CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK 1913 +REL="HOME" 1914 +TITLE="System Manager's Manual: iputils" 1915 +HREF="index.html"><LINK 1916 +REL="PREVIOUS" 1917 +TITLE="ninfod" 1918 +HREF="r1056.html"><LINK 1919 +REL="NEXT" 1920 +TITLE="pg3" 1921 +HREF="r1269.html"></HEAD 1922 +><BODY 1923 +CLASS="REFENTRY" 1924 +BGCOLOR="#FFFFFF" 1925 +TEXT="#000000" 1926 +LINK="#0000FF" 1927 +VLINK="#840084" 1928 +ALINK="#0000FF" 1929 +><DIV 1930 +CLASS="NAVHEADER" 1931 +><TABLE 1932 +SUMMARY="Header navigation table" 1933 +WIDTH="100%" 1934 +BORDER="0" 1935 +CELLPADDING="0" 1936 +CELLSPACING="0" 1937 +><TR 1938 +><TH 1939 +COLSPAN="3" 1940 +ALIGN="center" 1941 +>System Manager's Manual: iputils</TH 1942 +></TR 1943 +><TR 1944 +><TD 1945 +WIDTH="10%" 1946 +ALIGN="left" 1947 +VALIGN="bottom" 1948 +><A 1949 +HREF="r1056.html" 1950 +ACCESSKEY="P" 1951 +>Prev</A 1952 +></TD 1953 +><TD 1954 +WIDTH="80%" 1955 +ALIGN="center" 1956 +VALIGN="bottom" 1957 +></TD 1958 +><TD 1959 +WIDTH="10%" 1960 +ALIGN="right" 1961 +VALIGN="bottom" 1962 +><A 1963 +HREF="r1269.html" 1964 +ACCESSKEY="N" 1965 +>Next</A 1966 +></TD 1967 +></TR 1968 +></TABLE 1969 +><HR 1970 +ALIGN="LEFT" 1971 +WIDTH="100%"></DIV 1972 +><H1 1973 +><A 1454 1974 +NAME="RDISC" 1455 1975 +></A … … 1458 1978 +CLASS="REFNAMEDIV" 1459 1979 +><A 1460 +NAME="AEN1 027"1980 +NAME="AEN1130" 1461 1981 +></A 1462 1982 +><H2 … … 1466 1986 +CLASS="REFSYNOPSISDIV" 1467 1987 +><A 1468 +NAME="AEN1 030"1988 +NAME="AEN1133" 1469 1989 +></A 1470 1990 +><H2 … … 1476 1996 +> [<CODE 1477 1997 +CLASS="OPTION" 1478 +>-abdfstvV</CODE 1998 +>-abdfrstvV</CODE 1999 +>] [-p <TT 2000 +CLASS="REPLACEABLE" 2001 +><I 2002 +>preference</I 2003 +></TT 2004 +>] [-T <TT 2005 +CLASS="REPLACEABLE" 2006 +><I 2007 +>max_interval</I 2008 +></TT 1479 2009 +>] [<TT 1480 2010 +CLASS="REPLACEABLE" … … 1492 2022 +CLASS="REFSECT1" 1493 2023 +><A 1494 +NAME="AEN1 039"2024 +NAME="AEN1146" 1495 2025 +></A 1496 2026 +><H2 … … 1562 2092 +CLASS="COMMAND" 1563 2093 +>gated</B 1564 +>.</P 2094 +>. 2095 +Or, <B 2096 +CLASS="COMMAND" 2097 +>rdisc</B 2098 +> can act as responder, if compiled with -DRDISC_SERVER.</P 1565 2099 +></DIV 1566 2100 +><DIV 1567 2101 +CLASS="REFSECT1" 1568 2102 +><A 1569 +NAME="AEN1 055"2103 +NAME="AEN1163" 1570 2104 +></A 1571 2105 +><H2 … … 1658 2192 +><CODE 1659 2193 +CLASS="OPTION" 2194 +>-r</CODE 2195 +></DT 2196 +><DD 2197 +><P 2198 +>Responder mode, available only if compiled with -DRDISC_SERVER. 2199 + </P 2200 +></DD 2201 +><DT 2202 +><CODE 2203 +CLASS="OPTION" 1660 2204 +>-s</CODE 1661 2205 +></DT … … 1687 2231 +><CODE 1688 2232 +CLASS="OPTION" 2233 +>-p <TT 2234 +CLASS="REPLACEABLE" 2235 +><I 2236 +>preference</I 2237 +></TT 2238 +></CODE 2239 +></DT 2240 +><DD 2241 +><P 2242 +>Set preference in advertisement. 2243 +Available only with -r option. 2244 + </P 2245 +></DD 2246 +><DT 2247 +><CODE 2248 +CLASS="OPTION" 2249 +>-T <TT 2250 +CLASS="REPLACEABLE" 2251 +><I 2252 +>max_interval</I 2253 +></TT 2254 +></CODE 2255 +></DT 2256 +><DD 2257 +><P 2258 +>Set maximum advertisement interval in seconds. Default is 600 secs. 2259 +Available only with -r option. 2260 + </P 2261 +></DD 2262 +><DT 2263 +><CODE 2264 +CLASS="OPTION" 1689 2265 +>-t</CODE 1690 2266 +></DT … … 1720 2296 +CLASS="REFSECT1" 1721 2297 +><A 1722 +NAME="AEN1 110"2298 +NAME="AEN1235" 1723 2299 +></A 1724 2300 +><H2 … … 1744 2320 +CLASS="REFSECT1" 1745 2321 +><A 1746 +NAME="AEN1 115"2322 +NAME="AEN1240" 1747 2323 +></A 1748 2324 +><H2 … … 1777 2353 +CLASS="REFSECT1" 1778 2354 +><A 1779 +NAME="AEN1 128"2355 +NAME="AEN1253" 1780 2356 +></A 1781 2357 +><H2 … … 1784 2360 +>Deering, S.E.,ed "ICMP Router Discovery Messages", 1785 2361 +<A 1786 +HREF=" ftp://ftp.isi.edu/in-notes/rfc1256.txt"2362 +HREF="http://tools.ietf.org/rfc/rfc1256.txt" 1787 2363 +TARGET="_top" 1788 2364 +>RFC1256</A … … 1793 2369 +CLASS="REFSECT1" 1794 2370 +><A 1795 +NAME="AEN1 132"2371 +NAME="AEN1257" 1796 2372 +></A 1797 2373 +><H2 … … 1803 2379 +> requires <CODE 1804 2380 +CLASS="CONSTANT" 1805 +>CAP_NET_RAW IO</CODE2381 +>CAP_NET_RAW</CODE 1806 2382 +> to listen 1807 2383 +and send ICMP messages and capability <CODE … … 1814 2390 +CLASS="REFSECT1" 1815 2391 +><A 1816 +NAME="AEN1 138"2392 +NAME="AEN1263" 1817 2393 +></A 1818 2394 +><H2 … … 1849 2425 +VALIGN="top" 1850 2426 +><A 1851 +HREF="r 949.html"2427 +HREF="r1056.html" 1852 2428 +ACCESSKEY="P" 1853 2429 +>Prev</A … … 1867 2443 +VALIGN="top" 1868 2444 +><A 1869 +HREF="r1 144.html"2445 +HREF="r1269.html" 1870 2446 +ACCESSKEY="N" 1871 2447 +>Next</A … … 1877 2453 +ALIGN="left" 1878 2454 +VALIGN="top" 1879 +> tftpd</TD2455 +>ninfod</TD 1880 2456 +><TD 1881 2457 +WIDTH="34%" … … 1895 2471 +> 1896 2472 \ No newline at end of file 1897 diff -Naur iputils-s201 01006.orig/doc/r1144.html iputils-s20101006/doc/r1144.html1898 --- iputils-s201 01006.orig/doc/r1144.html 1969-12-31 19:00:00.000000000 -05001899 +++ iputils-s201 01006/doc/r1144.html 2011-01-08 20:09:49.631531431 -05002473 diff -Naur iputils-s20121221.orig/doc/r1269.html iputils-s20121221/doc/r1269.html 2474 --- iputils-s20121221.orig/doc/r1269.html 1970-01-01 00:00:00.000000000 +0000 2475 +++ iputils-s20121221/doc/r1269.html 2013-01-04 10:38:35.000000000 +0000 1900 2476 @@ -0,0 +1,428 @@ 1901 +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">2477 +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 1902 2478 +<HTML 1903 2479 +><HEAD … … 1912 2488 +REL="PREVIOUS" 1913 2489 +TITLE="rdisc" 1914 +HREF="r1 022.html"></HEAD2490 +HREF="r1125.html"></HEAD 1915 2491 +><BODY 1916 2492 +CLASS="REFENTRY" … … 1940 2516 +VALIGN="bottom" 1941 2517 +><A 1942 +HREF="r1 022.html"2518 +HREF="r1125.html" 1943 2519 +ACCESSKEY="P" 1944 2520 +>Prev</A … … 1967 2543 +CLASS="REFNAMEDIV" 1968 2544 +><A 1969 +NAME="AEN1 149"2545 +NAME="AEN1274" 1970 2546 +></A 1971 2547 +><H2 … … 1975 2551 +CLASS="REFSYNOPSISDIV" 1976 2552 +><A 1977 +NAME="AEN1 152"2553 +NAME="AEN1277" 1978 2554 +></A 1979 2555 +><H2 … … 2003 2579 +CLASS="REFSECT1" 2004 2580 +><A 2005 +NAME="AEN1 161"2581 +NAME="AEN1286" 2006 2582 +></A 2007 2583 +><H2 … … 2040 2616 +CLASS="REFSECT1" 2041 2617 +><A 2042 +NAME="AEN1 172"2618 +NAME="AEN1297" 2043 2619 +></A 2044 2620 +><H2 … … 2063 2639 +>Name of Ethernet device to test. See 2064 2640 +<A 2065 +HREF="r1 144.html#PG3.WARNING"2641 +HREF="r1269.html#PG3.WARNING" 2066 2642 +>warning</A 2067 2643 +> below. … … 2218 2794 +CLASS="REFSECT1" 2219 2795 +><A 2220 +NAME="AEN1 232"2796 +NAME="AEN1357" 2221 2797 +></A 2222 2798 +><H2 … … 2235 2811 +CLASS="REFSECT1" 2236 2812 +><A 2237 +NAME="AEN1 237"2813 +NAME="AEN1362" 2238 2814 +></A 2239 2815 +><H2 … … 2251 2827 +CLASS="REFSECT1" 2252 2828 +><A 2253 +NAME="AEN1 241"2829 +NAME="AEN1366" 2254 2830 +></A 2255 2831 +><H2 … … 2286 2862 +VALIGN="top" 2287 2863 +><A 2288 +HREF="r1 022.html"2864 +HREF="r1125.html" 2289 2865 +ACCESSKEY="P" 2290 2866 +>Prev</A … … 2328 2904 +> 2329 2905 \ No newline at end of file 2330 diff -Naur iputils-s201 01006.orig/doc/r3.html iputils-s20101006/doc/r3.html2331 --- iputils-s201 01006.orig/doc/r3.html 1969-12-31 19:00:00.000000000 -05002332 +++ iputils-s201 01006/doc/r3.html 2011-01-08 20:09:49.558814956 -05002333 @@ -0,0 +1,1 494@@2334 +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">2906 diff -Naur iputils-s20121221.orig/doc/r3.html iputils-s20121221/doc/r3.html 2907 --- iputils-s20121221.orig/doc/r3.html 1970-01-01 00:00:00.000000000 +0000 2908 +++ iputils-s20121221/doc/r3.html 2013-01-04 10:38:35.000000000 +0000 2909 @@ -0,0 +1,1585 @@ 2910 +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 2335 2911 +<HTML 2336 2912 +><HEAD … … 2348 2924 +REL="NEXT" 2349 2925 +TITLE="arping" 2350 +HREF="r4 37.html"></HEAD2926 +HREF="r466.html"></HEAD 2351 2927 +><BODY 2352 2928 +CLASS="REFENTRY" … … 2390 2966 +VALIGN="bottom" 2391 2967 +><A 2392 +HREF="r4 37.html"2968 +HREF="r466.html" 2393 2969 +ACCESSKEY="N" 2394 2970 +>Next</A … … 2425 3001 +> [<CODE 2426 3002 +CLASS="OPTION" 2427 +>- LRUbdfnqrvVaAB</CODE3003 +>-aAbBdDfhLnOqrRUvV</CODE 2428 3004 +>] [-c <TT 2429 3005 +CLASS="REPLACEABLE" … … 2431 3007 +>count</I 2432 3008 +></TT 3009 +>] [-F <TT 3010 +CLASS="REPLACEABLE" 3011 +><I 3012 +>flowlabel</I 3013 +></TT 3014 +>] [-i <TT 3015 +CLASS="REPLACEABLE" 3016 +><I 3017 +>interval</I 3018 +></TT 3019 +>] [-I <TT 3020 +CLASS="REPLACEABLE" 3021 +><I 3022 +>interface</I 3023 +></TT 3024 +>] [-l <TT 3025 +CLASS="REPLACEABLE" 3026 +><I 3027 +>preload</I 3028 +></TT 2433 3029 +>] [-m <TT 2434 3030 +CLASS="REPLACEABLE" … … 2436 3032 +>mark</I 2437 3033 +></TT 2438 +>] [-i <TT 2439 +CLASS="REPLACEABLE" 2440 +><I 2441 +>interval</I 2442 +></TT 2443 +>] [-l <TT 2444 +CLASS="REPLACEABLE" 2445 +><I 2446 +>preload</I 3034 +>] [-M <TT 3035 +CLASS="REPLACEABLE" 3036 +><I 3037 +>pmtudisc_option</I 3038 +></TT 3039 +>] [-N <TT 3040 +CLASS="REPLACEABLE" 3041 +><I 3042 +>nodeinfo_option</I 3043 +></TT 3044 +>] [-w <TT 3045 +CLASS="REPLACEABLE" 3046 +><I 3047 +>deadline</I 3048 +></TT 3049 +>] [-W <TT 3050 +CLASS="REPLACEABLE" 3051 +><I 3052 +>timeout</I 2447 3053 +></TT 2448 3054 +>] [-p <TT … … 2451 3057 +>pattern</I 2452 3058 +></TT 3059 +>] [-Q <TT 3060 +CLASS="REPLACEABLE" 3061 +><I 3062 +>tos</I 3063 +></TT 2453 3064 +>] [-s <TT 2454 3065 +CLASS="REPLACEABLE" … … 2456 3067 +>packetsize</I 2457 3068 +></TT 3069 +>] [-S <TT 3070 +CLASS="REPLACEABLE" 3071 +><I 3072 +>sndbuf</I 3073 +></TT 2458 3074 +>] [-t <TT 2459 3075 +CLASS="REPLACEABLE" … … 2461 3077 +>ttl</I 2462 3078 +></TT 2463 +>] [-w <TT2464 +CLASS="REPLACEABLE"2465 +><I2466 +>deadline</I2467 +></TT2468 +>] [-F <TT2469 +CLASS="REPLACEABLE"2470 +><I2471 +>flowlabel</I2472 +></TT2473 +>] [-I <TT2474 +CLASS="REPLACEABLE"2475 +><I2476 +>interface</I2477 +></TT2478 +>] [-M <TT2479 +CLASS="REPLACEABLE"2480 +><I2481 +>hint</I2482 +></TT2483 +>] [-N <TT2484 +CLASS="REPLACEABLE"2485 +><I2486 +>nioption</I2487 +></TT2488 +>] [-Q <TT2489 +CLASS="REPLACEABLE"2490 +><I2491 +>tos</I2492 +></TT2493 +>] [-S <TT2494 +CLASS="REPLACEABLE"2495 +><I2496 +>sndbuf</I2497 +></TT2498 3079 +>] [-T <TT 2499 3080 +CLASS="REPLACEABLE" 2500 3081 +><I 2501 3082 +>timestamp option</I 2502 +></TT2503 +>] [-W <TT2504 +CLASS="REPLACEABLE"2505 +><I2506 +>timeout</I2507 3083 +></TT 2508 3084 +>] [<TT … … 2541 3117 +CLASS="COMMAND" 2542 3118 +>ping6</B 2543 +> can also send Node Information Queries (RFC4620).</P 3119 +> is IPv6 version of <B 3120 +CLASS="COMMAND" 3121 +>ping</B 3122 +>, and can also send Node Information Queries (RFC4620). 3123 +Intermediate <TT 3124 +CLASS="REPLACEABLE" 3125 +><I 3126 +>hop</I 3127 +></TT 3128 +>s may not be allowed, because IPv6 source routing was deprecated (RFC5095).</P 2544 3129 +></DIV 2545 3130 +><DIV 2546 3131 +CLASS="REFSECT1" 2547 3132 +><A 2548 +NAME="AEN 59"3133 +NAME="AEN61" 2549 3134 +></A 2550 3135 +><H2 … … 2573 3158 +><P 2574 3159 +>Adaptive ping. Interpacket interval adapts to round-trip time, so that 2575 +effectively not more than one (or more, if preload is set) unanswered probe s2576 + present in the network. Minimal interval is 200msec for not super-user.3160 +effectively not more than one (or more, if preload is set) unanswered probe 3161 +is present in the network. Minimal interval is 200msec for not super-user. 2577 3162 +On networks with low rtt this mode is essentially equivalent to flood mode. 2578 3163 + </P … … 2603 3188 +>ping</B 2604 3189 +> starts. 2605 + </P2606 +></DD2607 +><DT2608 +><CODE2609 +CLASS="OPTION"2610 +>-m <TT2611 +CLASS="REPLACEABLE"2612 +><I2613 +>mark</I2614 +></TT2615 +></CODE2616 +></DT2617 +><DD2618 +><P2619 +>use <TT2620 +CLASS="REPLACEABLE"2621 +><I2622 +>mark</I2623 +></TT2624 +> to tag the packets going out. This is useful2625 +for variety of reasons within the kernel such as using policy2626 +routing to select specific outbound processing.2627 3190 + </P 2628 3191 +></DD … … 2687 3250 +><CODE 2688 3251 +CLASS="OPTION" 2689 +>-F <TT 2690 +CLASS="REPLACEABLE" 2691 +><I 2692 +>flow label</I 2693 +></TT 2694 +></CODE 2695 +></DT 2696 +><DD 2697 +><P 2698 +>Allocate and set 20 bit flow label on echo request packets. 2699 +(Only <B 2700 +CLASS="COMMAND" 2701 +>ping6</B 2702 +>). If value is zero, kernel allocates random flow label. 3252 +>-D</CODE 3253 +></DT 3254 +><DD 3255 +><P 3256 +>Print timestamp (unix time + microseconds as in gettimeofday) before 3257 +each line. 2703 3258 + </P 2704 3259 +></DD … … 2722 3277 +><CODE 2723 3278 +CLASS="OPTION" 3279 +>-F <TT 3280 +CLASS="REPLACEABLE" 3281 +><I 3282 +>flow label</I 3283 +></TT 3284 +></CODE 3285 +></DT 3286 +><DD 3287 +><P 3288 +><B 3289 +CLASS="COMMAND" 3290 +>ping6</B 3291 +> only. 3292 +Allocate and set 20 bit flow label (in hex) on echo request packets. 3293 +If value is zero, kernel allocates random flow label. 3294 + </P 3295 +></DD 3296 +><DT 3297 +><CODE 3298 +CLASS="OPTION" 3299 +>-h</CODE 3300 +></DT 3301 +><DD 3302 +><P 3303 +>Show help. 3304 + </P 3305 +></DD 3306 +><DT 3307 +><CODE 3308 +CLASS="OPTION" 2724 3309 +>-i <TT 2725 3310 +CLASS="REPLACEABLE" … … 2748 3333 +CLASS="REPLACEABLE" 2749 3334 +><I 2750 +>interface address</I3335 +>interface</I 2751 3336 +></TT 2752 3337 +></CODE … … 2754 3339 +><DD 2755 3340 +><P 2756 +>Set source address to specified interface address. Argument 2757 +may be numeric IP address or name of device. When pinging IPv6 2758 +link-local address this option is required. 3341 +><TT 3342 +CLASS="REPLACEABLE" 3343 +><I 3344 +>interface</I 3345 +></TT 3346 +> is either an address, or an interface name. 3347 +If <TT 3348 +CLASS="REPLACEABLE" 3349 +><I 3350 +>interface</I 3351 +></TT 3352 +> is an address, it sets source address 3353 +to specified interface address. 3354 +If <TT 3355 +CLASS="REPLACEABLE" 3356 +><I 3357 +>interface</I 3358 +></TT 3359 +> in an interface name, it sets 3360 +source interface to specified interface. 3361 +For <B 3362 +CLASS="COMMAND" 3363 +>ping6</B 3364 +>, when doing ping to a link-local scope 3365 +address, link specification (by the '%'-notation in 3366 +<TT 3367 +CLASS="REPLACEABLE" 3368 +><I 3369 +>destination</I 3370 +></TT 3371 +>, or by this option) is required. 2759 3372 + </P 2760 3373 +></DD … … 2798 3411 +><CODE 2799 3412 +CLASS="OPTION" 3413 +>-m <TT 3414 +CLASS="REPLACEABLE" 3415 +><I 3416 +>mark</I 3417 +></TT 3418 +></CODE 3419 +></DT 3420 +><DD 3421 +><P 3422 +>use <TT 3423 +CLASS="REPLACEABLE" 3424 +><I 3425 +>mark</I 3426 +></TT 3427 +> to tag the packets going out. This is useful 3428 +for variety of reasons within the kernel such as using policy 3429 +routing to select specific outbound processing. 3430 + </P 3431 +></DD 3432 +><DT 3433 +><CODE 3434 +CLASS="OPTION" 3435 +>-M <TT 3436 +CLASS="REPLACEABLE" 3437 +><I 3438 +>pmtudisc_opt</I 3439 +></TT 3440 +></CODE 3441 +></DT 3442 +><DD 3443 +><P 3444 +>Select Path MTU Discovery strategy. 3445 +<TT 3446 +CLASS="REPLACEABLE" 3447 +><I 3448 +>pmtudisc_option</I 3449 +></TT 3450 +> may be either <TT 3451 +CLASS="REPLACEABLE" 3452 +><I 3453 +>do</I 3454 +></TT 3455 +> 3456 +(prohibit fragmentation, even local one), 3457 +<TT 3458 +CLASS="REPLACEABLE" 3459 +><I 3460 +>want</I 3461 +></TT 3462 +> (do PMTU discovery, fragment locally when packet size 3463 +is large), or <TT 3464 +CLASS="REPLACEABLE" 3465 +><I 3466 +>dont</I 3467 +></TT 3468 +> (do not set DF flag). 3469 + </P 3470 +></DD 3471 +><DT 3472 +><CODE 3473 +CLASS="OPTION" 2800 3474 +>-N <TT 2801 3475 +CLASS="REPLACEABLE" 2802 3476 +><I 2803 +>n ioption</I3477 +>nodeinfo_option</I 2804 3478 +></TT 2805 3479 +></CODE … … 2807 3481 +><DD 2808 3482 +><P 2809 +>Send ICMPv6 Node Information Queries (RFC4620), instead of Echo Request. 3483 +><B 3484 +CLASS="COMMAND" 3485 +>ping6</B 3486 +> only. 3487 +Send ICMPv6 Node Information Queries (RFC4620), instead of Echo Request. 2810 3488 + <P 2811 3489 +></P … … 2816 3494 +><CODE 2817 3495 +CLASS="OPTION" 2818 +> name</CODE2819 +></DT 2820 +><DD 2821 +><P 2822 +> Queries for Node Names.</P3496 +>help</CODE 3497 +></DT 3498 +><DD 3499 +><P 3500 +>Show help for NI support.</P 2823 3501 +></DD 2824 3502 +></DL … … 2833 3511 +><CODE 2834 3512 +CLASS="OPTION" 3513 +>name</CODE 3514 +></DT 3515 +><DD 3516 +><P 3517 +>Queries for Node Names.</P 3518 +></DD 3519 +></DL 3520 +></DIV 3521 +> 3522 + <P 3523 +></P 3524 +><DIV 3525 +CLASS="VARIABLELIST" 3526 +><DL 3527 +><DT 3528 +><CODE 3529 +CLASS="OPTION" 2835 3530 +>ipv6</CODE 2836 3531 +></DT … … 3052 3747 +><CODE 3053 3748 +CLASS="OPTION" 3749 +>-O</CODE 3750 +></DT 3751 +><DD 3752 +><P 3753 +>Report outstanding ICMP ECHO reply before sending next packet. 3754 +This is useful together with the timestamp <CODE 3755 +CLASS="OPTION" 3756 +>-D</CODE 3757 +> to 3758 +log output to a diagnostic file and search for missing answers. 3759 + </P 3760 +></DD 3761 +><DT 3762 +><CODE 3763 +CLASS="OPTION" 3054 3764 +>-p <TT 3055 3765 +CLASS="REPLACEABLE" … … 3073 3783 +><CODE 3074 3784 +CLASS="OPTION" 3075 +>-D</CODE3076 +></DT3077 +><DD3078 +><P3079 +>Print timestamp (unix time + microseconds as in gettimeofday) before3080 +each line.3081 + </P3082 +></DD3083 +><DT3084 +><CODE3085 +CLASS="OPTION"3086 +>-Q <TT3087 +CLASS="REPLACEABLE"3088 +><I3089 +>tos</I3090 +></TT3091 +></CODE3092 +></DT3093 +><DD3094 +><P3095 +>Set Quality of Service -related bits in ICMP datagrams.3096 +<TT3097 +CLASS="REPLACEABLE"3098 +><I3099 +>tos</I3100 +></TT3101 +> can be either decimal or hex number.3102 +Traditionally (RFC1349), these have been interpreted as: 0 for reserved3103 +(currently being redefined as congestion control), 1-4 for Type of Service3104 +and 5-7 for Precedence.3105 +Possible settings for Type of Service are: minimal cost: 0x02,3106 +reliability: 0x04, throughput: 0x08, low delay: 0x10. Multiple TOS bits3107 +should not be set simultaneously. Possible settings for3108 +special Precedence range from priority (0x20) to net control (0xe0). You3109 +must be root (<CODE3110 +CLASS="CONSTANT"3111 +>CAP_NET_ADMIN</CODE3112 +> capability) to use Critical or3113 +higher precedence value. You cannot set3114 +bit 0x01 (reserved) unless ECN has been enabled in the kernel.3115 +In RFC2474, these fields has been redefined as 8-bit Differentiated3116 +Services (DS), consisting of: bits 0-1 of separate data (ECN will be used,3117 +here), and bits 2-7 of Differentiated Services Codepoint (DSCP).3118 + </P3119 +></DD3120 +><DT3121 +><CODE3122 +CLASS="OPTION"3123 3785 +>-q</CODE 3124 3786 +></DT … … 3133 3795 +><CODE 3134 3796 +CLASS="OPTION" 3135 +>-R</CODE 3136 +></DT 3137 +><DD 3138 +><P 3139 +>Record route. 3140 +Includes the RECORD_ROUTE option in the ECHO_REQUEST 3141 +packet and displays the route buffer on returned packets. 3142 +Note that the IP header is only large enough for nine such routes. 3143 +Many hosts ignore or discard this option. 3144 + </P 3797 +>-Q <TT 3798 +CLASS="REPLACEABLE" 3799 +><I 3800 +>tos</I 3801 +></TT 3802 +></CODE 3803 +></DT 3804 +><DD 3805 +><P 3806 +> Set Quality of Service -related bits in ICMP datagrams. 3807 + <TT 3808 +CLASS="REPLACEABLE" 3809 +><I 3810 +>tos</I 3811 +></TT 3812 +> can be decimal (<B 3813 +CLASS="COMMAND" 3814 +>ping</B 3815 +> only) or hex number. 3816 + </P 3817 +><P 3818 +> In RFC2474, these fields are interpreted as 8-bit Differentiated 3819 + Services (DS), consisting of: bits 0-1 (2 lowest bits) of separate 3820 + data, and bits 2-7 (highest 6 bits) of Differentiated Services 3821 + Codepoint (DSCP). In RFC2481 and RFC3168, bits 0-1 are used for ECN. 3822 + </P 3823 +><P 3824 +> Historically (RFC1349, obsoleted by RFC2474), these were interpreted 3825 + as: bit 0 (lowest bit) for reserved (currently being redefined as 3826 + congestion control), 1-4 for Type of Service and bits 5-7 3827 + (highest bits) for Precedence. 3828 + </P 3145 3829 +></DD 3146 3830 +><DT … … 3165 3849 +><CODE 3166 3850 +CLASS="OPTION" 3851 +>-R</CODE 3852 +></DT 3853 +><DD 3854 +><P 3855 +><B 3856 +CLASS="COMMAND" 3857 +>ping</B 3858 +> only. 3859 +Record route. 3860 +Includes the RECORD_ROUTE option in the ECHO_REQUEST 3861 +packet and displays the route buffer on returned packets. 3862 +Note that the IP header is only large enough for nine such routes. 3863 +Many hosts ignore or discard this option. 3864 + </P 3865 +></DD 3866 +><DT 3867 +><CODE 3868 +CLASS="OPTION" 3167 3869 +>-s <TT 3168 3870 +CLASS="REPLACEABLE" … … 3207 3909 +><DD 3208 3910 +><P 3209 +>Set the IP Time to Live. 3911 +><B 3912 +CLASS="COMMAND" 3913 +>ping</B 3914 +> only. 3915 +Set the IP Time to Live. 3210 3916 + </P 3211 3917 +></DD … … 3248 3954 +> 3249 3955 +(timestamp prespecified hops). 3250 + </P3251 +></DD3252 +><DT3253 +><CODE3254 +CLASS="OPTION"3255 +>-M <TT3256 +CLASS="REPLACEABLE"3257 +><I3258 +>hint</I3259 +></TT3260 +></CODE3261 +></DT3262 +><DD3263 +><P3264 +>Select Path MTU Discovery strategy.3265 +<TT3266 +CLASS="REPLACEABLE"3267 +><I3268 +>hint</I3269 +></TT3270 +> may be either <TT3271 +CLASS="REPLACEABLE"3272 +><I3273 +>do</I3274 +></TT3275 +>3276 +(prohibit fragmentation, even local one),3277 +<TT3278 +CLASS="REPLACEABLE"3279 +><I3280 +>want</I3281 +></TT3282 +> (do PMTU discovery, fragment locally when packet size3283 +is large), or <TT3284 +CLASS="REPLACEABLE"3285 +><I3286 +>dont</I3287 +></TT3288 +> (do not set DF flag).3289 3956 + </P 3290 3957 +></DD … … 3397 4064 +><P 3398 4065 +>Time to wait for a response, in seconds. The option affects only timeout 3399 +in absen se of any responses, otherwise <B4066 +in absence of any responses, otherwise <B 3400 4067 +CLASS="COMMAND" 3401 4068 +>ping</B … … 3488 4155 +CLASS="REFSECT1" 3489 4156 +><A 3490 +NAME="AEN3 62"4157 +NAME="AEN391" 3491 4158 +></A 3492 4159 +><H2 … … 3520 4187 +CLASS="REFSECT1" 3521 4188 +><A 3522 +NAME="AEN3 69"4189 +NAME="AEN398" 3523 4190 +></A 3524 4191 +><H2 … … 3545 4212 +CLASS="REFSECT1" 3546 4213 +><A 3547 +NAME="AEN 375"4214 +NAME="AEN404" 3548 4215 +></A 3549 4216 +><H2 … … 3579 4246 +CLASS="REFSECT1" 3580 4247 +><A 3581 +NAME="AEN 381"4248 +NAME="AEN410" 3582 4249 +></A 3583 4250 +><H2 … … 3613 4280 +>.</P 3614 4281 +><P 3615 +>In normal operation ping prints the ttlvalue from the packet it receives.4282 +>In normal operation ping prints the TTL value from the packet it receives. 3616 4283 +When a remote system receives a ping packet, it can do one of three things 3617 4284 +with the TTL field in its response:</P … … 3661 4328 +CLASS="REFSECT1" 3662 4329 +><A 3663 +NAME="AEN4 03"4330 +NAME="AEN432" 3664 4331 +></A 3665 4332 +><H2 … … 3691 4358 +CLASS="REFSECT1" 3692 4359 +><A 3693 +NAME="AEN4 12"4360 +NAME="AEN441" 3694 4361 +></A 3695 4362 +><H2 … … 3714 4381 +CLASS="REFSECT1" 3715 4382 +><A 3716 +NAME="AEN4 21"4383 +NAME="AEN450" 3717 4384 +></A 3718 4385 +><H2 … … 3729 4396 +CLASS="REFSECT1" 3730 4397 +><A 3731 +NAME="AEN4 26"4398 +NAME="AEN455" 3732 4399 +></A 3733 4400 +><H2 … … 3739 4406 +> requires <CODE 3740 4407 +CLASS="CONSTANT" 3741 +>CAP_NET_RAW IO</CODE4408 +>CAP_NET_RAW</CODE 3742 4409 +> capability 3743 4410 +to be executed. It may be used as set-uid root.</P … … 3746 4413 +CLASS="REFSECT1" 3747 4414 +><A 3748 +NAME="AEN4 31"4415 +NAME="AEN460" 3749 4416 +></A 3750 4417 +><H2 … … 3799 4466 +VALIGN="top" 3800 4467 +><A 3801 +HREF="r4 37.html"4468 +HREF="r466.html" 3802 4469 +ACCESSKEY="N" 3803 4470 +>Next</A … … 3827 4494 +> 3828 4495 \ No newline at end of file 3829 diff -Naur iputils-s201 01006.orig/doc/r437.html iputils-s20101006/doc/r437.html3830 --- iputils-s201 01006.orig/doc/r437.html 1969-12-31 19:00:00.000000000 -05003831 +++ iputils-s201 01006/doc/r437.html 2011-01-08 20:09:49.571531343 -05003832 @@ -0,0 +1,59 8@@3833 +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">4496 diff -Naur iputils-s20121221.orig/doc/r466.html iputils-s20121221/doc/r466.html 4497 --- iputils-s20121221.orig/doc/r466.html 1970-01-01 00:00:00.000000000 +0000 4498 +++ iputils-s20121221/doc/r466.html 2013-01-04 10:38:35.000000000 +0000 4499 @@ -0,0 +1,597 @@ 4500 +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 3834 4501 +<HTML 3835 4502 +><HEAD … … 3847 4514 +REL="NEXT" 3848 4515 +TITLE="clockdiff" 3849 +HREF="r 596.html"></HEAD4516 +HREF="r625.html"></HEAD 3850 4517 +><BODY 3851 4518 +CLASS="REFENTRY" … … 3889 4556 +VALIGN="bottom" 3890 4557 +><A 3891 +HREF="r 596.html"4558 +HREF="r625.html" 3892 4559 +ACCESSKEY="N" 3893 4560 +>Next</A … … 3906 4573 +CLASS="REFNAMEDIV" 3907 4574 +><A 3908 +NAME="AEN4 42"4575 +NAME="AEN471" 3909 4576 +></A 3910 4577 +><H2 … … 3914 4581 +CLASS="REFSYNOPSISDIV" 3915 4582 +><A 3916 +NAME="AEN4 45"4583 +NAME="AEN474" 3917 4584 +></A 3918 4585 +><H2 … … 3955 4622 +CLASS="REFSECT1" 3956 4623 +><A 3957 +NAME="AEN4 60"4624 +NAME="AEN489" 3958 4625 +></A 3959 4626 +><H2 … … 3981 4648 +CLASS="REFSECT1" 3982 4649 +><A 3983 +NAME="AEN4 66"4650 +NAME="AEN495" 3984 4651 +></A 3985 4652 +><H2 … … 4041 4708 +packets. With 4042 4709 +<A 4043 +HREF="r4 37.html#ARPING.DEADLINE"4710 +HREF="r466.html#ARPING.DEADLINE" 4044 4711 +><TT 4045 4712 +CLASS="REPLACEABLE" … … 4070 4737 +>Duplicate address detection mode (DAD). See 4071 4738 +<A 4072 +HREF=" ftp://ftp.isi.edu/in-notes/rfc2131.txt"4739 +HREF="http://tools.ietf.org/rfc/rfc2131.txt" 4073 4740 +TARGET="_top" 4074 4741 +>RFC2131, 4.4.1</A … … 4102 4769 +><DD 4103 4770 +><P 4104 +>Name of network device where to send ARP REQUEST packets. This option 4105 +is required. 4771 +>Name of network device where to send ARP REQUEST packets. 4106 4772 + </P 4107 4773 +></DD … … 4229 4895 +does not stop after 4230 4896 +<A 4231 +HREF="r4 37.html#ARPING.COUNT"4897 +HREF="r466.html#ARPING.COUNT" 4232 4898 +><TT 4233 4899 +CLASS="REPLACEABLE" … … 4239 4905 +packet are sent, it waits either for 4240 4906 +<A 4241 +HREF="r4 37.html#ARPING.DEADLINE"4907 +HREF="r466.html#ARPING.DEADLINE" 4242 4908 +><TT 4243 4909 +CLASS="REPLACEABLE" … … 4249 4915 +expire or until 4250 4916 +<A 4251 +HREF="r4 37.html#ARPING.COUNT"4917 +HREF="r466.html#ARPING.COUNT" 4252 4918 +><TT 4253 4919 +CLASS="REPLACEABLE" … … 4266 4932 +CLASS="REFSECT1" 4267 4933 +><A 4268 +NAME="AEN5 64"4934 +NAME="AEN593" 4269 4935 +></A 4270 4936 +><H2 … … 4282 4948 +>, 4283 4949 +<A 4284 +HREF="r 596.html"4950 +HREF="r625.html" 4285 4951 +><SPAN 4286 4952 +CLASS="CITEREFENTRY" … … 4292 4958 +>, 4293 4959 +<A 4294 +HREF="r 790.html"4960 +HREF="r819.html" 4295 4961 +><SPAN 4296 4962 +CLASS="CITEREFENTRY" … … 4305 4971 +CLASS="REFSECT1" 4306 4972 +><A 4307 +NAME="AEN 579"4973 +NAME="AEN608" 4308 4974 +></A 4309 4975 +><H2 … … 4331 4997 +CLASS="REFSECT1" 4332 4998 +><A 4333 +NAME="AEN 585"4999 +NAME="AEN614" 4334 5000 +></A 4335 5001 +><H2 … … 4341 5007 +> requires <CODE 4342 5008 +CLASS="CONSTANT" 4343 +>CAP_NET_RAW IO</CODE5009 +>CAP_NET_RAW</CODE 4344 5010 +> capability 4345 5011 +to be executed. It is not recommended to be used as set-uid root, … … 4349 5015 +CLASS="REFSECT1" 4350 5016 +><A 4351 +NAME="AEN 590"5017 +NAME="AEN619" 4352 5018 +></A 4353 5019 +><H2 … … 4402 5068 +VALIGN="top" 4403 5069 +><A 4404 +HREF="r 596.html"5070 +HREF="r625.html" 4405 5071 +ACCESSKEY="N" 4406 5072 +>Next</A … … 4430 5096 +> 4431 5097 \ No newline at end of file 4432 diff -Naur iputils-s201 01006.orig/doc/r596.html iputils-s20101006/doc/r596.html4433 --- iputils-s201 01006.orig/doc/r596.html 1969-12-31 19:00:00.000000000 -05004434 +++ iputils-s201 01006/doc/r596.html 2011-01-08 20:09:49.582999920 -05005098 diff -Naur iputils-s20121221.orig/doc/r625.html iputils-s20121221/doc/r625.html 5099 --- iputils-s20121221.orig/doc/r625.html 1970-01-01 00:00:00.000000000 +0000 5100 +++ iputils-s20121221/doc/r625.html 2013-01-04 10:38:35.000000000 +0000 4435 5101 @@ -0,0 +1,428 @@ 4436 +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">5102 +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 4437 5103 +<HTML 4438 5104 +><HEAD … … 4447 5113 +REL="PREVIOUS" 4448 5114 +TITLE="arping" 4449 +HREF="r4 37.html"><LINK5115 +HREF="r466.html"><LINK 4450 5116 +REL="NEXT" 4451 5117 +TITLE="rarpd" 4452 +HREF="r 691.html"></HEAD5118 +HREF="r720.html"></HEAD 4453 5119 +><BODY 4454 5120 +CLASS="REFENTRY" … … 4478 5144 +VALIGN="bottom" 4479 5145 +><A 4480 +HREF="r4 37.html"5146 +HREF="r466.html" 4481 5147 +ACCESSKEY="P" 4482 5148 +>Prev</A … … 4492 5158 +VALIGN="bottom" 4493 5159 +><A 4494 +HREF="r 691.html"5160 +HREF="r720.html" 4495 5161 +ACCESSKEY="N" 4496 5162 +>Next</A … … 4509 5175 +CLASS="REFNAMEDIV" 4510 5176 +><A 4511 +NAME="AEN6 01"5177 +NAME="AEN630" 4512 5178 +></A 4513 5179 +><H2 … … 4517 5183 +CLASS="REFSYNOPSISDIV" 4518 5184 +><A 4519 +NAME="AEN6 04"5185 +NAME="AEN633" 4520 5186 +></A 4521 5187 +><H2 … … 4541 5207 +CLASS="REFSECT1" 4542 5208 +><A 4543 +NAME="AEN6 13"5209 +NAME="AEN642" 4544 5210 +></A 4545 5211 +><H2 … … 4557 5223 +> with 1 msec resolution using ICMP TIMESTAMP 4558 5224 +<A 4559 +HREF="r 596.html#CLOCKDIFF.ICMP-TIMESTAMP"5225 +HREF="r625.html#CLOCKDIFF.ICMP-TIMESTAMP" 4560 5226 +>[2]</A 4561 5227 +> 4562 5228 +packets or, optionally, IP TIMESTAMP option 4563 5229 +<A 4564 +HREF="r 596.html#CLOCKDIFF.IP-TIMESTAMP"5230 +HREF="r625.html#CLOCKDIFF.IP-TIMESTAMP" 4565 5231 +>[3]</A 4566 5232 +> 4567 5233 +option added to ICMP ECHO. 4568 5234 +<A 4569 +HREF="r 596.html#CLOCKDIFF.ICMP-ECHO"5235 +HREF="r625.html#CLOCKDIFF.ICMP-ECHO" 4570 5236 +>[1]</A 4571 5237 +></P … … 4574 5240 +CLASS="REFSECT1" 4575 5241 +><A 4576 +NAME="AEN6 21"5242 +NAME="AEN650" 4577 5243 +></A 4578 5244 +><H2 … … 4620 5286 +CLASS="REFSECT1" 4621 5287 +><A 4622 +NAME="AEN6 36"5288 +NAME="AEN665" 4623 5289 +></A 4624 5290 +><H2 … … 4658 5324 +CLASS="REFSECT1" 4659 5325 +><A 4660 +NAME="AEN6 47"5326 +NAME="AEN676" 4661 5327 +></A 4662 5328 +><H2 … … 4674 5340 +>, 4675 5341 +<A 4676 +HREF="r4 37.html"5342 +HREF="r466.html" 4677 5343 +><SPAN 4678 5344 +CLASS="CITEREFENTRY" … … 4684 5350 +>, 4685 5351 +<A 4686 +HREF="r 790.html"5352 +HREF="r819.html" 4687 5353 +><SPAN 4688 5354 +CLASS="CITEREFENTRY" … … 4697 5363 +CLASS="REFSECT1" 4698 5364 +><A 4699 +NAME="AEN6 62"5365 +NAME="AEN691" 4700 5366 +></A 4701 5367 +><H2 … … 4707 5373 +>ICMP ECHO, 4708 5374 +<A 4709 +HREF=" ftp://ftp.isi.edu/in-notes/rfc792.txt"5375 +HREF="http://tools.ietf.org/rfc/rfc792.txt" 4710 5376 +TARGET="_top" 4711 5377 +>RFC0792, page 14</A … … 4717 5383 +>ICMP TIMESTAMP, 4718 5384 +<A 4719 +HREF=" ftp://ftp.isi.edu/in-notes/rfc792.txt"5385 +HREF="http://tools.ietf.org/rfc/rfc792.txt" 4720 5386 +TARGET="_top" 4721 5387 +>RFC0792, page 16</A … … 4727 5393 +>IP TIMESTAMP option, 4728 5394 +<A 4729 +HREF=" ftp://ftp.isi.edu/in-notes/rfc791.txt"5395 +HREF="http://tools.ietf.org/rfc/rfc791.txt" 4730 5396 +TARGET="_top" 4731 5397 +>RFC0791, 3.1, page 16</A … … 4735 5401 +CLASS="REFSECT1" 4736 5402 +><A 4737 +NAME="AEN 673"5403 +NAME="AEN702" 4738 5404 +></A 4739 5405 +><H2 … … 4765 5431 +CLASS="REFSECT1" 4766 5432 +><A 4767 +NAME="AEN 680"5433 +NAME="AEN709" 4768 5434 +></A 4769 5435 +><H2 … … 4775 5441 +> requires <CODE 4776 5442 +CLASS="CONSTANT" 4777 +>CAP_NET_RAW IO</CODE5443 +>CAP_NET_RAW</CODE 4778 5444 +> capability 4779 5445 +to be executed. It is safe to be used as set-uid root.</P … … 4782 5448 +CLASS="REFSECT1" 4783 5449 +><A 4784 +NAME="AEN 685"5450 +NAME="AEN714" 4785 5451 +></A 4786 5452 +><H2 … … 4817 5483 +VALIGN="top" 4818 5484 +><A 4819 +HREF="r4 37.html"5485 +HREF="r466.html" 4820 5486 +ACCESSKEY="P" 4821 5487 +>Prev</A … … 4835 5501 +VALIGN="top" 4836 5502 +><A 4837 +HREF="r 691.html"5503 +HREF="r720.html" 4838 5504 +ACCESSKEY="N" 4839 5505 +>Next</A … … 4863 5529 +> 4864 5530 \ No newline at end of file 4865 diff -Naur iputils-s201 01006.orig/doc/r691.html iputils-s20101006/doc/r691.html4866 --- iputils-s201 01006.orig/doc/r691.html 1969-12-31 19:00:00.000000000 -05004867 +++ iputils-s201 01006/doc/r691.html 2011-01-08 20:09:49.590918871 -05005531 diff -Naur iputils-s20121221.orig/doc/r720.html iputils-s20121221/doc/r720.html 5532 --- iputils-s20121221.orig/doc/r720.html 1970-01-01 00:00:00.000000000 +0000 5533 +++ iputils-s20121221/doc/r720.html 2013-01-04 10:38:35.000000000 +0000 4868 5534 @@ -0,0 +1,431 @@ 4869 +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">5535 +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 4870 5536 +<HTML 4871 5537 +><HEAD … … 4880 5546 +REL="PREVIOUS" 4881 5547 +TITLE="clockdiff" 4882 +HREF="r 596.html"><LINK5548 +HREF="r625.html"><LINK 4883 5549 +REL="NEXT" 4884 5550 +TITLE="tracepath" 4885 +HREF="r 790.html"></HEAD5551 +HREF="r819.html"></HEAD 4886 5552 +><BODY 4887 5553 +CLASS="REFENTRY" … … 4911 5577 +VALIGN="bottom" 4912 5578 +><A 4913 +HREF="r 596.html"5579 +HREF="r625.html" 4914 5580 +ACCESSKEY="P" 4915 5581 +>Prev</A … … 4925 5591 +VALIGN="bottom" 4926 5592 +><A 4927 +HREF="r 790.html"5593 +HREF="r819.html" 4928 5594 +ACCESSKEY="N" 4929 5595 +>Next</A … … 4942 5608 +CLASS="REFNAMEDIV" 4943 5609 +><A 4944 +NAME="AEN 696"5610 +NAME="AEN725" 4945 5611 +></A 4946 5612 +><H2 … … 4950 5616 +CLASS="REFSYNOPSISDIV" 4951 5617 +><A 4952 +NAME="AEN 699"5618 +NAME="AEN728" 4953 5619 +></A 4954 5620 +><H2 … … 4976 5642 +CLASS="REFSECT1" 4977 5643 +><A 4978 +NAME="AEN7 08"5644 +NAME="AEN737" 4979 5645 +></A 4980 5646 +><H2 … … 4983 5649 +>Listens 4984 5650 +<A 4985 +HREF=" ftp://ftp.isi.edu/in-notes/rfc903.txt"5651 +HREF="http://tools.ietf.org/rfc/rfc903.txt" 4986 5652 +TARGET="_top" 4987 5653 +>RARP</A … … 5020 5686 +CLASS="REFSECT1" 5021 5687 +><A 5022 +NAME="AEN7 19"5688 +NAME="AEN748" 5023 5689 +></A 5024 5690 +><H2 … … 5027 5693 +>This facility is deeply obsoleted by 5028 5694 +<A 5029 +HREF=" ftp://ftp.isi.edu/in-notes/rfc951.txt"5695 +HREF="http://tools.ietf.org/rfc/rfc951.txt" 5030 5696 +TARGET="_top" 5031 5697 +>BOOTP</A … … 5033 5699 +and later 5034 5700 +<A 5035 +HREF=" ftp://ftp.isi.edu/in-notes/rfc2131.txt"5701 +HREF="http://tools.ietf.org/rfc/rfc2131.txt" 5036 5702 +TARGET="_top" 5037 5703 +>DHCP</A … … 5042 5708 +CLASS="REFSECT1" 5043 5709 +><A 5044 +NAME="AEN7 24"5710 +NAME="AEN753" 5045 5711 +></A 5046 5712 +><H2 … … 5138 5804 +CLASS="REFSECT1" 5139 5805 +><A 5140 +NAME="AEN7 61"5806 +NAME="AEN790" 5141 5807 +></A 5142 5808 +><H2 … … 5144 5810 +><P 5145 5811 +><A 5146 +HREF="r4 37.html"5812 +HREF="r466.html" 5147 5813 +><SPAN 5148 5814 +CLASS="CITEREFENTRY" … … 5154 5820 +>, 5155 5821 +<A 5156 +HREF="r9 49.html"5822 +HREF="r983.html" 5157 5823 +><SPAN 5158 5824 +CLASS="CITEREFENTRY" … … 5167 5833 +CLASS="REFSECT1" 5168 5834 +><A 5169 +NAME="AEN 772"5835 +NAME="AEN801" 5170 5836 +></A 5171 5837 +><H2 … … 5193 5859 +CLASS="REFSECT1" 5194 5860 +><A 5195 +NAME="AEN 778"5861 +NAME="AEN807" 5196 5862 +></A 5197 5863 +><H2 … … 5203 5869 +> requires <CODE 5204 5870 +CLASS="CONSTANT" 5205 +>CAP_NET_RAW IO</CODE5871 +>CAP_NET_RAW</CODE 5206 5872 +> capability 5207 5873 +to listen and send RARP and ARP packets. It also needs <CODE … … 5218 5884 +CLASS="REFSECT1" 5219 5885 +><A 5220 +NAME="AEN 784"5886 +NAME="AEN813" 5221 5887 +></A 5222 5888 +><H2 … … 5253 5919 +VALIGN="top" 5254 5920 +><A 5255 +HREF="r 596.html"5921 +HREF="r625.html" 5256 5922 +ACCESSKEY="P" 5257 5923 +>Prev</A … … 5271 5937 +VALIGN="top" 5272 5938 +><A 5273 +HREF="r 790.html"5939 +HREF="r819.html" 5274 5940 +ACCESSKEY="N" 5275 5941 +>Next</A … … 5299 5965 +> 5300 5966 \ No newline at end of file 5301 diff -Naur iputils-s201 01006.orig/doc/r790.html iputils-s20101006/doc/r790.html5302 --- iputils-s201 01006.orig/doc/r790.html 1969-12-31 19:00:00.000000000 -05005303 +++ iputils-s201 01006/doc/r790.html 2011-01-08 20:09:49.602668583 -05005304 @@ -0,0 +1,4 26 @@5305 +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">5967 diff -Naur iputils-s20121221.orig/doc/r819.html iputils-s20121221/doc/r819.html 5968 --- iputils-s20121221.orig/doc/r819.html 1970-01-01 00:00:00.000000000 +0000 5969 +++ iputils-s20121221/doc/r819.html 2013-01-04 10:38:35.000000000 +0000 5970 @@ -0,0 +1,436 @@ 5971 +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 5306 5972 +<HTML 5307 5973 +><HEAD … … 5316 5982 +REL="PREVIOUS" 5317 5983 +TITLE="rarpd" 5318 +HREF="r 691.html"><LINK5984 +HREF="r720.html"><LINK 5319 5985 +REL="NEXT" 5320 5986 +TITLE="traceroute6" 5321 +HREF="r 884.html"></HEAD5987 +HREF="r918.html"></HEAD 5322 5988 +><BODY 5323 5989 +CLASS="REFENTRY" … … 5347 6013 +VALIGN="bottom" 5348 6014 +><A 5349 +HREF="r 691.html"6015 +HREF="r720.html" 5350 6016 +ACCESSKEY="P" 5351 6017 +>Prev</A … … 5361 6027 +VALIGN="bottom" 5362 6028 +><A 5363 +HREF="r 884.html"6029 +HREF="r918.html" 5364 6030 +ACCESSKEY="N" 5365 6031 +>Next</A … … 5378 6044 +CLASS="REFNAMEDIV" 5379 6045 +><A 5380 +NAME="AEN 795"6046 +NAME="AEN824" 5381 6047 +></A 5382 6048 +><H2 … … 5386 6052 +CLASS="REFSYNOPSISDIV" 5387 6053 +><A 5388 +NAME="AEN 798"6054 +NAME="AEN827" 5389 6055 +></A 5390 6056 +><H2 … … 5399 6065 +>pktlen</I 5400 6066 +></TT 6067 +>] [-p <TT 6068 +CLASS="REPLACEABLE" 6069 +><I 6070 +>port</I 6071 +></TT 5401 6072 +>] {<TT 5402 6073 +CLASS="REPLACEABLE" … … 5404 6075 +>destination</I 5405 6076 +></TT 5406 +>} [<TT 5407 +CLASS="REPLACEABLE" 5408 +><I 5409 +>port</I 5410 +></TT 5411 +>]</P 6077 +>}</P 5412 6078 +></DIV 5413 6079 +><DIV 5414 6080 +CLASS="REFSECT1" 5415 6081 +><A 5416 +NAME="AEN8 09"6082 +NAME="AEN838" 5417 6083 +></A 5418 6084 +><H2 … … 5446 6112 +and classic example of application of Linux error queues. 5447 6113 +The situation with IPv4 is worse, because commercial 5448 +IP routers do not return enough information in icmperror messages.6114 +IP routers do not return enough information in ICMP error messages. 5449 6115 +Probably, it will change, when they will be updated. 5450 6116 +For now it uses Van Jacobson's trick, sweeping a range … … 5454 6120 +CLASS="REFSECT1" 5455 6121 +><A 5456 +NAME="AEN8 18"6122 +NAME="AEN847" 5457 6123 +></A 5458 6124 +><H2 … … 5496 6162 +></TT 5497 6163 +> instead of 5498 +6553 6for <B6164 +65535 for <B 5499 6165 +CLASS="COMMAND" 5500 6166 +>tracepath</B … … 5505 6171 + </P 5506 6172 +></DD 6173 +><DT 6174 +><CODE 6175 +CLASS="OPTION" 6176 +>-p</CODE 6177 +></DT 6178 +><DD 6179 +><P 6180 +>Sets the initial destination port to use. 6181 + </P 6182 +></DD 5507 6183 +></DL 5508 6184 +></DIV … … 5511 6187 +CLASS="REFSECT1" 5512 6188 +><A 5513 +NAME="AEN8 39"6189 +NAME="AEN873" 5514 6190 +></A 5515 6191 +><H2 … … 5545 6221 +><P 5546 6222 +>The rest of line shows miscellaneous information about path to 5547 +the correspinding hetwork hop. As rule it contains value of RTT.6223 +the correspinding network hop. As rule it contains value of RTT. 5548 6224 +Additionally, it can show Path MTU, when it changes. 5549 6225 +If the path is asymmetric … … 5565 6241 +CLASS="REFSECT1" 5566 6242 +><A 5567 +NAME="AEN8 51"6243 +NAME="AEN885" 5568 6244 +></A 5569 6245 +><H2 … … 5578 6254 +>, 5579 6255 +<A 5580 +HREF="r 884.html"6256 +HREF="r918.html" 5581 6257 +><SPAN 5582 6258 +CLASS="CITEREFENTRY" … … 5601 6277 +CLASS="REFSECT1" 5602 6278 +><A 5603 +NAME="AEN8 65"6279 +NAME="AEN899" 5604 6280 +></A 5605 6281 +><H2 … … 5620 6296 +CLASS="REFSECT1" 5621 6297 +><A 5622 +NAME="AEN 870"6298 +NAME="AEN904" 5623 6299 +></A 5624 6300 +><H2 … … 5649 6325 +CLASS="REFSECT1" 5650 6326 +><A 5651 +NAME="AEN 878"6327 +NAME="AEN912" 5652 6328 +></A 5653 6329 +><H2 … … 5684 6360 +VALIGN="top" 5685 6361 +><A 5686 +HREF="r 691.html"6362 +HREF="r720.html" 5687 6363 +ACCESSKEY="P" 5688 6364 +>Prev</A … … 5702 6378 +VALIGN="top" 5703 6379 +><A 5704 +HREF="r 884.html"6380 +HREF="r918.html" 5705 6381 +ACCESSKEY="N" 5706 6382 +>Next</A … … 5730 6406 +> 5731 6407 \ No newline at end of file 5732 diff -Naur iputils-s201 01006.orig/doc/r884.html iputils-s20101006/doc/r884.html5733 --- iputils-s201 01006.orig/doc/r884.html 1969-12-31 19:00:00.000000000 -05005734 +++ iputils-s201 01006/doc/r884.html 2011-01-08 20:09:49.606677412 -05006408 diff -Naur iputils-s20121221.orig/doc/r918.html iputils-s20121221/doc/r918.html 6409 --- iputils-s20121221.orig/doc/r918.html 1970-01-01 00:00:00.000000000 +0000 6410 +++ iputils-s20121221/doc/r918.html 2013-01-04 10:38:35.000000000 +0000 5735 6411 @@ -0,0 +1,315 @@ 5736 +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">6412 +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 5737 6413 +<HTML 5738 6414 +><HEAD … … 5747 6423 +REL="PREVIOUS" 5748 6424 +TITLE="tracepath" 5749 +HREF="r 790.html"><LINK6425 +HREF="r819.html"><LINK 5750 6426 +REL="NEXT" 5751 6427 +TITLE="tftpd" 5752 +HREF="r9 49.html"></HEAD6428 +HREF="r983.html"></HEAD 5753 6429 +><BODY 5754 6430 +CLASS="REFENTRY" … … 5778 6454 +VALIGN="bottom" 5779 6455 +><A 5780 +HREF="r 790.html"6456 +HREF="r819.html" 5781 6457 +ACCESSKEY="P" 5782 6458 +>Prev</A … … 5792 6468 +VALIGN="bottom" 5793 6469 +><A 5794 +HREF="r9 49.html"6470 +HREF="r983.html" 5795 6471 +ACCESSKEY="N" 5796 6472 +>Next</A … … 5809 6485 +CLASS="REFNAMEDIV" 5810 6486 +><A 5811 +NAME="AEN 889"6487 +NAME="AEN923" 5812 6488 +></A 5813 6489 +><H2 … … 5817 6493 +CLASS="REFSYNOPSISDIV" 5818 6494 +><A 5819 +NAME="AEN 892"6495 +NAME="AEN926" 5820 6496 +></A 5821 6497 +><H2 … … 5873 6549 +CLASS="REFSECT1" 5874 6550 +><A 5875 +NAME="AEN9 13"6551 +NAME="AEN947" 5876 6552 +></A 5877 6553 +><H2 … … 5892 6568 +CLASS="REFSECT1" 5893 6569 +><A 5894 +NAME="AEN9 19"6570 +NAME="AEN953" 5895 6571 +></A 5896 6572 +><H2 … … 5922 6598 +CLASS="REFSECT1" 5923 6599 +><A 5924 +NAME="AEN9 31"6600 +NAME="AEN965" 5925 6601 +></A 5926 6602 +><H2 … … 5952 6628 +CLASS="REFSECT1" 5953 6629 +><A 5954 +NAME="AEN9 38"6630 +NAME="AEN972" 5955 6631 +></A 5956 6632 +><H2 … … 5962 6638 +> requires <CODE 5963 6639 +CLASS="CONSTANT" 5964 +>CAP_NET_RAW IO</CODE6640 +>CAP_NET_RAW</CODE 5965 6641 +> capability 5966 6642 +to be executed. It is safe to be used as set-uid root.</P … … 5969 6645 +CLASS="REFSECT1" 5970 6646 +><A 5971 +NAME="AEN9 43"6647 +NAME="AEN977" 5972 6648 +></A 5973 6649 +><H2 … … 6004 6680 +VALIGN="top" 6005 6681 +><A 6006 +HREF="r 790.html"6682 +HREF="r819.html" 6007 6683 +ACCESSKEY="P" 6008 6684 +>Prev</A … … 6022 6698 +VALIGN="top" 6023 6699 +><A 6024 +HREF="r9 49.html"6700 +HREF="r983.html" 6025 6701 +ACCESSKEY="N" 6026 6702 +>Next</A … … 6050 6726 +> 6051 6727 \ No newline at end of file 6052 diff -Naur iputils-s201 01006.orig/doc/r949.html iputils-s20101006/doc/r949.html6053 --- iputils-s201 01006.orig/doc/r949.html 1969-12-31 19:00:00.000000000 -05006054 +++ iputils-s201 01006/doc/r949.html 2011-01-08 20:09:49.614834740 -05006728 diff -Naur iputils-s20121221.orig/doc/r983.html iputils-s20121221/doc/r983.html 6729 --- iputils-s20121221.orig/doc/r983.html 1970-01-01 00:00:00.000000000 +0000 6730 +++ iputils-s20121221/doc/r983.html 2013-01-04 10:38:35.000000000 +0000 6055 6731 @@ -0,0 +1,376 @@ 6056 +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">6732 +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 6057 6733 +<HTML 6058 6734 +><HEAD … … 6067 6743 +REL="PREVIOUS" 6068 6744 +TITLE="traceroute6" 6069 +HREF="r 884.html"><LINK6745 +HREF="r918.html"><LINK 6070 6746 +REL="NEXT" 6071 +TITLE=" rdisc"6072 +HREF="r10 22.html"></HEAD6747 +TITLE="ninfod" 6748 +HREF="r1056.html"></HEAD 6073 6749 +><BODY 6074 6750 +CLASS="REFENTRY" … … 6098 6774 +VALIGN="bottom" 6099 6775 +><A 6100 +HREF="r 884.html"6776 +HREF="r918.html" 6101 6777 +ACCESSKEY="P" 6102 6778 +>Prev</A … … 6112 6788 +VALIGN="bottom" 6113 6789 +><A 6114 +HREF="r10 22.html"6790 +HREF="r1056.html" 6115 6791 +ACCESSKEY="N" 6116 6792 +>Next</A … … 6129 6805 +CLASS="REFNAMEDIV" 6130 6806 +><A 6131 +NAME="AEN9 54"6807 +NAME="AEN988" 6132 6808 +></A 6133 6809 +><H2 … … 6137 6813 +CLASS="REFSYNOPSISDIV" 6138 6814 +><A 6139 +NAME="AEN9 57"6815 +NAME="AEN991" 6140 6816 +></A 6141 6817 +><H2 … … 6155 6831 +CLASS="REFSECT1" 6156 6832 +><A 6157 +NAME="AEN9 62"6833 +NAME="AEN996" 6158 6834 +></A 6159 6835 +><H2 … … 6166 6842 +Trivial File Transfer Protocol 6167 6843 +(<A 6168 +HREF=" ftp://ftp.isi.edu/in-notes/rfc1350.txt"6844 +HREF="http://tools.ietf.org/rfc/rfc1350.txt" 6169 6845 +TARGET="_top" 6170 6846 +>RFC1350</A … … 6213 6889 +> is used together with 6214 6890 +<A 6215 +HREF="r 691.html"6891 +HREF="r720.html" 6216 6892 +><SPAN 6217 6893 +CLASS="CITEREFENTRY" … … 6227 6903 +conventions. See 6228 6904 +<A 6229 +HREF="r 691.html"6905 +HREF="r720.html" 6230 6906 +><SPAN 6231 6907 +CLASS="CITEREFENTRY" … … 6241 6917 +CLASS="REFSECT1" 6242 6918 +><A 6243 +NAME="AEN 986"6919 +NAME="AEN1020" 6244 6920 +></A 6245 6921 +><H2 … … 6295 6971 +CLASS="REFSECT1" 6296 6972 +><A 6297 +NAME="AEN 997"6973 +NAME="AEN1031" 6298 6974 +></A 6299 6975 +><H2 … … 6301 6977 +><P 6302 6978 +><A 6303 +HREF="r 691.html"6979 +HREF="r720.html" 6304 6980 +><SPAN 6305 6981 +CLASS="CITEREFENTRY" … … 6328 7004 +CLASS="REFSECT1" 6329 7005 +><A 6330 +NAME="AEN10 10"7006 +NAME="AEN1044" 6331 7007 +></A 6332 7008 +><H2 … … 6350 7026 +CLASS="REFSECT1" 6351 7027 +><A 6352 +NAME="AEN10 16"7028 +NAME="AEN1050" 6353 7029 +></A 6354 7030 +><H2 … … 6385 7061 +VALIGN="top" 6386 7062 +><A 6387 +HREF="r 884.html"7063 +HREF="r918.html" 6388 7064 +ACCESSKEY="P" 6389 7065 +>Prev</A … … 6403 7079 +VALIGN="top" 6404 7080 +><A 6405 +HREF="r10 22.html"7081 +HREF="r1056.html" 6406 7082 +ACCESSKEY="N" 6407 7083 +>Next</A … … 6423 7099 +ALIGN="right" 6424 7100 +VALIGN="top" 6425 +> rdisc</TD7101 +>ninfod</TD 6426 7102 +></TR 6427 7103 +></TABLE … … 6431 7107 +> 6432 7108 \ No newline at end of file 6433 diff -Naur iputils-s201 01006.orig/doc/rarpd.8 iputils-s20101006/doc/rarpd.86434 --- iputils-s201 01006.orig/doc/rarpd.8 1969-12-31 19:00:00.000000000 -05006435 +++ iputils-s201 01006/doc/rarpd.8 2011-01-08 20:09:51.270811811 -05007109 diff -Naur iputils-s20121221.orig/doc/rarpd.8 iputils-s20121221/doc/rarpd.8 7110 --- iputils-s20121221.orig/doc/rarpd.8 1970-01-01 00:00:00.000000000 +0000 7111 +++ iputils-s20121221/doc/rarpd.8 2013-01-04 10:38:27.000000000 +0000 6436 7112 @@ -0,0 +1,84 @@ 6437 7113 +.\" This manpage has been automatically generated by docbook2man … … 6440 7116 +.\" Please send any bug reports, improvements, comments, patches, 6441 7117 +.\" etc. to Steve Cheng <steve@ggi-project.org>. 6442 +.TH "RARPD" "8" "0 8 January 2011" "iputils-101006" "System Manager's Manual: iputils"7118 +.TH "RARPD" "8" "04 January 2013" "iputils-121221" "System Manager's Manual: iputils" 6443 7119 +.SH NAME 6444 7120 +rarpd \- answer RARP REQUESTs … … 6507 7183 +.SH "SECURITY" 6508 7184 +.PP 6509 +\fBrarpd\fR requires CAP_NET_RAW IOcapability7185 +\fBrarpd\fR requires CAP_NET_RAW capability 6510 7186 +to listen and send RARP and ARP packets. It also needs CAP_NET_ADMIN 6511 7187 +to give to kernel hint for ARP resolution; this is not strictly required, … … 6519 7195 +and the latest versions are available in source form at 6520 7196 +http://www.skbuff.net/iputils/iputils-current.tar.bz2. 6521 diff -Naur iputils-s201 01006.orig/doc/rdisc.8 iputils-s20101006/doc/rdisc.86522 --- iputils-s201 01006.orig/doc/rdisc.8 1969-12-31 19:00:00.000000000 -05006523 +++ iputils-s201 01006/doc/rdisc.8 2011-01-08 20:09:51.527155543 -05006524 @@ -0,0 +1,1 10@@7197 diff -Naur iputils-s20121221.orig/doc/rdisc.8 iputils-s20121221/doc/rdisc.8 7198 --- iputils-s20121221.orig/doc/rdisc.8 1970-01-01 00:00:00.000000000 +0000 7199 +++ iputils-s20121221/doc/rdisc.8 2013-01-04 10:38:27.000000000 +0000 7200 @@ -0,0 +1,122 @@ 6525 7201 +.\" This manpage has been automatically generated by docbook2man 6526 7202 +.\" from a DocBook document. This tool can be found at: … … 6528 7204 +.\" Please send any bug reports, improvements, comments, patches, 6529 7205 +.\" etc. to Steve Cheng <steve@ggi-project.org>. 6530 +.TH "RDISC" "8" "0 8 January 2011" "iputils-101006" "System Manager's Manual: iputils"7206 +.TH "RDISC" "8" "04 January 2013" "iputils-121221" "System Manager's Manual: iputils" 6531 7207 +.SH NAME 6532 7208 +rdisc \- network router discovery daemon 6533 7209 +.SH SYNOPSIS 6534 7210 + 6535 +\fBrdisc\fR [\fB-abdf stvV\fR] [\fB\fIsend_address\fB\fR] [\fB\fIreceive_address\fB\fR]7211 +\fBrdisc\fR [\fB-abdfrstvV\fR] [\fB-p \fIpreference\fB\fR] [\fB-T \fImax_interval\fB\fR] [\fB\fIsend_address\fB\fR] [\fB\fIreceive_address\fB\fR] 6536 7212 + 6537 7213 +.SH "DESCRIPTION" … … 6566 7242 +Server side of router discovery protocol is supported by Cisco IOS 6567 7243 +and by any more or less complete UNIX routing daemon, f.e \fBgated\fR. 7244 +Or, \fBrdisc\fR can act as responder, if compiled with -DRDISC_SERVER. 6568 7245 +.SH "OPTIONS" 6569 7246 +.TP … … 6589 7266 +\fB-s\fR must be specified. 6590 7267 +.TP 7268 +\fB-r\fR 7269 +Responder mode, available only if compiled with -DRDISC_SERVER. 7270 +.TP 6591 7271 +\fB-s\fR 6592 7272 +Send three \fBsolicitation\fR messages initially to quickly discover … … 6595 7275 +exits with a non-zero exit code if it can not find any routers. 6596 7276 +This can be overridden with the \fB-f\fR option. 7277 +.TP 7278 +\fB-p \fIpreference\fB\fR 7279 +Set preference in advertisement. 7280 +Available only with -r option. 7281 +.TP 7282 +\fB-T \fImax_interval\fB\fR 7283 +Set maximum advertisement interval in seconds. Default is 600 secs. 7284 +Available only with -r option. 6597 7285 +.TP 6598 7286 +\fB-t\fR … … 6625 7313 +.SH "SECURITY" 6626 7314 +.PP 6627 +\fBrdisc\fR requires CAP_NET_RAW IOto listen7315 +\fBrdisc\fR requires CAP_NET_RAW to listen 6628 7316 +and send ICMP messages and capability CAP_NET_ADMIN 6629 7317 +to update routing tables. … … 6633 7321 +and the latest versions are available in source form at 6634 7322 +http://www.skbuff.net/iputils/iputils-current.tar.bz2. 6635 diff -Naur iputils-s201 01006.orig/doc/tftpd.8 iputils-s20101006/doc/tftpd.86636 --- iputils-s201 01006.orig/doc/tftpd.8 1969-12-31 19:00:00.000000000 -05006637 +++ iputils-s201 01006/doc/tftpd.8 2011-01-08 20:09:51.723407498 -05007323 diff -Naur iputils-s20121221.orig/doc/tftpd.8 iputils-s20121221/doc/tftpd.8 7324 --- iputils-s20121221.orig/doc/tftpd.8 1970-01-01 00:00:00.000000000 +0000 7325 +++ iputils-s20121221/doc/tftpd.8 2013-01-04 10:38:27.000000000 +0000 6638 7326 @@ -0,0 +1,85 @@ 6639 7327 +.\" This manpage has been automatically generated by docbook2man … … 6642 7330 +.\" Please send any bug reports, improvements, comments, patches, 6643 7331 +.\" etc. to Steve Cheng <steve@ggi-project.org>. 6644 +.TH "TFTPD" "8" "0 8 January 2011" "iputils-101006" "System Manager's Manual: iputils"7332 +.TH "TFTPD" "8" "04 January 2013" "iputils-121221" "System Manager's Manual: iputils" 6645 7333 +.SH NAME 6646 7334 +tftpd \- Trivial File Transfer Protocol server … … 6722 7410 +and the latest versions are available in source form at 6723 7411 +http://www.skbuff.net/iputils/iputils-current.tar.bz2. 6724 diff -Naur iputils-s201 01006.orig/doc/tracepath.8 iputils-s20101006/doc/tracepath.86725 --- iputils-s201 01006.orig/doc/tracepath.8 1969-12-31 19:00:00.000000000 -05006726 +++ iputils-s201 01006/doc/tracepath.8 2011-01-08 20:09:52.154780955 -05006727 @@ -0,0 +1, 97@@7412 diff -Naur iputils-s20121221.orig/doc/tracepath.8 iputils-s20121221/doc/tracepath.8 7413 --- iputils-s20121221.orig/doc/tracepath.8 1970-01-01 00:00:00.000000000 +0000 7414 +++ iputils-s20121221/doc/tracepath.8 2013-01-04 10:38:27.000000000 +0000 7415 @@ -0,0 +1,100 @@ 6728 7416 +.\" This manpage has been automatically generated by docbook2man 6729 7417 +.\" from a DocBook document. This tool can be found at: … … 6731 7419 +.\" Please send any bug reports, improvements, comments, patches, 6732 7420 +.\" etc. to Steve Cheng <steve@ggi-project.org>. 6733 +.TH "TRACEPATH" "8" "0 8 January 2011" "iputils-101006" "System Manager's Manual: iputils"7421 +.TH "TRACEPATH" "8" "04 January 2013" "iputils-121221" "System Manager's Manual: iputils" 6734 7422 +.SH NAME 6735 7423 +tracepath, tracepath6 \- traces path to a network host discovering MTU along this path 6736 7424 +.SH SYNOPSIS 6737 7425 + 6738 +\fBtracepath\fR [\fB-n\fR] [\fB-b\fR] [\fB-l \fIpktlen\fB\fR] \fB\fIdestination\fB\fR [\fB\fIport\fB\fR]7426 +\fBtracepath\fR [\fB-n\fR] [\fB-b\fR] [\fB-l \fIpktlen\fB\fR] [\fB-p \fIport\fB\fR] \fB\fIdestination\fB\fR 6739 7427 + 6740 7428 +.SH "DESCRIPTION" … … 6748 7436 +and classic example of application of Linux error queues. 6749 7437 +The situation with IPv4 is worse, because commercial 6750 +IP routers do not return enough information in icmperror messages.7438 +IP routers do not return enough information in ICMP error messages. 6751 7439 +Probably, it will change, when they will be updated. 6752 7440 +For now it uses Van Jacobson's trick, sweeping a range … … 6762 7450 +\fB-l\fR 6763 7451 +Sets the initial packet length to \fIpktlen\fR instead of 6764 +65536 for \fBtracepath\fR or 128000 for \fBtracepath6\fR. 7452 +65535 for \fBtracepath\fR or 128000 for \fBtracepath6\fR. 7453 +.TP 7454 +\fB-p\fR 7455 +Sets the initial destination port to use. 6765 7456 +.SH "OUTPUT" 6766 7457 +.PP … … 6785 7476 +.PP 6786 7477 +The rest of line shows miscellaneous information about path to 6787 +the correspinding hetwork hop. As rule it contains value of RTT.7478 +the correspinding network hop. As rule it contains value of RTT. 6788 7479 +Additionally, it can show Path MTU, when it changes. 6789 7480 +If the path is asymmetric … … 6823 7514 +and the latest versions are available in source form at 6824 7515 +http://www.skbuff.net/iputils/iputils-current.tar.bz2. 6825 diff -Naur iputils-s201 01006.orig/doc/traceroute6.8 iputils-s20101006/doc/traceroute6.86826 --- iputils-s201 01006.orig/doc/traceroute6.8 1969-12-31 19:00:00.000000000 -05006827 +++ iputils-s201 01006/doc/traceroute6.8 2011-01-08 20:09:52.114781859 -05007516 diff -Naur iputils-s20121221.orig/doc/traceroute6.8 iputils-s20121221/doc/traceroute6.8 7517 --- iputils-s20121221.orig/doc/traceroute6.8 1970-01-01 00:00:00.000000000 +0000 7518 +++ iputils-s20121221/doc/traceroute6.8 2013-01-04 10:38:27.000000000 +0000 6828 7519 @@ -0,0 +1,42 @@ 6829 7520 +.\" This manpage has been automatically generated by docbook2man … … 6832 7523 +.\" Please send any bug reports, improvements, comments, patches, 6833 7524 +.\" etc. to Steve Cheng <steve@ggi-project.org>. 6834 +.TH "TRACEROUTE6" "8" "0 8 January 2011" "iputils-101006" "System Manager's Manual: iputils"7525 +.TH "TRACEROUTE6" "8" "04 January 2013" "iputils-121221" "System Manager's Manual: iputils" 6835 7526 +.SH NAME 6836 7527 +traceroute6 \- traces path to a network host … … 6862 7553 +.SH "SECURITY" 6863 7554 +.PP 6864 +\fBtracepath6\fR requires CAP_NET_RAW IOcapability7555 +\fBtracepath6\fR requires CAP_NET_RAW capability 6865 7556 +to be executed. It is safe to be used as set-uid root. 6866 7557 +.SH "AVAILABILITY" … … 6869 7560 +and the latest versions are available in source form at 6870 7561 +http://www.skbuff.net/iputils/iputils-current.tar.bz2. 7562 diff -Naur iputils-s20121221.orig/ping6.c iputils-s20121221/ping6.c 7563 --- iputils-s20121221.orig/ping6.c 2012-12-21 14:01:07.000000000 +0000 7564 +++ iputils-s20121221/ping6.c 2013-08-06 18:09:09.448346619 +0000 7565 @@ -168,8 +168,10 @@ 7566 7567 #ifdef USE_GNUTLS 7568 # include <gnutls/openssl.h> 7569 -#else 7570 +# define USE_CRYPTO 7571 +#elif defined USE_OPENSSL 7572 # include <openssl/md5.h> 7573 +# define USE_CRYPTO 7574 #endif 7575 7576 /* Node Information query */ 7577 @@ -326,6 +328,7 @@ 7578 #if !PING6_NONCE_MEMORY 7579 static int niquery_nonce(__u8 *nonce, int fill) 7580 { 7581 +# ifdef USE_CRYPTO 7582 static __u8 digest[MD5_DIGEST_LENGTH]; 7583 static int seq = -1; 7584 7585 @@ -348,6 +351,10 @@ 7586 return -1; 7587 return ntohsp((__u16 *)nonce); 7588 } 7589 +# else 7590 + fprintf(stderr, "ping6: function not available; crypto disabled\n"); 7591 + exit(3); 7592 +# endif 7593 } 7594 #endif 7595 7596 @@ -502,6 +509,7 @@ 7597 7598 static int niquery_option_subject_name_handler(int index, const char *arg) 7599 { 7600 +#ifdef USE_CRYPTO 7601 static char nigroup_buf[INET6_ADDRSTRLEN + 1 + IFNAMSIZ]; 7602 unsigned char *dnptrs[2], **dpp, **lastdnptr; 7603 int n; 7604 @@ -627,6 +635,10 @@ 7605 free(idn); 7606 free(name); 7607 exit(1); 7608 +#else 7609 + fprintf(stderr, "ping6: function not available; crypto disabled\n"); 7610 + exit(3); 7611 +#endif 7612 } 7613 7614 int niquery_option_help_handler(int index, const char *arg) 7615 diff -Naur iputils-s20121221.orig/tracepath.c iputils-s20121221/tracepath.c 7616 --- iputils-s20121221.orig/tracepath.c 2012-12-21 14:01:07.000000000 +0000 7617 +++ iputils-s20121221/tracepath.c 2013-08-06 18:08:56.048346586 +0000 7618 @@ -73,13 +73,10 @@ 7619 7620 void print_host(const char *a, const char *b, int both) 7621 { 7622 - int plen = 0; 7623 - printf("%s", a); 7624 - plen = strlen(a); 7625 - if (both) { 7626 - printf(" (%s)", b); 7627 - plen += strlen(b) + 3; 7628 - } 7629 + int plen; 7630 + plen = printf("%s", a); 7631 + if (both) 7632 + plen += printf(" (%s)", b); 7633 if (plen >= HOST_COLUMN_SIZE) 7634 plen = HOST_COLUMN_SIZE - 1; 7635 printf("%*s", HOST_COLUMN_SIZE - plen, ""); 7636 diff -Naur iputils-s20121221.orig/tracepath6.c iputils-s20121221/tracepath6.c 7637 --- iputils-s20121221.orig/tracepath6.c 2012-12-21 14:01:07.000000000 +0000 7638 +++ iputils-s20121221/tracepath6.c 2013-08-06 18:08:56.048346586 +0000 7639 @@ -86,13 +86,10 @@ 7640 7641 void print_host(const char *a, const char *b, int both) 7642 { 7643 - int plen = 0; 7644 - printf("%s", a); 7645 - plen = strlen(a); 7646 - if (both) { 7647 - printf(" (%s)", b); 7648 - plen += strlen(b) + 3; 7649 - } 7650 + int plen; 7651 + plen = printf("%s", a); 7652 + if (both) 7653 + plen += printf(" (%s)", b); 7654 if (plen >= HOST_COLUMN_SIZE) 7655 plen = HOST_COLUMN_SIZE - 1; 7656 printf("%*s", HOST_COLUMN_SIZE - plen, ""); -
patches/perl-5.18.1-Configure_multilib-1.patch
r1c9985f r026bb5d 1 1 Submitted By: Ryan Oliver <ryan dot oliver at pha dot com dot au> 2 Date: 201 0-08-012 Date: 2013-08-13 3 3 Initial Package Version: 5.8.8 4 4 Origin: Ryan Oliver … … 10 10 Against 5.10.1 By Jim Gifford on 2009-08-25 11 11 Against 5.12.1 By Joe Ciccone on 2010-08-01 12 Against 5.16.1 By William Harrington on 2012-08-26 13 Rename for 5.16.2 by William Harrington on 2012-11-01 12 14 13 diff -Naur perl-5.12.1.orig/Configure perl-5.12.1/Configure 14 --- perl-5.12.1.orig/Configure 2010-05-13 18:01:07.000000000 -0400 15 +++ perl-5.12.1/Configure 2010-08-01 18:18:19.614326794 -0400 16 @@ -6254,6 +6254,8 @@ 15 Rediffed: Against 5.18.0 by William Harrington on 2013-05-28 16 Rediffed: Against 5.18.1 by William Harrington on 2013-08-13 17 18 diff -Naur perl-5.18.1.orig/Configure perl-5.18.1/Configure 19 --- perl-5.18.1.orig/Configure 2013-08-12 02:44:47.000000000 +0000 20 +++ perl-5.18.1/Configure 2013-08-13 16:47:20.188650223 +0000 21 @@ -6219,6 +6219,8 @@ 17 22 : The default "style" setting is made in installstyle.U 18 23 case "$installstyle" in … … 23 28 esac 24 29 eval $prefixit 25 @@ -6 502,6 +6504,8 @@30 @@ -6467,6 +6469,8 @@ 26 31 case "$sitelib" in 27 32 '') case "$installstyle" in … … 32 37 esac 33 38 ;; 34 @@ - 7020,6 +7024,8 @@39 @@ -6986,6 +6990,8 @@ 35 40 prog=`echo $package | $sed 's/-*[0-9.]*$//'` 36 41 case "$installstyle" in -
patches/perl-5.18.1-libc-1.patch
r1c9985f r026bb5d 1 1 Submitted By: Jonathan Norman <Jonathan at bluesquarelinux.co.uk> 2 Date: 201 1-05-172 Date: 2013-08-13 3 3 Initial Package Version: 5.8.8 4 4 Origin: Ryan Oliver … … 11 11 Against 5.12.1 By Joe Ciccone on 2010-08-01 12 12 Against 5.14.0 By Jonathan Norman on 2011-05-17 13 Against 5.16.1 by William Harrington on 2012-08-26 14 Rename for 5.16.2 by William Harrington on 2012-11-01 13 15 14 diff -Naur perl-5.14.0.orig/hints/linux.sh perl-5.14.0/hints/linux.sh 15 --- perl-5.14.0.orig/hints/linux.sh 2011-05-17 10:15:25.836817125 +0000 16 +++ perl-5.14.0/hints/linux.sh 2011-05-17 10:17:15.472650338 +0000 17 @@ -63,9 +63,9 @@ 16 Rediffed: Against 5.18.0 by William Harrington on 2013-05-27 17 Rediffed: Against 5.18.1 by William Harrington on 2013-08-13 18 19 diff -Naur perl-5.18.1.orig/hints/linux.sh perl-5.18.1/hints/linux.sh 20 --- perl-5.18.1.orig/hints/linux.sh 2013-08-12 02:44:48.000000000 +0000 21 +++ perl-5.18.1/hints/linux.sh 2013-08-13 16:46:38.594653439 +0000 22 @@ -66,9 +66,9 @@ 18 23 # We don't use __GLIBC__ and __GLIBC_MINOR__ because they 19 24 # are insufficiently precise to distinguish things like … … 28 33 29 34 # Configure may fail to find lstat() since it's a static/inline 30 @@ -4 61,3 +461,9 @@35 @@ -456,3 +456,9 @@ 31 36 libswanted="$libswanted pthread" 32 37 ;;
Note:
See TracChangeset
for help on using the changeset viewer.