diff options
Diffstat (limited to 'templates/man7/arp.7.pot')
-rw-r--r-- | templates/man7/arp.7.pot | 712 |
1 files changed, 712 insertions, 0 deletions
diff --git a/templates/man7/arp.7.pot b/templates/man7/arp.7.pot new file mode 100644 index 00000000..e3ee8ba9 --- /dev/null +++ b/templates/man7/arp.7.pot @@ -0,0 +1,712 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2024-03-01 16:52+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. type: TH +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "arp" +msgstr "" + +#. type: TH +#: archlinux fedora-40 fedora-rawhide mageia-cauldron +#, no-wrap +msgid "2023-10-31" +msgstr "" + +#. type: TH +#: archlinux fedora-40 fedora-rawhide mageia-cauldron +#, no-wrap +msgid "Linux man-pages 6.06" +msgstr "" + +#. type: SH +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "arp - Linux ARP kernel module." +msgstr "" + +#. type: SH +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"This kernel protocol module implements the Address Resolution Protocol " +"defined in RFC\\ 826. It is used to convert between Layer2 hardware " +"addresses and IPv4 protocol addresses on directly connected networks. The " +"user normally doesn't interact directly with this module except to configure " +"it; instead it provides a service for other protocols in the kernel." +msgstr "" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"A user process can receive ARP packets by using B<packet>(7) sockets. " +"There is also a mechanism for managing the ARP cache in user-space by using " +"B<netlink>(7) sockets. The ARP table can also be controlled via " +"B<ioctl>(2) on any B<AF_INET> socket." +msgstr "" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"The ARP module maintains a cache of mappings between hardware addresses and " +"protocol addresses. The cache has a limited size so old and less frequently " +"used entries are garbage-collected. Entries which are marked as permanent " +"are never deleted by the garbage-collector. The cache can be directly " +"manipulated by the use of ioctls and its behavior can be tuned by the I</" +"proc> interfaces described below." +msgstr "" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"When there is no positive feedback for an existing mapping after some time " +"(see the I</proc> interfaces below), a neighbor cache entry is considered " +"stale. Positive feedback can be gotten from a higher layer; for example " +"from a successful TCP ACK. Other protocols can signal forward progress " +"using the B<MSG_CONFIRM> flag to B<sendmsg>(2). When there is no forward " +"progress, ARP tries to reprobe. It first tries to ask a local arp daemon " +"B<app_solicit> times for an updated MAC address. If that fails and an old " +"MAC address is known, a unicast probe is sent B<ucast_solicit> times. If " +"that fails too, it will broadcast a new ARP request to the network. " +"Requests are sent only when there is data queued for sending." +msgstr "" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"Linux will automatically add a nonpermanent proxy arp entry when it receives " +"a request for an address it forwards to and proxy arp is enabled on the " +"receiving interface. When there is a reject route for the target, no proxy " +"arp entry is added." +msgstr "" + +#. type: SS +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "Ioctls" +msgstr "" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"Three ioctls are available on all B<AF_INET> sockets. They take a pointer " +"to a I<struct arpreq> as their argument." +msgstr "" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "" +"struct arpreq {\n" +" struct sockaddr arp_pa; /* protocol address */\n" +" struct sockaddr arp_ha; /* hardware address */\n" +" int arp_flags; /* flags */\n" +" struct sockaddr arp_netmask; /* netmask of protocol address */\n" +" char arp_dev[16];\n" +"};\n" +msgstr "" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"B<SIOCSARP>, B<SIOCDARP> and B<SIOCGARP> respectively set, delete, and get " +"an ARP mapping. Setting and deleting ARP maps are privileged operations and " +"may be performed only by a process with the B<CAP_NET_ADMIN> capability or " +"an effective UID of 0." +msgstr "" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"I<arp_pa> must be an B<AF_INET> address and I<arp_ha> must have the same " +"type as the device which is specified in I<arp_dev>. I<arp_dev> is a zero-" +"terminated string which names a device." +msgstr "" + +#. type: tbl table +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "I<arp_flags>" +msgstr "" + +#. type: tbl table +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "flag" +msgstr "" + +#. type: tbl table +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "meaning" +msgstr "" + +#. type: tbl table +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "ATF_COM" +msgstr "" + +#. type: tbl table +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "Lookup complete" +msgstr "" + +#. type: tbl table +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "ATF_PERM" +msgstr "" + +#. type: tbl table +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "Permanent entry" +msgstr "" + +#. type: tbl table +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "ATF_PUBL" +msgstr "" + +#. type: tbl table +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "Publish entry" +msgstr "" + +#. type: tbl table +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "ATF_USETRAILERS" +msgstr "" + +#. type: tbl table +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "Trailers requested" +msgstr "" + +#. type: tbl table +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "ATF_NETMASK" +msgstr "" + +#. type: tbl table +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "Use a netmask" +msgstr "" + +#. type: tbl table +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "ATF_DONTPUB" +msgstr "" + +#. type: tbl table +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "Don't answer" +msgstr "" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"If the B<ATF_NETMASK> flag is set, then I<arp_netmask> should be valid. " +"Linux 2.2 does not support proxy network ARP entries, so this should be set " +"to 0xffffffff, or 0 to remove an existing proxy arp entry. " +"B<ATF_USETRAILERS> is obsolete and should not be used." +msgstr "" + +#. type: SS +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "/proc interfaces" +msgstr "" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"ARP supports a range of I</proc> interfaces to configure parameters on a " +"global or per-interface basis. The interfaces can be accessed by reading or " +"writing the I</proc/sys/net/ipv4/neigh/*/*> files. Each interface in the " +"system has its own directory in I</proc/sys/net/ipv4/neigh/>. The setting " +"in the \"default\" directory is used for all newly created devices. Unless " +"otherwise specified, time-related interfaces are specified in seconds." +msgstr "" + +#. type: TP +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "I<anycast_delay> (since Linux 2.2)" +msgstr "" + +#. Precisely: 2.1.79 +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"The maximum number of jiffies to delay before replying to a IPv6 neighbor " +"solicitation message. Anycast support is not yet implemented. Defaults to " +"1 second." +msgstr "" + +#. type: TP +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "I<app_solicit> (since Linux 2.2)" +msgstr "" + +#. Precisely: 2.1.79 +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"The maximum number of probes to send to the user space ARP daemon via " +"netlink before dropping back to multicast probes (see I<mcast_solicit>). " +"Defaults to 0." +msgstr "" + +#. type: TP +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "I<base_reachable_time> (since Linux 2.2)" +msgstr "" + +#. Precisely: 2.1.79 +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"Once a neighbor has been found, the entry is considered to be valid for at " +"least a random value between I<base_reachable_time>/2 and " +"3*I<base_reachable_time>/2. An entry's validity will be extended if it " +"receives positive feedback from higher level protocols. Defaults to 30 " +"seconds. This file is now obsolete in favor of I<base_reachable_time_ms>." +msgstr "" + +#. type: TP +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "I<base_reachable_time_ms> (since Linux 2.6.12)" +msgstr "" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"As for I<base_reachable_time>, but measures time in milliseconds. Defaults " +"to 30000 milliseconds." +msgstr "" + +#. type: TP +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "I<delay_first_probe_time> (since Linux 2.2)" +msgstr "" + +#. Precisely: 2.1.79 +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"Delay before first probe after it has been decided that a neighbor is " +"stale. Defaults to 5 seconds." +msgstr "" + +#. type: TP +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "I<gc_interval> (since Linux 2.2)" +msgstr "" + +#. Precisely: 2.1.79 +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"How frequently the garbage collector for neighbor entries should attempt to " +"run. Defaults to 30 seconds." +msgstr "" + +#. type: TP +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "I<gc_stale_time> (since Linux 2.2)" +msgstr "" + +#. Precisely: 2.1.79 +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"Determines how often to check for stale neighbor entries. When a neighbor " +"entry is considered stale, it is resolved again before sending data to it. " +"Defaults to 60 seconds." +msgstr "" + +#. type: TP +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "I<gc_thresh1> (since Linux 2.2)" +msgstr "" + +#. Precisely: 2.1.79 +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"The minimum number of entries to keep in the ARP cache. The garbage " +"collector will not run if there are fewer than this number of entries in the " +"cache. Defaults to 128." +msgstr "" + +#. type: TP +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "I<gc_thresh2> (since Linux 2.2)" +msgstr "" + +#. Precisely: 2.1.79 +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"The soft maximum number of entries to keep in the ARP cache. The garbage " +"collector will allow the number of entries to exceed this for 5 seconds " +"before collection will be performed. Defaults to 512." +msgstr "" + +#. type: TP +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "I<gc_thresh3> (since Linux 2.2)" +msgstr "" + +#. Precisely: 2.1.79 +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"The hard maximum number of entries to keep in the ARP cache. The garbage " +"collector will always run if there are more than this number of entries in " +"the cache. Defaults to 1024." +msgstr "" + +#. type: TP +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "I<locktime> (since Linux 2.2)" +msgstr "" + +#. Precisely: 2.1.79 +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"The minimum number of jiffies to keep an ARP entry in the cache. This " +"prevents ARP cache thrashing if there is more than one potential mapping " +"(generally due to network misconfiguration). Defaults to 1 second." +msgstr "" + +#. type: TP +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "I<mcast_solicit> (since Linux 2.2)" +msgstr "" + +#. Precisely: 2.1.79 +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"The maximum number of attempts to resolve an address by multicast/broadcast " +"before marking the entry as unreachable. Defaults to 3." +msgstr "" + +#. type: TP +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "I<proxy_delay> (since Linux 2.2)" +msgstr "" + +#. Precisely: 2.1.79 +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"When an ARP request for a known proxy-ARP address is received, delay up to " +"I<proxy_delay> jiffies before replying. This is used to prevent network " +"flooding in some cases. Defaults to 0.8 seconds." +msgstr "" + +#. type: TP +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "I<proxy_qlen> (since Linux 2.2)" +msgstr "" + +#. Precisely: 2.1.79 +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"The maximum number of packets which may be queued to proxy-ARP addresses. " +"Defaults to 64." +msgstr "" + +#. type: TP +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "I<retrans_time> (since Linux 2.2)" +msgstr "" + +#. Precisely: 2.1.79 +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"The number of jiffies to delay before retransmitting a request. Defaults to " +"1 second. This file is now obsolete in favor of I<retrans_time_ms>." +msgstr "" + +#. type: TP +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "I<retrans_time_ms> (since Linux 2.6.12)" +msgstr "" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"The number of milliseconds to delay before retransmitting a request. " +"Defaults to 1000 milliseconds." +msgstr "" + +#. type: TP +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "I<ucast_solicit> (since Linux 2.2)" +msgstr "" + +#. Precisely: 2.1.79 +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"The maximum number of attempts to send unicast probes before asking the ARP " +"daemon (see I<app_solicit>). Defaults to 3." +msgstr "" + +#. type: TP +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "I<unres_qlen> (since Linux 2.2)" +msgstr "" + +#. Precisely: 2.1.79 +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"The maximum number of packets which may be queued for each unresolved " +"address by other network layers. Defaults to 3." +msgstr "" + +#. type: SH +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "VERSIONS" +msgstr "" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"The I<struct arpreq> changed in Linux 2.0 to include the I<arp_dev> member " +"and the ioctl numbers changed at the same time. Support for the old ioctls " +"was dropped in Linux 2.2." +msgstr "" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"Support for proxy arp entries for networks (netmask not equal 0xffffffff) " +"was dropped in Linux 2.2. It is replaced by automatic proxy arp setup by " +"the kernel for all reachable hosts on other interfaces (when forwarding and " +"proxy arp is enabled for the interface)." +msgstr "" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "The I<neigh/*> interfaces did not exist before Linux 2.2." +msgstr "" + +#. type: SH +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"Some timer settings are specified in jiffies, which is architecture- and " +"kernel version-dependent; see B<time>(7)." +msgstr "" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"There is no way to signal positive feedback from user space. This means " +"connection-oriented protocols implemented in user space will generate " +"excessive ARP traffic, because ndisc will regularly reprobe the MAC " +"address. The same problem applies for some kernel protocols (e.g., NFS over " +"UDP)." +msgstr "" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"This man page mashes together functionality that is IPv4-specific with " +"functionality that is shared between IPv4 and IPv6." +msgstr "" + +#. type: SH +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "B<capabilities>(7), B<ip>(7), B<arpd>(8)" +msgstr "" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"RFC\\ 826 for a description of ARP. RFC\\ 2461 for a description of IPv6 " +"neighbor discovery and the base algorithms used. Linux 2.2+ IPv4 ARP uses " +"the IPv6 algorithms when applicable." +msgstr "" + +#. type: TH +#: debian-bookworm opensuse-leap-15-6 +#, no-wrap +msgid "2022-12-15" +msgstr "" + +#. type: TH +#: debian-bookworm +#, no-wrap +msgid "Linux man-pages 6.03" +msgstr "" + +#. type: TH +#: debian-unstable opensuse-tumbleweed +#, no-wrap +msgid "2023-07-15" +msgstr "" + +#. type: TH +#: debian-unstable opensuse-tumbleweed +#, no-wrap +msgid "Linux man-pages 6.05.01" +msgstr "" + +#. type: TH +#: opensuse-leap-15-6 +#, no-wrap +msgid "Linux man-pages 6.04" +msgstr "" |