Browsing French translation

Don't show this notice anymore
Before translating, be sure to go through Ubuntu Translators instructions and French guidelines.
110 of 55 results
49.
Usage: nmcli connection add { ARGUMENTS | help }

ARGUMENTS := COMMON_OPTIONS TYPE_SPECIFIC_OPTIONS SLAVE_OPTIONS IP_OPTIONS [-- ([+|-]<setting>.<property> <value>)+]

COMMON_OPTIONS:
type <type>
ifname <interface name> | "*"
[con-name <connection name>]
[autoconnect yes|no]
[save yes|no]
[master <master (ifname, or connection UUID or name)>]
[slave-type <master connection type>]

TYPE_SPECIFIC_OPTIONS:
ethernet: [mac <MAC address>]
[cloned-mac <cloned MAC address>]
[mtu <MTU>]

wifi: ssid <SSID>
[mac <MAC address>]
[cloned-mac <cloned MAC address>]
[mtu <MTU>]
[mode infrastructure|ap|adhoc]

wimax: [mac <MAC address>]
[nsp <NSP>]

pppoe: username <PPPoE username>
[password <PPPoE password>]
[service <PPPoE service name>]
[mtu <MTU>]
[mac <MAC address>]

gsm: apn <APN>
[user <username>]
[password <password>]

cdma: [user <username>]
[password <password>]

infiniband: [mac <MAC address>]
[mtu <MTU>]
[transport-mode datagram | connected]
[parent <ifname>]
[p-key <IPoIB P_Key>]

bluetooth: [addr <bluetooth address>]
[bt-type panu|nap|dun-gsm|dun-cdma]

vlan: dev <parent device (connection UUID, ifname, or MAC)>
id <VLAN ID>
[flags <VLAN flags>]
[ingress <ingress priority mapping>]
[egress <egress priority mapping>]
[mtu <MTU>]

bond: [mode balance-rr (0) | active-backup (1) | balance-xor (2) | broadcast (3) |
802.3ad (4) | balance-tlb (5) | balance-alb (6)]
[primary <ifname>]
[miimon <num>]
[downdelay <num>]
[updelay <num>]
[arp-interval <num>]
[arp-ip-target <num>]
[lacp-rate slow (0) | fast (1)]

bond-slave: master <master (ifname, or connection UUID or name)>

team: [config <file>|<raw JSON data>]

team-slave: master <master (ifname, or connection UUID or name)>
[config <file>|<raw JSON data>]

bridge: [stp yes|no]
[priority <num>]
[forward-delay <2-30>]
[hello-time <1-10>]
[max-age <6-40>]
[ageing-time <0-1000000>]
[multicast-snooping yes|no]
[mac <MAC address>]

bridge-slave: master <master (ifname, or connection UUID or name)>
[priority <0-63>]
[path-cost <1-65535>]
[hairpin yes|no]

vpn: vpn-type vpnc|openvpn|pptp|openconnect|openswan|libreswan|ssh|l2tp|iodine|...
[user <username>]

olpc-mesh: ssid <SSID>
[channel <1-13>]
[dhcp-anycast <MAC address>]

adsl: username <username>
protocol pppoa|pppoe|ipoatm
[password <password>]
[encapsulation vcmux|llc]

tun: mode tun|tap
[owner <UID>]
[group <GID>]
[pi yes|no]
[vnet-hdr yes|no]
[multi-queue yes|no]

ip-tunnel: mode ipip|gre|sit|isatap|vti|ip6ip6|ipip6|ip6gre|vti6
remote <remote endpoint IP>
[local <local endpoint IP>]
[dev <parent device (ifname or connection UUID)>]

macsec: dev <parent device (connection UUID, ifname, or MAC)>
mode <psk|eap>
[cak <key> ckn <key>]
[encrypt yes|no]
[port 1-65534]


macvlan: dev <parent device (connection UUID, ifname, or MAC)>
mode vepa|bridge|private|passthru|source
[tap yes|no]

vxlan: id <VXLAN ID>
[remote <IP of multicast group or remote address>]
[local <source IP>]
[dev <parent device (ifname or connection UUID)>]
[source-port-min <0-65535>]
[source-port-max <0-65535>]
[destination-port <0-65535>]

wpan: [short-addr <0x0000-0xffff>]
[pan-id <0x0000-0xffff>]
[page <default|0-31>]
[channel <default|0-26>]
[mac <MAC address>]

6lowpan: dev <parent device (connection UUID, ifname, or MAC)>
dummy:

SLAVE_OPTIONS:
bridge: [priority <0-63>]
[path-cost <1-65535>]
[hairpin yes|no]

team: [config <file>|<raw JSON data>]

IP_OPTIONS:
[ip4 <IPv4 address>] [gw4 <IPv4 gateway>]
[ip6 <IPv6 address>] [gw6 <IPv6 gateway>]

There are line breaks here. Each one represents a line break. Start a new line in the equivalent position in the translation.
There are leading/trailing spaces here. Each one represents a space character. Enter a space in the equivalent position in the translation.
(no translation yet)
Located in ../src/nmcli/connections.c:1005
150.
remove [<value>|<index>|<option name>] :: delete the value

Removes the property value. For single-valued properties, this sets the
property back to its default value. For container-type properties, this removes
all the values of that property or you can specify an argument to remove just
a single item or option. The argument is either a value or index of the item to
remove, or an option name (for properties with named options).

Examples: nmcli ipv4.dns> remove 8.8.8.8
nmcli ipv4.dns> remove 2
nmcli bond.options> remove downdelay

There are line breaks here. Each one represents a line break. Start a new line in the equivalent position in the translation.
There are leading/trailing spaces here. Each one represents a space character. Enter a space in the equivalent position in the translation.
(no translation yet)
Located in src/nmcli/connections.c:7301
264.
Usage: nmcli device modify { ARGUMENTS | help }

ARGUMENTS := <ifname> ([+|-]<setting>.<property> <value>)+

Modify one or more properties that are currently active on the device without modifying
the connection profile. The changes have immediate effect. For multi-valued
properties you can use optional '+' or '-' prefix to the property name.
The '+' sign allows appending items instead of overwriting the whole value.
The '-' sign allows removing selected items instead of the whole value.

Examples:
nmcli dev mod em1 ipv4.method manual ipv4.addr "192.168.1.2/24, 10.10.1.5/8"
nmcli dev mod em1 +ipv4.dns 8.8.4.4
nmcli dev mod em1 -ipv4.dns 1
nmcli dev mod em1 -ipv6.addr "abbe::cafe/56"
There are line breaks here. Each one represents a line break. Start a new line in the equivalent position in the translation.
(no translation yet)
Located in src/nmcli/devices.c:920
383.
Error: invalid reload flag '%s'. Allowed flags are: %s
(no translation yet)
Located in src/nmcli/general.c:669
625.
invalid IPv4 or subnet "%s"
(no translation yet)
Located in src/libnmc-setting/nm-meta-setting-desc.c:2278
741.
veth peer
(no translation yet)
Located in src/libnmc-setting/nm-meta-setting-desc.c:7593
776.
Hostname settings
(no translation yet)
Located in src/libnmc-setting/nm-meta-setting-desc.c:8476
787.
OVS External IDs
(no translation yet)
Located in src/libnmc-setting/nm-meta-setting-desc.c:8490
801.
Veth connection
(no translation yet)
Located in src/core/devices/nm-device-ethernet.c:1641 src/libnmc-setting/nm-meta-setting-desc.c:8504
859.
Configures AP isolation, which prevents communication between wireless devices connected to this AP. This property can be set to a value different from NM_TERNARY_DEFAULT (-1) only when the interface is configured in AP mode. If set to NM_TERNARY_TRUE (1), devices are not able to communicate with each other. This increases security because it protects devices against attacks from other clients in the network. At the same time, it prevents devices to access resources on the same wireless networks as file shares, printers, etc. If set to NM_TERNARY_FALSE (0), devices can talk to each other. When set to NM_TERNARY_DEFAULT (-1), the global default is used; in case the global default is unspecified it is assumed to be NM_TERNARY_FALSE (0).
(no translation yet)
Located in src/libnmc-setting/settings-docs.h.in:399
110 of 55 results

This translation is managed by Ubuntu French Translators, assigned by Ubuntu Translators.

You are not logged in. Please log in to work on translations.

Contributors to this translation: AO, Alexandre Croteau, Anne017, Arzach, AsuMagic, Benoit, BobMauchin, ButterflyOfFire, Claude Paroz, Copied by Zanata, Denis Choveaux, Emmanuel Besses, Gaël Rousseau, Glyca, Gregory Chatain, Guillaume F, Jean-Marc, Jeremy Munsch, Jiremek, Mathieu Trudel-Lapierre, Matthieu JOOSSEN, Michel ABASSI, Musigreg, Nicolas Jolet, Nicolas Viry, Olivier Febwin, PEIGNOT Kévin, Pascal Maugendre, Pierre Slamich, Rafaël Carré, Raphael Tournoy, Sam Friedmann, Sam Friedmann, Sebastien Seguin, Simon THOBY, SorcierDZ, StatnMap, Thibaut Panis, Thomas.M, Vincent Tschanz, Wendtebda Yougbare, Xavier, Yann Dìnendal, baj, dhenry, ljanda, londumas, marius, tib20.