【重要なお知らせ】サービス統合に基づくサービス名称の読み替えのお願い(2024年4月1日)
2024年4月1日をもって、「ニフクラ」は、「FJcloud-V」に統合し、名称を変更しました。
「ニフクラ」「NIFCLOUD」「nifcloud」は、「FJcloud-V」に読み替えていただきますようお願いいたします。
ニフクラFAQ(よくあるご質問)
[proxy]
◆Ubuntu 16.04以前
/etc/network/interfaces
# 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
auto eth0
iface eth0 inet dhcp
auto eth1
iface eth1 inet dhcp
#auto eth2
#iface eth2 inet dhcp
◆Ubuntu 18.04 20.04
/etc/netplan/01-netcfg.yaml
# This file describes the network interfaces available on your system
# For more information, see netplan(5).
network:
version: 2
renderer: networkd
ethernets:
ens160:
dhcp4: yes
dhcp6: yes
dhcp-identifier: mac
ens192:
dhcp4: yes
dhcp6: yes
dhcp-identifier: mac
ens224:
dhcp4: yes
dhcp6: yes
dhcp-identifier: mac
◆Ubutu 22.04 24,04
# This file describes the network interfaces available on your system
# For more information, see netplan(5).
network:
ethernets:
ens192:
dhcp4: true
dhcp6: true
dhcp-identifier: mac
ens224:
dhcp4: true
dhcp6: true
dhcp-identifier: mac
version: 2
◆WindowsServer