Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
L
lxc
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chen Yisong
lxc
Commits
df3415e0
Commit
df3415e0
authored
Dec 17, 2013
by
Serge Hallyn
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add manpages for lxc-user-nic
Signed-off-by:
Serge Hallyn
<
serge.hallyn@ubuntu.com
>
parent
c073c147
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
347 additions
and
0 deletions
+347
-0
configure.ac
configure.ac
+2
-0
Makefile.am
doc/Makefile.am
+2
-0
lxc-user-nic.sgml.in
doc/lxc-user-nic.sgml.in
+184
-0
lxc-usernet.sgml.in
doc/lxc-usernet.sgml.in
+159
-0
No files found.
configure.ac
View file @
df3415e0
...
@@ -498,10 +498,12 @@ AC_CONFIG_FILES([
...
@@ -498,10 +498,12 @@ AC_CONFIG_FILES([
doc/lxc-top.sgml
doc/lxc-top.sgml
doc/lxc-unfreeze.sgml
doc/lxc-unfreeze.sgml
doc/lxc-unshare.sgml
doc/lxc-unshare.sgml
doc/lxc-user-nic.sgml
doc/lxc-version.sgml
doc/lxc-version.sgml
doc/lxc-wait.sgml
doc/lxc-wait.sgml
doc/lxc.conf.sgml
doc/lxc.conf.sgml
doc/lxc-usernet.sgml
doc/lxc.sgml
doc/lxc.sgml
doc/common_options.sgml
doc/common_options.sgml
doc/see_also.sgml
doc/see_also.sgml
...
...
doc/Makefile.am
View file @
df3415e0
...
@@ -35,10 +35,12 @@ man_MANS = \
...
@@ -35,10 +35,12 @@ man_MANS = \
lxc-stop.1
\
lxc-stop.1
\
lxc-unfreeze.1
\
lxc-unfreeze.1
\
lxc-unshare.1
\
lxc-unshare.1
\
lxc-user-nic.1
\
lxc-version.1
\
lxc-version.1
\
lxc-wait.1
\
lxc-wait.1
\
\
\
lxc.conf.5
\
lxc.conf.5
\
lxc-usernet.5
\
\
\
lxc.7
lxc.7
...
...
doc/lxc-user-nic.sgml.in
0 → 100644
View file @
df3415e0
<!--
lxc: linux Container library
(C) Copyright Canonical Ltd. 2013
Authors:
Serge Hallyn <serge.hallyn@ubuntu.com>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
-->
<!DOCTYPE refentry PUBLIC @docdtd@ [
<!ENTITY commonoptions SYSTEM "@builddir@/common_options.sgml">
<!ENTITY seealso SYSTEM "@builddir@/see_also.sgml">
]>
<refentry>
<docinfo><date>@LXC_GENERATE_DATE@</date></docinfo>
<refmeta>
<refentrytitle>lxc-user-nic</refentrytitle>
<manvolnum>1</manvolnum>
</refmeta>
<refnamediv>
<refname>lxc-user-nic</refname>
<refpurpose>
Create and attach a nic to another network namespace.
</refpurpose>
</refnamediv>
<refsynopsisdiv>
<cmdsynopsis>
<command>lxc-user-nic</command>
<arg choice="req"><replaceable>pid</replaceable></arg>
<arg choice="req"><replaceable>type</replaceable></arg>
<arg choice="req"><replaceable>bridge</replaceable></arg>
<arg choice="opt"><replaceable>nicname</replaceable></arg>
</cmdsynopsis>
</refsynopsisdiv>
<refsect1>
<title>Description</title>
<para>
<command>lxc-user-nic</command> is a setuid-root program with which
unprivileged users may create network interfaces for use by a lxc container.
</para>
<para>
It will consult the configuration file <filename>@LXC_USERNIC_CONF@</filename>
to determine number of interfaces which the calling user is allowed to
create, and which bridge he may attach them to. It tracks the
number of interfaces each user has created using the file
<filename>@LXC_USERNIC_DB@</filename>. It ensures that the calling
user is privileged over the network namespace to which the interface
will be attached.
</para>
</refsect1>
<refsect1>
<title>Options</title>
<variablelist>
<varlistentry>
<term>
<option><replaceable>pid</replaceable></option>
</term>
<listitem>
<para>
The process id for the task to whose network namespace the interface
should be attached.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<option><replaceable>type</replaceable></option>
</term>
<listitem>
<para>
The network interface type to attach. Currently only veth is
supported. With this type, two interfaces representing each
tunnel endpoint are created. One endpoint will be attached
to the specified bridge, while the other will be passed into
the container.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<option><replaceable>bridge</replaceable></option>
</term>
<listitem>
<para>
The bridge to which to attach the network interface, for
instance <filename>lxcbr0</filename>.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<option><replaceable>nicname</replaceable></option>
</term>
<listitem>
<para>
The desired interface name in the container. This will be
<filename>eth0</filename> if unspecified.
</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
&commonoptions;
<refsect1>
<title>See Also</title>
<simpara>
<citerefentry>
<refentrytitle><command>lxc</command></refentrytitle>
<manvolnum>1</manvolnum>
</citerefentry>,
<citerefentry>
<refentrytitle><command>lxc-start</command></refentrytitle>
<manvolnum>1</manvolnum>
</citerefentry>,
<citerefentry>
<refentrytitle><command>lxc-usernet.conf</command></refentrytitle>
<manvolnum>5</manvolnum>
</citerefentry>
</simpara>
</refsect1>
<refsect1>
<title>Author</title>
<para>Daniel Lezcano <email>daniel.lezcano@free.fr</email></para>
</refsect1>
</refentry>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:2
sgml-indent-data:t
sgml-parent-document:nil
sgml-default-dtd-file:nil
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
-->
doc/lxc-usernet.sgml.in
0 → 100644
View file @
df3415e0
<!--
lxc: linux Container library
(C) Copyright Canonical Ltd. 2013
Authors:
Serge Hallyn <serge.hallyn@ubuntu.com>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
-->
<!DOCTYPE refentry PUBLIC @docdtd@ [
<!ENTITY seealso SYSTEM "@builddir@/see_also.sgml">
]>
<refentry>
<docinfo><date>@LXC_GENERATE_DATE@</date></docinfo>
<refmeta>
<refentrytitle>lxc-usernet</refentrytitle>
<manvolnum>5</manvolnum>
</refmeta>
<refnamediv>
<refname>lxc-usernet</refname>
<refpurpose>
unprivileged user network administration file.
</refpurpose>
</refnamediv>
<refsect1>
<title>Description</title>
<para>
<filename>@LXC_USERNIC_CONF@</filename> controls the limits which the
program <command>lxc-user-nic</command> places on network interfaces
which an unprivileged user may create.
</para>
<refsect2>
<title>Configuration</title>
<para>
This file consists of multiple entries, one per line, of the form:
</para>
<para>
<command>user</command> <command>type</command> <command>bridge</command> <command>number</command>
</para>
<para>
Where
</para>
<variablelist>
<varlistentry>
<term>
<option>user</option>
</term>
<listitem>
<para>
is the username to whom this entry applies.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<option>type</option>
</term>
<listitem>
<para>
is the type of network interface being allowed. Only veth
is currently supported.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<option>bridge</option>
</term>
<listitem>
<para>
is the bridge to which the network interfaces may be attached, for
instance <filename>lxcbr0</filename>.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<option>number</option>
</term>
<listitem>
<para>
is the number of network interfaces of the given type which the
given user may attach to the given bridge, for instance <filename>2</filename>.
</para>
</listitem>
</varlistentry>
</variablelist>
</refsect2>
</refsect1>
<refsect1>
<title>See Also</title>
<simpara>
<citerefentry>
<refentrytitle><command>lxc</command></refentrytitle>
<manvolnum>1</manvolnum>
</citerefentry>,
<citerefentry>
<refentrytitle><command>lxc-user-nic</command></refentrytitle>
<manvolnum>1</manvolnum>
</citerefentry>
</simpara>
</refsect1>
<refsect1>
<title>Author</title>
<para>Daniel Lezcano <email>daniel.lezcano@free.fr</email></para>
</refsect1>
</refentry>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:2
sgml-indent-data:t
sgml-parent-document:nil
sgml-default-dtd-file:nil
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
-->
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment