The Funtoo Linux project has transitioned to "Hobby Mode" and this wiki is now read-only.
Difference between revisions of "Funtoo:Networking/Configuration"
(move from netif. to net.) |
|||
Line 55: | Line 55: | ||
<console> | <console> | ||
# ##i##cd /etc/init.d | # ##i##cd /etc/init.d | ||
# ##i##ln -s netif.tmpl | # ##i##ln -s netif.tmpl net.eth0 | ||
# ##i##rc-update add | # ##i##rc-update add net.eth0 default | ||
# ##i##echo template=dhcpcd > /etc/conf.d/ | # ##i##echo template=dhcpcd > /etc/conf.d/net.eth0 | ||
# ##i##rc | # ##i##rc | ||
</console> | </console> | ||
The last command, <code>rc</code>, causes <code> | The last command, <code>rc</code>, causes <code>net.eth0</code> to be started. | ||
=== Server Network Configuration === | === Server Network Configuration === | ||
Line 69: | Line 69: | ||
Here are the key components of the template-based network configuration system: | Here are the key components of the template-based network configuration system: | ||
;<tt>/etc/init.d/ | ;<tt>/etc/init.d/loopback</tt>: An init script that configures the localhost interface. This script is always enabled and is part of the boot process. | ||
;<tt>/etc/netif.d</tt>: This is a directory that contains various network configuration templates. Each of these templates is focused on configuring a particular type of network interface, such as a general static IP-based interface, a bridge interface, a bond interface, etc. | ;<tt>/etc/netif.d</tt>: This is a directory that contains various network configuration templates. Each of these templates is focused on configuring a particular type of network interface, such as a general static IP-based interface, a bridge interface, a bond interface, etc. | ||
;<tt>/etc/init.d/netif.tmpl</tt>: This is the master init script for the template-based network configuration system. New interfaces are added to your system by creating '''symbolic links''' to this file in <tt>/etc/init.d</tt>. | ;<tt>/etc/init.d/netif.tmpl</tt>: This is the master init script for the template-based network configuration system. New interfaces are added to your system by creating '''symbolic links''' to this file in <tt>/etc/init.d</tt>. | ||
So, if you wanted to use this system to configure <tt>eth0</tt> with a static IP address, you would create a <tt> | So, if you wanted to use this system to configure <tt>eth0</tt> with a static IP address, you would create a <tt>net.eth0</tt> symlink to <tt>netif.tmpl</tt> as follows: | ||
<console># ##i##cd /etc/init.d | <console># ##i##cd /etc/init.d | ||
# ##i##ln -s netif.tmpl | # ##i##ln -s netif.tmpl net.eth0</console> | ||
Then, you would create an <tt>/etc/conf.d/ | Then, you would create an <tt>/etc/conf.d/net.eth0</tt> configuration file that would specify which template to use from the <tt>/etc/netif.d</tt> directory: | ||
<pre> | <pre> | ||
Line 89: | Line 89: | ||
To complete our static IP network configuration we would need to: | To complete our static IP network configuration we would need to: | ||
<console># ##i##rc-update add | <console># ##i##rc-update add net.eth0 default</console> | ||
When configuring your own static network interface, one of <tt>ipaddr</tt> or <tt>ipaddrs</tt> is required and should specify the IP address(es) to configure for this interface, in "a.b.c.d/netmask" format. Optional parameters include <tt>gateway</tt>, which defines a default gateway for your entire network, and if set should specify the gateway's IP address. In addition, <tt>domain</tt> and <tt>nameservers</tt> (space-separated if more than one) can be used to specify DNS information for this interface. | When configuring your own static network interface, one of <tt>ipaddr</tt> or <tt>ipaddrs</tt> is required and should specify the IP address(es) to configure for this interface, in "a.b.c.d/netmask" format. Optional parameters include <tt>gateway</tt>, which defines a default gateway for your entire network, and if set should specify the gateway's IP address. In addition, <tt>domain</tt> and <tt>nameservers</tt> (space-separated if more than one) can be used to specify DNS information for this interface. | ||
Line 132: | Line 132: | ||
==== VLAN Variables ==== | ==== VLAN Variables ==== | ||
VLAN support is enabled by default for all network configuration scripts. If a network script has a name in the format <tt> | VLAN support is enabled by default for all network configuration scripts. If a network script has a name in the format <tt>net.ethX.Y</tt>, then it is assumed to be a VLAN interface referencing trunk <tt>ethX</tt> and VLAN ID <tt>Y</tt>. If you desire a custom name for your VLAN interface, you can name your interface whatever you'd like and specify the following variables in your interface config: | ||
;<tt>trunk</tt>: VLAN trunk interface, e.g. "eth0" | ;<tt>trunk</tt>: VLAN trunk interface, e.g. "eth0" | ||
Line 148: | Line 148: | ||
OpenResolv will be used to set DNS information provided by the <tt>nameservers</tt>, <tt>domain</tt> and <tt>search</tt> variables when an interface is brought up. The OpenResolv framework will add entries to <tt>/etc/resolv.conf</tt>, and will also handle removing these entries when the interface is brought down. This way, <tt>/etc/resolv.conf</tt> should always contain current information and should not need to be manually edited by the system administrator. <tt>dhcpcd</tt> will use OpenResolv for updating system DNS information as well. | OpenResolv will be used to set DNS information provided by the <tt>nameservers</tt>, <tt>domain</tt> and <tt>search</tt> variables when an interface is brought up. The OpenResolv framework will add entries to <tt>/etc/resolv.conf</tt>, and will also handle removing these entries when the interface is brought down. This way, <tt>/etc/resolv.conf</tt> should always contain current information and should not need to be manually edited by the system administrator. <tt>dhcpcd</tt> will use OpenResolv for updating system DNS information as well. | ||
=== Multiple Network Configurations === | === Multiple Network Configurations === | ||
Line 166: | Line 157: | ||
<runlevel></tt> suffix. In this particular example, we could imagine a situation where we had two child runlevels named <tt>home</tt> and <tt>work</tt>: | <runlevel></tt> suffix. In this particular example, we could imagine a situation where we had two child runlevels named <tt>home</tt> and <tt>work</tt>: | ||
<pre>/etc/conf.d/ | <pre>/etc/conf.d/net.eth0.home | ||
/etc/conf.d/ | /etc/conf.d/net.eth0.work</pre>Note that this feature works for all init scripts, not just network configuration scripts. | ||
=== Interface Renaming === | === Interface Renaming === | ||
Funtoo network scripts now support interface renaming, so you can create an interface called <tt>lan</tt> if you would like. To do this, simply specify the MAC address of the interface you would like to rename using the <tt>macaddr</tt> variable: | Funtoo network scripts now support interface renaming, so you can create an interface called <tt>lan</tt> if you would like. To do this, simply specify the MAC address of the interface you would like to rename using the <tt>macaddr</tt> variable: | ||
<pre>macaddr="00:15:17:19:b6:a3"</pre>If this MAC address is part of the <tt> | <pre>macaddr="00:15:17:19:b6:a3"</pre>If this MAC address is part of the <tt>net.lan</tt> configuration file, then when this interface starts, whatever interface currently has the MAC address of 00:15:17:19:b6:a3 (i.e. <tt>eth5</tt>) will be renamed to <tt>lan</tt> prior to the interface being brought up, and will show up in <tt>ifconfig</tt> and <tt>ip</tt> commands as being an interface named <tt>lan</tt>. It is possible to combine this with the <tt>mac_replace</tt> variable to set a new MAC address, if desired. | ||
=== Basic VLAN Configuration === | === Basic VLAN Configuration === | ||
Line 184: | Line 175: | ||
</console> | </console> | ||
Then, configure the trunk interface using the <tt>interface-noip</tt> template. Assuming <tt>eth1</tt> is trunked, you would create the file <tt>/etc/conf.d/ | Then, configure the trunk interface using the <tt>interface-noip</tt> template. Assuming <tt>eth1</tt> is trunked, you would create the file <tt>/etc/conf.d/net.eth1</tt> with the following contents: | ||
<pre>template="interface-noip"</pre> | <pre>template="interface-noip"</pre> | ||
Line 192: | Line 183: | ||
<console> | <console> | ||
# ##i##cd /etc/init.d | # ##i##cd /etc/init.d | ||
# ##i##ln -s netif.tmpl | # ##i##ln -s netif.tmpl net.eth1 | ||
# ##i##rc-update add | # ##i##rc-update add net.eth1 default | ||
</console> | </console> | ||
Now, assuming you wanted to configure a VLAN of 32, you would create a config file named <tt>/etc/conf.d/ | Now, assuming you wanted to configure a VLAN of 32, you would create a config file named <tt>/etc/conf.d/net.eth1.32</tt> that looks something like this: | ||
<pre> | <pre> | ||
Line 212: | Line 203: | ||
</console> | </console> | ||
The Funtoo network configuration scripts will automatically recognize the filename <tt> | The Funtoo network configuration scripts will automatically recognize the filename <tt>net.eth1.32</tt> as being VLAN 32 of trunk interface <tt>net.eth1</tt>. | ||
When the VLAN interface is brought up, it will be named <tt>eth1.32</tt>. | When the VLAN interface is brought up, it will be named <tt>eth1.32</tt>. | ||
Line 218: | Line 209: | ||
=== Custom VLAN Names === | === Custom VLAN Names === | ||
However, sometimes you may want to turn off automatic file-based VLAN naming and give your VLAN interface a custom name, such as <tt>mgmt</tt>. To do this, you would set up the trunk interface in the exact same way as described above, but instead of creating a <tt> | However, sometimes you may want to turn off automatic file-based VLAN naming and give your VLAN interface a custom name, such as <tt>mgmt</tt>. To do this, you would set up the trunk interface in the exact same way as described above, but instead of creating a <tt>net.eth1.32</tt> interface, you would create a <tt>net.mgmt</tt> interface, and specify <tt>vlan</tt> and <tt>trunk</tt> in the <tt>/etc/conf.d/net.mgmt</tt> config file, as follows: | ||
<pre>template="interface" | <pre>template="interface" | ||
Line 228: | Line 219: | ||
When you specify <tt>trunk</tt> and <tt>vlan</tt> in the interface config file, filename-based auto-detecting of VLAN ID and trunk is disabled. Both <tt>trunk</tt> and <tt>vlan</tt> must be specified -- you can't specify just one. | When you specify <tt>trunk</tt> and <tt>vlan</tt> in the interface config file, filename-based auto-detecting of VLAN ID and trunk is disabled. Both <tt>trunk</tt> and <tt>vlan</tt> must be specified -- you can't specify just one. | ||
Then you would simply create a VLAN network interface symlink for <tt> | Then you would simply create a VLAN network interface symlink for <tt>net.mgmt</tt>: | ||
<console># ##i##cd /etc/init.d | <console># ##i##cd /etc/init.d | ||
# ##i##ln -s netif.tmpl | # ##i##ln -s netif.tmpl net.mgmt | ||
# ##i##rc-update add | # ##i##rc-update add net.mgmt default</console> | ||
When the VLAN interface is brought up, it will be named <tt>mgmt</tt>. | When the VLAN interface is brought up, it will be named <tt>mgmt</tt>. | ||
Line 256: | Line 247: | ||
<console> | <console> | ||
# ##i##cd /etc/init.d/ | # ##i##cd /etc/init.d/ | ||
# ##i##ln -s netif.tmpl | # ##i##ln -s netif.tmpl net.eth0 | ||
# ##i##ln -s netif.tmpl | # ##i##ln -s netif.tmpl net.eth1 | ||
</console> | </console> | ||
Then, configure the slave interfaces by creating <tt>/etc/conf.d/ | Then, configure the slave interfaces by creating <tt>/etc/conf.d/net.eth0</tt> and <tt>/etc/conf.d/net.eth1</tt> with the following contents: | ||
<pre> | <pre> | ||
Line 266: | Line 257: | ||
</pre> | </pre> | ||
Now, we will create the bond interface and make <tt> | Now, we will create the bond interface and make <tt>net.eth0</tt> and <tt>net.eth1</tt> slaves of this interface. Note that our bond interface can have any name. To demonstrate this, we will give it the name of "mybond" below: | ||
<console> | <console> | ||
# ##i##ln -s netif.tmpl | # ##i##ln -s netif.tmpl net.mybond | ||
# ##i##rc-update add | # ##i##rc-update add net.mybond default | ||
</console> | </console> | ||
Now we can configure "mybond" using its configuration file <tt>/etc/conf.d/ | Now we can configure "mybond" using its configuration file <tt>/etc/conf.d/net.mybond</tt>, just as we would a regular interface, except that we specify <tt>slaves</tt>: | ||
<pre> | <pre> | ||
Line 281: | Line 272: | ||
nameservers="10.0.1.1 10.0.1.2" | nameservers="10.0.1.1 10.0.1.2" | ||
domain="funtoo.org" | domain="funtoo.org" | ||
slaves=" | slaves="net.eth0 net.eth1" | ||
</pre> | </pre> | ||
In a bonded configuration, it is common to set the MTU to the maximum possible value supported by hardware to maximize throughput. In order to do this, simply set the MTU option in <tt>/etc/conf.d/ | In a bonded configuration, it is common to set the MTU to the maximum possible value supported by hardware to maximize throughput. In order to do this, simply set the MTU option in <tt>/etc/conf.d/net.mybond</tt> to the maximum value supported by your hardware. The network scripts will ensure that this MTU setting is applied to all slave interfaces: | ||
<pre> | <pre> | ||
Line 312: | Line 303: | ||
<console> | <console> | ||
# ##i##cd /etc/init.d/ | # ##i##cd /etc/init.d/ | ||
# ##i##ln -s netif.tmpl | # ##i##ln -s netif.tmpl net.eth0 | ||
# ##i##ln -s netif.tmpl | # ##i##ln -s netif.tmpl net.br0 | ||
# ##i##ln -s netif.tmpl | # ##i##ln -s netif.tmpl net.tap0 | ||
# ##i##rc-update add | # ##i##rc-update add net.br0 default | ||
# ##i##rc-update add | # ##i##rc-update add net.tap0 default | ||
</console> | </console> | ||
Then, configure the slave interface <tt>/etc/conf.d/ | Then, configure the slave interface <tt>/etc/conf.d/net.eth0</tt> : | ||
<pre> | <pre> | ||
Line 325: | Line 316: | ||
</pre> | </pre> | ||
Then, configure the slave interface <tt>/etc/conf.d/ | Then, configure the slave interface <tt>/etc/conf.d/net.tap0</tt> - note you only require group OR user, not both : | ||
<pre> | <pre> | ||
Line 334: | Line 325: | ||
</pre> | </pre> | ||
... and the bridge interface <tt>/etc/conf.d/ | ... and the bridge interface <tt>/etc/conf.d/net.br0</tt> : | ||
<pre> | <pre> | ||
Line 342: | Line 333: | ||
nameservers="10.0.1.1 10.0.1.2" | nameservers="10.0.1.1 10.0.1.2" | ||
domain="funtoo.org" | domain="funtoo.org" | ||
slaves=" | slaves="net.eth0 net.tap0" | ||
stp="on" | stp="on" | ||
forwarding=1 | forwarding=1 | ||
Line 397: | Line 388: | ||
* DNS configuration using <tt>domain</tt> and <tt>nameservers</tt> config settings. OpenResolv is used automatically. | * DNS configuration using <tt>domain</tt> and <tt>nameservers</tt> config settings. OpenResolv is used automatically. | ||
* VLAN configuration using auto-naming (<tt> | * VLAN configuration using auto-naming (<tt>net.ethX.Y</tt>) or via custom naming with <tt>trunk</tt> and <tt>vlan</tt> config settings. | ||
* Default IPv4 gateway and route configuration using the <tt>gateway</tt> and <tt>route</tt> settings. | * Default IPv4 gateway and route configuration using the <tt>gateway</tt> and <tt>route</tt> settings. | ||
* Default IPv6 gateway and route configuration using the <tt>gateway6</tt> and <tt>route6</tt> settings. | * Default IPv6 gateway and route configuration using the <tt>gateway6</tt> and <tt>route6</tt> settings. |
Revision as of 14:42, October 30, 2015
This document explains how to configure your network settings by explaining the network configuration functionality available in Funtoo Linux. Also covered is dhcpcd 5.x, Wi-Fi (IEEE 802.11) configuration, and the OpenResolv framework.
{{#layout:doc}}
Introduction
Funtoo Linux has its own core network configuration system that differs somewhat from upstream network configuration systems used in Gentoo Linux and OpenRC.
In this document, I will explain the unique additions and changes to the Funtoo network configuration and show you how to use this system to configure your network.
I'll also explain how to use dhcpcd
for managing network interfaces on DHCP-based networks, and will also cover OpenRC stacked runlevel configuration, Wi-Fi (IEEE 802.11) configuration, and the OpenResolv framework, which is enabled in Funtoo Linux by default.
A Gentle Introduction to Funtoo Network Configuration
Before I get into the technical details of configuring your network, it's important to understand that Funtoo Linux has a number of different options available to you for network configuration, with more likely to be added in the future. Each approach is different and has its own strengths and weaknesses, and this is, in my opinion, a good thing.
The Easy (Dynamic) Way
When configuring your network, one option is to skip traditional network configuration and simply rely on DHCP. This is by far the simplest method of configuring your network. If you are on a wired network, no other steps are typically required beyond enabling a DHCP client, and Funtoo Linux includes dhcpcd 6.x
by default.
Network Manager, Wicd
If you are going to use a third party package such as Network Manager or Wicd to manage your network then you do not need to configure DHCP at all. These packages configure DHCP for you. Simply emerge the package you want to use and start using it.
DHCP-Only Systems
If you are not planning to use a third-party package to manage your network interfaces, it is still extremely easy to set up DHCP networking, especially if you always use DHCP to connect to networks, which is common for desktops or laptops. In this scenario, we can simply enable dhcpcd
to run at system startup. It will run in the background and automatically look for DHCP servers on all your network interfaces, and will attempt to lease an IP address from any DHCP servers found.
If this sounds like what you want to do, then add dhcpcd
to your default runlevel as follows:
root # rc-update add dhcpcd default
To enable DHCP immediately, you would follow the previous command with an rc
command, which would start the dhcpcd
client you just added:
root # rc
If you're on a wired network and have the necessary drivers in your kernel, then this should get you going. For wireless networks, more steps are required to utilize your wireless hardware to associate with an access point, which will be covered later in this document.
Tweaking Dhcpcd
For now, it's important to note that dhcpcd 6.x
will manage all available network interfaces by default. If you want to run a DHCP client on all but one interface, or some other subset of interfaces, you can add the appropriate denyinterfaces
or allowinterfaces
glob pattern to /etc/dhcpcd.conf
:
# manage all interfaces but eth0 with dhcpcd denyinterfaces eth0
This can also be accomplished by modifying /etc/init.d/dhcpcd
directly and adding -Z ifglob
or -z ifglob
(the equivalent command-line parameters) to command_args
.
Using Funtoo Scripts for DHCP
You can also use the Funtoo Linux networking scripts to start a DHCP client just on a specific interface. This approach is best if you are planning to also do some advanced bridging, bonding or VLAN configuration on your machine along with DHCP, since you will be using the Funtoo Linux networking scripts for that too.
To use this variant approach, don't enable /etc/init.d/dhcpcd
directly. Instead, use the Funtoo Linux dhcpcd
template which will start dhcpcd on only one interface. Below, you will see the steps to do this. This is very similar to how we set up advanced network interfaces, which will be covered later in this documentation:
root # cd /etc/init.d root # ln -s netif.tmpl net.eth0 root # rc-update add net.eth0 default root # echo template=dhcpcd > /etc/conf.d/net.eth0 root # rc
The last command, rc
, causes net.eth0
to be started.
Server Network Configuration
For servers and advanced networking scenarios, Funtoo Linux offers its own modular, template-based network configuration system. This system offers a lot of flexibility for configuring network interfaces, essentially serving as a "network interface construction kit." This system can be used by itself, or even combined with dhcpcd, as shown in the previous section.
Here are the key components of the template-based network configuration system:
- /etc/init.d/loopback
- An init script that configures the localhost interface. This script is always enabled and is part of the boot process.
- /etc/netif.d
- This is a directory that contains various network configuration templates. Each of these templates is focused on configuring a particular type of network interface, such as a general static IP-based interface, a bridge interface, a bond interface, etc.
- /etc/init.d/netif.tmpl
- This is the master init script for the template-based network configuration system. New interfaces are added to your system by creating symbolic links to this file in /etc/init.d.
So, if you wanted to use this system to configure eth0 with a static IP address, you would create a net.eth0 symlink to netif.tmpl as follows:
root # cd /etc/init.d root # ln -s netif.tmpl net.eth0
Then, you would create an /etc/conf.d/net.eth0 configuration file that would specify which template to use from the /etc/netif.d directory:
template="interface" ipaddr="10.0.1.200/24" gateway="10.0.1.1" nameservers="10.0.1.1 10.0.1.2" domain="funtoo.org"
To complete our static IP network configuration we would need to:
root # rc-update add net.eth0 default
When configuring your own static network interface, one of ipaddr or ipaddrs is required and should specify the IP address(es) to configure for this interface, in "a.b.c.d/netmask" format. Optional parameters include gateway, which defines a default gateway for your entire network, and if set should specify the gateway's IP address. In addition, domain and nameservers (space-separated if more than one) can be used to specify DNS information for this interface.
Configuration Variables
Interface Variables
The ipaddr and ipaddrs variables are supported by the interface and bridge templates, and are used to specify a single or multiple IPv4 or IPv6 address(es) for the interface. IP addresses should be specified in 'IP/netmask' format, such as 10.0.0.1/24. Multiple IP addresses can be specified delimited by whitespace:
ipaddrs="10.0.0.1/24 10.0.0.2/24"
Broadcast Address
By default, a broadcast address will be calculated based on the IP address and network mask. If you need to manually specify a broadcast address, use the following format for your IP address:
ipaddrs="10.0.0.1/24;broadcast=10.0.1.255 10.0.0.2/24"
Not Specifying An Address
Note that in some cases, you may choose to not specify ipaddr or ipaddrs for a bridge template. That is allowed. If you don't want to specify an IP address for a regular interface, you can choose to use the interface template without an IP address specified in the config, or use the interface-noip template instead, for the sake of clarity.
Viewing All Configured IP Addresses
Also note that if you specify multiple IPv4 addresses, ifconfig will only show the first IP address. To view all IP addresses associated with the interface, use the ip addr show command.
General Variables
The following variables are enabled by default for all network scripts, and if specified will trigger a corresponding configuration action:
- nameservers
- Set DNS nameservers using OpenResolv. Specify multiple IPv4 or IPv6 nameservers like this: "1.2.3.4 1.2.3.5 1.2.3.6". Please note that OpenResolv treats 127.0.0.1 specially, and it indicates that you are running a local name resolver like dnsmasq or bind. OpenResolv will ignore all other name servers specified alongside 127.0.0.1. See man resolvconf and man resolvconf.conf for additional setup information.
- search
- Set DNS search information using OpenResolv.
- domain
- Set DNS domain using OpenResolv.
- gateway
- Define a default IPv4 gateway on this interface.
- gateway6
- Define a default IPv6 gateway on this interface.
- route
- Specify a semi-colon delimited list of IPv4 routes to apply when this interface is brought up. Will be appended to ip -4 route add.
- route6
- Specify a semi-colon delimited list of IPv6 routes to apply when this interface is brought up. Will be appended to ip -6 route add.
- mtu
- Set Maximum Transmit Unit for the interface
- mac_replace
- Replace existing MAC address with MAC address specified in this variable.
VLAN Variables
VLAN support is enabled by default for all network configuration scripts. If a network script has a name in the format net.ethX.Y, then it is assumed to be a VLAN interface referencing trunk ethX and VLAN ID Y. If you desire a custom name for your VLAN interface, you can name your interface whatever you'd like and specify the following variables in your interface config:
- trunk
- VLAN trunk interface, e.g. "eth0"
- vlan
- VLAN id, e.g. "32"
Bridge / Tap Variables
The following variables for configuring a functional bridge interface with optional tap interfaces:
- slaves
- Set slave interfaces of this interface (for bridges, etc.) All slaves will automatically be depended upon, and will also automatically have their mtu set to that of the current interface, if an mtu is specified for the current interface. This setting is required for the bond template and optional for the bridge template.
- stp
- Enables Spanning Tree Protocol on a bridge interface like this "stp=on"
- forwarding
- Enables forwarding on a bridge interface by calling sysctl; as this interface does not exist when sysctl is called by init, we do it here. If this is disabled, your bridge will not forward traffic back out onto the network. useage: "forwarding=1"
OpenResolv and resolv.conf
OpenResolv will be used to set DNS information provided by the nameservers, domain and search variables when an interface is brought up. The OpenResolv framework will add entries to /etc/resolv.conf, and will also handle removing these entries when the interface is brought down. This way, /etc/resolv.conf should always contain current information and should not need to be manually edited by the system administrator. dhcpcd will use OpenResolv for updating system DNS information as well.
Multiple Network Configurations
For information on how to have multiple, independent network configurations, please see Stacked Runlevels.
Alternate Configs
If you need to run the same service with different configuration parameters depending upon runlevel, then you'll be happy to know that you can specify runlevel-specific conf.d files by appending a . <runlevel> suffix. In this particular example, we could imagine a situation where we had two child runlevels named home and work:
/etc/conf.d/net.eth0.home /etc/conf.d/net.eth0.work
Note that this feature works for all init scripts, not just network configuration scripts.
Interface Renaming
Funtoo network scripts now support interface renaming, so you can create an interface called lan if you would like. To do this, simply specify the MAC address of the interface you would like to rename using the macaddr variable:
macaddr="00:15:17:19:b6:a3"
If this MAC address is part of the net.lan configuration file, then when this interface starts, whatever interface currently has the MAC address of 00:15:17:19:b6:a3 (i.e. eth5) will be renamed to lan prior to the interface being brought up, and will show up in ifconfig and ip commands as being an interface named lan. It is possible to combine this with the mac_replace variable to set a new MAC address, if desired.
Basic VLAN Configuration
The standard interface template supports VLANs. To use VLAN support, first ensure that your kernel was compiled with VLAN support (the module name is 8021q) :
root # grep CONFIG_VLAN /usr/src/linux/.config CONFIG_VLAN_8021Q=m CONFIG_VLAN_8021Q_GVRP=y
Then, configure the trunk interface using the interface-noip template. Assuming eth1 is trunked, you would create the file /etc/conf.d/net.eth1 with the following contents:
template="interface-noip"
Then, create a network interface symlink for the trunk and add it to your default runlevel:
root # cd /etc/init.d root # ln -s netif.tmpl net.eth1 root # rc-update add net.eth1 default
Now, assuming you wanted to configure a VLAN of 32, you would create a config file named /etc/conf.d/net.eth1.32 that looks something like this:
template="interface" ipaddr="1.2.3.4/24" gateway="1.2.3.1"# etc...
Then, create a VLAN network interface symlink and add it to your default runlevel:
root # cd /etc/init.d root # ln -s netif.tmpl netif.eth1.32 root # rc-update add netif.eth1.32 default
The Funtoo network configuration scripts will automatically recognize the filename net.eth1.32 as being VLAN 32 of trunk interface net.eth1.
When the VLAN interface is brought up, it will be named eth1.32.
Custom VLAN Names
However, sometimes you may want to turn off automatic file-based VLAN naming and give your VLAN interface a custom name, such as mgmt. To do this, you would set up the trunk interface in the exact same way as described above, but instead of creating a net.eth1.32 interface, you would create a net.mgmt interface, and specify vlan and trunk in the /etc/conf.d/net.mgmt config file, as follows:
template="interface" vlan="32" trunk="eth1" ipaddr="1.2.3.4/24" gateway="1.2.3.1" # etc...
When you specify trunk and vlan in the interface config file, filename-based auto-detecting of VLAN ID and trunk is disabled. Both trunk and vlan must be specified -- you can't specify just one.
Then you would simply create a VLAN network interface symlink for net.mgmt:
root # cd /etc/init.d root # ln -s netif.tmpl net.mgmt root # rc-update add net.mgmt default
When the VLAN interface is brought up, it will be named mgmt.
Bonding Configuration
Bonding allows you to aggregate multiple network interfaces into a single logical network interface, allowing for benefits in throughput as well as resiliency in the case that an individual interface may go down. This example shows how you would create a bonding interface (mybond) with a simple static ip setup, containing two slave devices (eth0 and eth1).
First, ensure that your kernel is configured to support bonding (the module name is bonding) :
user $ grep CONFIG_BONDING /usr/src/linux/.config CONFIG_BONDING=m
You'l want to ensure that CONFIG_BONDING is set to "m" or "y". You can find this kernel configuration option tucked under "Device Drivers" -> "Network Device Support" -> "Bonding driver support". Be sure that ifenslave is emerged (this package included in Funtoo stage3):
root # emerge ifenslave
Once bonding is enabled in the kernel, you will need to choose at least two devices to bond together. These will be set up as "slave" interfaces with no IP address.
root # cd /etc/init.d/ root # ln -s netif.tmpl net.eth0 root # ln -s netif.tmpl net.eth1
Then, configure the slave interfaces by creating /etc/conf.d/net.eth0 and /etc/conf.d/net.eth1 with the following contents:
template="interface-noip"
Now, we will create the bond interface and make net.eth0 and net.eth1 slaves of this interface. Note that our bond interface can have any name. To demonstrate this, we will give it the name of "mybond" below:
root # ln -s netif.tmpl net.mybond root # rc-update add net.mybond default
Now we can configure "mybond" using its configuration file /etc/conf.d/net.mybond, just as we would a regular interface, except that we specify slaves:
template="bond" ipaddr="10.0.1.200/24" gateway="10.0.1.1" nameservers="10.0.1.1 10.0.1.2" domain="funtoo.org" slaves="net.eth0 net.eth1"
In a bonded configuration, it is common to set the MTU to the maximum possible value supported by hardware to maximize throughput. In order to do this, simply set the MTU option in /etc/conf.d/net.mybond to the maximum value supported by your hardware. The network scripts will ensure that this MTU setting is applied to all slave interfaces:
mtu=9000
Bridge Configuration
When hosting virtual machines, it can be convenient to use a bridge setup. This example shows how you would create a bridge (br0) with a simple static ip setup, containing two slave devices (eth0, tap0).
First, ensure that your kernel is configured to support bridging (the module name is bridge) :
user $ grep CONFIG_BRIDGE /usr/src/linux/.config CONFIG_BRIDGE=m CONFIG_BRIDGE_IGMP_SNOOPING=y
Second, make sure you have the required software installed:
root # emerge -av bridge-utils usermode-utilities
Then, create the necessary symlinks for the interfaces and add them to your default runlevel :
root # cd /etc/init.d/ root # ln -s netif.tmpl net.eth0 root # ln -s netif.tmpl net.br0 root # ln -s netif.tmpl net.tap0 root # rc-update add net.br0 default root # rc-update add net.tap0 default
Then, configure the slave interface /etc/conf.d/net.eth0 :
template="interface-noip"
Then, configure the slave interface /etc/conf.d/net.tap0 - note you only require group OR user, not both :
template="tap" group="kvm" user="kvm" mac_addr="10:20:30:40:50:66"
... and the bridge interface /etc/conf.d/net.br0 :
template="bridge" ipaddr="10.0.1.200/24" gateway="10.0.1.1" nameservers="10.0.1.1 10.0.1.2" domain="funtoo.org" slaves="net.eth0 net.tap0" stp="on" forwarding=1
If you are using dhcpcd, you should ensure that it does not attempt to configure eth0 or br0 by adding the following to /etc/dhcpcd.conf :
# don't attempt to pull an ip address for br0 or its slave device denyinterfaces eth0 br0
More Complex Network Configuration
If the standard templates don't work for your needs, simply create a new template -- I recommend starting from the interface template for most things:
root # cd /etc/netif.d root # cp interface custom
You can now call whatever commands you need to /etc/netif.d/custom. The following shell functions can be defined in a network script:
netif_create
In netif_create, you should call any commands to create the interface if it does not yet exist.
netif_depend
In netif_depend, you can define dependencies, using the functions need and use.
netif_pre_up
In netif_pre_up, you can define network configuration actions to perform prior to bringing the interface up. You can also ensure certain variables are specified by calling require var1 [var2...] here.
netif_post_up
In netif_post_up, you can define network configuration actions to perform after bringing the interface up.
netif_pre_down
In netif_pre_down, you can define network configuration actions to perform prior to bringing the interface down.
netif_post_down
In netif_post_down, you can define network configuration actions to perform after bringing the interface down.
netif_destroy
In netif_destroy, you can call any commands necessary to destroy/delete the interface if it is dynamic in nature (tun/tap, etc.)
How It Works
You do not specify a function for actually bringing up the interface, because the template-based system does this for you. The template-based system also performs all normal actions required to bring an interface down, so you only need to specify atypical actions that must be performed - such as removing child interfaces or destroying a bridge using brctl.
When you create your own network configuration template, the following capabilities are available for use automatically, as long as the appropriate variables are set in the /etc/conf.d/netif.<ifname> file, without requiring any explicit steps on your part:
- DNS configuration using domain and nameservers config settings. OpenResolv is used automatically.
- VLAN configuration using auto-naming (net.ethX.Y) or via custom naming with trunk and vlan config settings.
- Default IPv4 gateway and route configuration using the gateway and route settings.
- Default IPv6 gateway and route configuration using the gateway6 and route6 settings.
- MTU configuration using the mtu setting.
- Auto-depend (and auto-MTU configuration) of slave interfaces specified using slaves setting.
- Renaming of existing network interface (specify MAC address using macaddr setting).
To take advantage of this functionality, simply enable the appropriate variables.
All other necessary network configuration and dependency behavior should be defined using the netif_-prefix functions described above.
Wireless Configuration
The recommended approach for setting up Wi-Fi under Funtoo Linux is to use NetworkManager. Steps are provided in the Wi-Fi section of the Funtoo Linux Installation Guide.
Other Network Configurations
If you have a network configuration template that might be useful to others, please post it to the funtoo-dev mailing list so we can review it and possibly incorporate it into Funtoo.
License
Funtoo Linux networking scripts are released under the following license: