イムにOVH VPSでSTATICインタフェースにDHCPインタフェースを変更し、私は実際に LINUXへの新規のUbuntu 16.04
STATIC
にDHCPに実際に私のOVH VPSのUbuntu Serverの16.04LTSインターフェイスのためにあなたの助けを必要とする方法私の/ etc /ネットワーク/ 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
# Source interfaces
# Please check /etc/network/interfaces.d before changing this file
# as interfaces may have been defined in /etc/network/interfaces.d
# See LP: #1262951
source /etc/network/interfaces.d/*.cfg
という名前だけで一つのファイル持って/etc/network/interfaces.d/*.cfgソースパス:50-クラウドinit.cfg、このファイルが含まれています
auto lo
iface lo inet loopback
auto ens3
iface ens3 inet dhcp
を
だから私のIPアドレスは149.xxx.xxx.61です。これを変換して、IPアドレスのiface_en3を静的にする必要があります。
実際にifconfig -aは次のとおりです。
ens3 Link encap:Ethernet HWaddr fa:16:3e:ae:e3:83
inet addr:149.xxx.xxx.61 Bcast:149.xxx.xxx.61 Mask:255.255.255.255
inet6 addr: fe80::xxxx:xxxx:feae:e383/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:894526 errors:0 dropped:0 overruns:0 frame:0
TX packets:297070 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:102187906 (102.1 MB) TX bytes:63602471 (63.6 MB)
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:65536 Metric:1
RX packets:14743 errors:0 dropped:0 overruns:0 frame:0
TX packets:14743 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1
RX bytes:31459525 (31.4 MB) TX bytes:31459525 (31.4 MB)
私はこれをどのように行うことができます
?ここで