ubuntu-networking-tips
| empty | rev 1 | ||||
|---|---|---|---|---|---|
| t | t | 1 | Ubuntu Networking Tips | ||
| 2 | ######################## | ||||
| 3 | |||||
| 4 | Instead of separate files, ubuntu attempts to manage all networking settings fro | ||||
| > | m one file. | ||||
| 5 | |||||
| 6 | **/etc/network/interfaces** | ||||
| 7 | |||||
| 8 | .. code-block:: config | ||||
| 9 | |||||
| 10 | auto eth0 inet [dhcp|manual|static] | ||||
| 11 | |||||
| 12 | dhcp | ||||
| 13 | get all settings from DHCP server | ||||
| 14 | |||||
| 15 | manual | ||||
| 16 | get all settings from DHCP server, override some settings manually | ||||
| 17 | |||||
| 18 | static | ||||
| 19 | get no settings from DHCP server, configure all settings statically | ||||
Remarkbox