Difference between revisions of "Ubuntu:Network config"
Jump to navigation
Jump to search
(Created page with "== Network Config == Interface configuration is done in the /etc/netowrk/interfaces file. The file below configures the loopback interface and sets eth0 to use DHCP. <syntaxhighlight>...") |
(No difference)
|
Latest revision as of 12:43, 10 February 2014
Network Config
Interface configuration is done in the /etc/netowrk/interfaces file. The file below configures the loopback interface and sets eth0 to use DHCP.
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
auto eth0
iface eth0 inet dhcp