ネットワークの設定ファイルがここにある
sudo nano /etc/network/interfaces
下記の内容に修正する。
修正したらネットワークの再起動
sudo /etc/init.d/networking restart
————————-
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
auto eth0
#iface eth0 inet static
iface eth0 inet static
address 192.168.1.xxx
netmask 255.255.255.0
gateway 192.168.1.1
———DHCPなら———-
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
auto eth0
iface eth0 inet dhcp