no way to compare when less than two revisions
Differences
This shows you the differences between two versions of the page.
| — | gentoo_networking [2016/04/27 20:56] (current) – created - external edit 127.0.0.1 | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | ====== Gentoo Networking ====== | ||
| + | * [[Gentoo]] | ||
| + | * [[Networking]] | ||
| + | * [[hostname]] | ||
| + | |||
| + | To set the FQDN hostname for Gentoo, set it as the first entry in ''/ | ||
| + | |||
| + | < | ||
| + | 127.0.0.1 gentoo.beandog.org gentoo localhost | ||
| + | </ | ||
| + | |||
| + | You can see the available interfaces in ''/ | ||
| + | |||
| + | < | ||
| + | ls / | ||
| + | </ | ||
| + | |||
| + | === Bonding === | ||
| + | |||
| + | Install [[ifenslave]] package to set up bonding. Also make sure your kernel has bonding enabled, or the '' | ||
| + | |||
| + | A basic configuration in Gentoo, where the IP address is set manually. | ||
| + | |||
| + | The bonding interface uses the mac address of the first slave ethernet device listed. | ||
| + | |||
| + | Edit ''/ | ||
| + | |||
| + | < | ||
| + | # Don't initialize any of the interfaces by default | ||
| + | config_eth0=" | ||
| + | config_eth1=" | ||
| + | |||
| + | slaves_bond0=" | ||
| + | mode_bond0=" | ||
| + | miimon_bond0=" | ||
| + | config_bond0=" | ||
| + | routes_bond0=" | ||
| + | </ | ||