Debian 8 Jessie
Sponsored Link

ネットワークの設定2015/05/01

[1] IPアドレスを固定割り当てに変更する場合は以下のように設定します。サーバー用途では通常固定にした方がよいでしょう。
root@dlp:~#
vi /etc/network/interfaces
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

source /etc/network/interfaces.d/*

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
allow-hotplug eth0
# コメント化

#
iface eth0 inet dhcp
# 以下7行追記化

iface eth0 inet static
address 10.0.0.30
# IPアドレス指定

network 10.0.0.0
# ネットワークアドレス指定

netmask 255.255.255.0
# ネットマスク指定

broadcast 10.0.0.255
# ブロードキャストアドレス指定

gateway 10.0.0.1
# デフォルトゲートウェイ指定

dns-nameservers 10.0.0.10
# ネームサーバー指定
root@dlp:~#
systemctl restart ifup@eth0

[2] 必要なければIPv6を無効にしておきます。
root@dlp:~#
echo "net.ipv6.conf.all.disable_ipv6 = 1" >> /etc/sysctl.conf

root@dlp:~#
sysctl -p

net.ipv6.conf.all.disable_ipv6 = 1
root@dlp:~#
eth0      Link encap:Ethernet  HWaddr 00:0c:29:9d:56:58
          inet addr:10.0.0.30  Bcast:10.0.0.255  Mask:255.255.255.0
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:346 errors:0 dropped:0 overruns:0 frame:0
          TX packets:263 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:33839 (33.0 KiB)  TX bytes:32449 (31.6 KiB)

lo        Link encap:Local Loopback
          inet addr:127.0.0.1  Mask:255.0.0.0
          UP LOOPBACK RUNNING  MTU:65536  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0
          RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)
関連コンテンツ