\fB\-a\fR, \fB\-\-all\fR
Display all values currently available.
.TP
+\fB\-\-deprecated\fR
+Include deprecated parameters to
+.B \-\-all
+values listing.
+.TP
\fB\-b\fR, \fB\-\-binary\fR
Print value without new line.
.TP
/sbin/sysctl \-a \-\-pattern 'net.ipv4.conf.(eth|wlan)0.arp'
.br
/sbin/sysctl \-\-system \-\-pattern '^net.ipv6'
+.SH DEPRECATED PARAMETERS
+The
+.B base_reachable_time
+and
+.B retrans_time
+are deprecated. The sysctl command does not allow changing values of there
+parameters. Users who insist to use deprecated kernel interfaces should values
+to /proc file system by other means. For example:
+.PP
+echo 256 > /proc/sys/net/ipv6/neigh/eth0/base_reachable_time
.SH FILES
.I /proc/sys
.br
*/
static const char PROC_PATH[] = "/proc/sys/";
static const char DEFAULT_PRELOAD[] = "/etc/sysctl.conf";
+static const char *DEPRECATED[] = {
+ "base_reachable_time",
+ "retrans_time",
+ ""
+};
+static bool IgnoreDeprecated;
static bool NameOnly;
static bool PrintName;
static bool PrintNewline;
fputs(_(" -a, --all display all variables\n"
" -A alias of -a\n"
" -X alias of -a\n"
+ " --deprecated include deprecated parameters to listing\n"
" -b, --binary print value without new line\n"
" -e, --ignore ignore unknown variables errors\n"
" -N, --names print variable names without values\n"
return rc;
}
+int is_deprecated(char *filename)
+{
+ int i;
+ for (i = 0; strlen(DEPRECATED[i]); i++) {
+ if (strcmp(DEPRECATED[i], filename) == 0)
+ return 1;
+ }
+ return 0;
+}
+
/*
* Display all the sysctl settings
*/
readdir(dp); /* skip .. */
while ((de = readdir(dp))) {
char *restrict tmpdir;
+ if (IgnoreDeprecated && is_deprecated(de->d_name))
+ continue;
tmpdir =
(char *restrict) xmalloc(strlen(path) +
strlen(de->d_name) +
outname[equals - name] = 0;
/* change / to . */
slashdot(outname, '/', '.');
+ if(is_deprecated(strrchr(outname, '.') + 1)) {
+ xwarnx(_("%s is deprecated, value not set"), outname);
+ goto out;
+ }
if (stat(tmpname, &ts) < 0) {
if (!IgnoreError) {
const char *preloadfile = DEFAULT_PRELOAD;
enum {
- SYSTEM_OPTION = CHAR_MAX + 1
+ DEPRECATED_OPTION = CHAR_MAX + 1,
+ SYSTEM_OPTION
};
static const struct option longopts[] = {
{"all", no_argument, NULL, 'a'},
+ {"deprecated", no_argument, NULL, DEPRECATED_OPTION},
{"binary", no_argument, NULL, 'b'},
{"ignore", no_argument, NULL, 'e'},
{"names", no_argument, NULL, 'N'},
PrintNewline = true;
IgnoreError = false;
Quiet = false;
+ IgnoreDeprecated = true;
if (argc < 2)
Usage(stderr);
case 'X': /* same as -a -x */
DisplayAllOpt = true;
break;
+ case DEPRECATED_OPTION:
+ IgnoreDeprecated = false;
+ break;
case SYSTEM_OPTION:
IgnoreError = true;
return PreloadSystem();