]> git.proxmox.com Git - pve-docs.git/commitdiff
pct: add auto-generated network options
authorDietmar Maurer <dietmar@proxmox.com>
Sat, 7 May 2016 09:16:32 +0000 (11:16 +0200)
committerDietmar Maurer <dietmar@proxmox.com>
Sat, 7 May 2016 09:16:32 +0000 (11:16 +0200)
Makefile
gen-pct-network-opts.pl [new file with mode: 0755]
pct-network-opts.adoc [new file with mode: 0644]
pct.adoc
pve-doc-generator.mk

index ee2150a88976706f33839f5e7f0fe90cdd4bd4a4..f876cd956cdcaa506cc5bad2938465e89e2074a6 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -86,6 +86,7 @@ GEN_DEB_SOURCES=                              \
 GEN_SCRIPTS=                                   \
        gen-datacenter.cfg.5-opts.pl            \
        gen-pct.conf.5-opts.pl                  \
+       gen-pct-network-opts.pl                 \
        gen-qm.conf.5-opts.pl                   \
        gen-vzdump.conf.5-opts.pl               \
        gen-pve-firewall-cluster-opts.pl        \
@@ -270,7 +271,7 @@ upload: ${GEN_DEB} ${DOC_DEB}
 update: clean
        rm -f *.5-opts.adoc *.1-synopsis.adoc *.8-synopsis.adoc
        rm -f api-viewer/apidata.js
-       rm -f pve-firewall-macros.adoc
+       rm -f pve-firewall-macros.adoc pct-network-opts.adoc
        make all
 
 clean:
diff --git a/gen-pct-network-opts.pl b/gen-pct-network-opts.pl
new file mode 100755 (executable)
index 0000000..5f3f5cc
--- /dev/null
@@ -0,0 +1,19 @@
+#!/usr/bin/perl
+
+use lib '.';
+use strict;
+use warnings;
+use PVE::RESTHandler;
+use PVE::LXC::Config;
+
+my $prop = PVE::LXC::Config->json_config_properties();
+
+my $phash = $prop->{net0};
+
+my $format = $phash->{format};
+
+my $typetext =  PVE::PodParser::schema_get_type_text($phash);
+
+print "`net[n]`: `$typetext`\n\n";
+
+print PVE::RESTHandler::dump_properties($format);
diff --git a/pct-network-opts.adoc b/pct-network-opts.adoc
new file mode 100644 (file)
index 0000000..571ea54
--- /dev/null
@@ -0,0 +1,57 @@
+`net[n]`: `name=<String> [,bridge=<vmbr<Number>>] [,firewall=<[1|0]>] [,gw=<GatewayIPv4>] [,gw6=<GatewayIPv6>] [,hwaddr=<MAC>] [,ip=<IPv4Format/CIDR>] [,ip6=<IPv6Format/CIDR>] [,mtu=<Number>] [,rate=<mbps>] [,tag=<VlanNo>] [,trunks=<vlanid[;vlanid...]>] [,type=<veth>]`
+
+`bridge`: `<vmbr<Number>>` ::
+
+Bridge to attach the network device to.
+
+`firewall`: `<[1|0]>` ::
+
+Controls whether this interface's firewall rules should be used.
+
+`gw`: `<GatewayIPv4>` ::
+
+Default gateway for IPv4 traffic.
+
+`gw6`: `<GatewayIPv6>` ::
+
+Default gateway for IPv6 traffic.
+
+`hwaddr`: `<MAC>` ::
+
+The interface MAC address. This is dynamically allocated by default, but
+you can set that statically if needed, for example to always have the same
+link-local IPv6 address. (lxc.network.hwaddr)
+
+`ip`: `<IPv4Format/CIDR>` ::
+
+IPv4 address in CIDR format.
+
+`ip6`: `<IPv6Format/CIDR>` ::
+
+IPv6 address in CIDR format.
+
+`mtu`: `<Number>` ::
+
+Maximum transfer unit of the interface. (lxc.network.mtu)
+
+`name`: `<String>` ::
+
+Name of the network device as seen from inside the container.
+(lxc.network.name)
+
+`rate`: `<mbps>` ::
+
+Apply rate limiting to the interface
+
+`tag`: `<VlanNo>` ::
+
+VLAN tag for this interface.
+
+`trunks`: `<vlanid[;vlanid...]>` ::
+
+VLAN ids to pass through the interface
+
+`type`: `(veth)` ::
+
+Network interface type.
+
index 2d52ad2b5fa6d92385c4e4ad712a8f1b603eeb47..0b69db1cea82153c0d845032dc6c11fd1128e717 100644 (file)
--- a/pct.adoc
+++ b/pct.adoc
@@ -391,7 +391,11 @@ group/others model.
 Container Network
 -----------------
 
-TODO
+You can configure up to 10 network interfaces for a single
+container. The corresponding options are called 'net0' to 'net9', and
+they can contain the following setting:
+
+include::pct-network-opts.adoc[]
 
 
 Managing Containers with 'pct'
index 066ff43104ef7dadf45cde061a0a11a9c949eec6..98bf3e796e6dd779b7e532a10696f3d2dc9f4b8a 100644 (file)
@@ -57,6 +57,7 @@ PVECEPH_MAN1_SOURCES=                 \
 PCT_MAN1_SOURCES=                      \
        pct.adoc                        \
        pct.1-synopsis.adoc             \
+       pct-network-opts.adoc           \
        ${PVE_COMMON_DOC_SOURCES}
 
 PCT_CONF_MAN5_SOURCES=                 \