Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. vi

    Code Block
     vi /etc/network/interfaces

dhcp

Code Block
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
auto eth0
iface eth0 inet dhcp


static

Code Block
languagebash
# The primary network interface
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
auto eth0
iface eth0 inet static
address 192.168.153.131
netmask 255.255.255.0
gateway 192.168.153.2
dns-nameservers 192.168.153.2


반영

network 재시작

Code Block
sudo service networking restart

...

service networking restart

service networking restart 실패시

Panel

$ sudo service networking restart
stop: Job failed while stopping
start: Job is already running: networking

...