summaryrefslogtreecommitdiffstats
path: root/share/examples/jails/rc.conf.jails
diff options
context:
space:
mode:
Diffstat (limited to 'share/examples/jails/rc.conf.jails')
-rw-r--r--share/examples/jails/rc.conf.jails76
1 files changed, 76 insertions, 0 deletions
diff --git a/share/examples/jails/rc.conf.jails b/share/examples/jails/rc.conf.jails
new file mode 100644
index 0000000..674dce5
--- /dev/null
+++ b/share/examples/jails/rc.conf.jails
@@ -0,0 +1,76 @@
+# $FreeBSD$
+
+###############################################################################
+############################# JAIL CONFIGURATIONS #############################
+###############################################################################
+
+jail_enable="YES"
+jail_list="xxx"
+
+#
+# Global presets for all jails
+#
+jail_devfs_enable="YES" # mount devfs
+# Optional (default off)
+#jail_sysvipc_allow="YES" # Allow SysV Interprocess Comm.
+#jail_set_hostname_allow="YES" # Allow hostname to change
+
+#
+# To allow dhclient(8) to work inside a jail, make sure the following appears
+# in /etc/devfs.rules (which should be created if it doesn't exist):
+#
+# [devfsrules_jail=11]
+# add include $devfsrules_hide_all
+# add include $devfsrules_unhide_basic
+# add include $devfsrules_unhide_login
+# add path 'bpf*' unhide
+#
+
+############################################################ JAILS
+
+# NETGRAPH TEMPLATE (copy/pate; then replace {name} with short name for jail)
+#
+# {name}
+#
+#jail_{name}_hostname="{name}.shxd.cx" # hostname
+#jail_{name}_rootdir="/vm/{name}" # root directory
+#jail_{name}_vnet_interfaces="ng0_{name}" # vnet interface(s)
+#jail_{name}_exec_prestart0="jng bridge {name} em0" # bridge interface(s)
+#jail_{name}_exec_poststop0="jng shutdown {name}" # destroy interface(s)
+# Optional (default off)
+#jail_{name}_devfs_ruleset="11" # rule to unhide bpf for DHCP
+#jail_{name}_mount_enable="YES" # mount /etc/fstab.{name}
+
+# IF_BRIDGE TEMPLATE (copy/pate; then replace {name} with short name for jail)
+#
+# {name}
+#
+#jail_{name}_hostname="{name}.shxd.cx" # hostname
+#jail_{name}_rootdir="/vm/{name}" # root directory
+#jail_{name}_vnet_interfaces="e0b_{name}" # vnet interface(s)
+#jail_{name}_exec_prestart0="jib addm {name} em0" # bridge interface(s)
+#jail_{name}_exec_poststop0="jib destroy {name}" # destroy interface(s)
+# Optional (default off)
+#jail_{name}_devfs_ruleset="11" # rule to unhide bpf for DHCP
+#jail_{name}_mount_enable="YES" # mount /etc/fstab.{name}
+
+#
+# XXX
+#
+jail_xxx_hostname="xxx.yyy" # hostname
+jail_xxx_rootdir="/vm/xxx" # root directory
+# netgraph
+jail_xxx_vnet_interface="ng0_xxx" # vnet interface(s)
+jail_xxx_exec_prestart0="jng bridge xxx em0" # bridge interface(s)
+jail_xxx_exec_poststop0="jng shutdown xxx" # destroy interface(s)
+# if_bridge
+#jail_xxx_vnet_interface="e0b_xxx" # vnet interface(s)
+#jail_xxx_exec_prestart0="jib addm xxx em0" # bridge interface(s)
+#jail_xxx_exec_poststop0="jib destroy xxx" # destroy interface(s)
+# Optional (default off)
+#jail_xxx_devfs_ruleset="11" # rule to unhide bpf for DHCP
+#jail_xxx_mount_enable="YES" # mount /etc/fstab.xxx
+
+################################################################################
+# END
+################################################################################
OpenPOWER on IntegriCloud