2017-11-21 9 views
-1

Ubuntuのバージョンは14.04で、ホストプロバイダ1and1.comです。 私は、2つのパブリックIPアドレスを持つホストを構成して、次のしているが、私の/ etc/network/interfacesファイルの設定です:セカンダリIPによるクラウドホストへのアクセス方法

# 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 
allow-hotplug eth0 
iface eth0 inet dhcp 
auto eth0:0 
iface eth0:0 inet static 
name Ethernet alias LAN card 
address {2nd IP address} 
netmask 255.255.255.255 
broadcast {2nd IP address} 
network {2nd IP address ended with 0} 

と、次のようにifconfig -a出力は次のようになります。だから、

eth0  Link encap:Ethernet HWaddr 00:50:56:12:68:8e 
      inet addr:{Primary IP address} Bcast:{Primary IP address} Mask:255.255.255.255 
      inet6 addr: fe80::250:56ff:fe12:688e/64 Scope:Link 
      UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 
      RX packets:1348 errors:0 dropped:0 overruns:0 frame:0 
      TX packets:1097 errors:0 dropped:0 overruns:0 carrier:0 
      collisions:0 txqueuelen:1000 
      RX bytes:210260 (210.2 KB) TX bytes:343976 (343.9 KB) 

eth0:0 Link encap:Ethernet HWaddr 00:50:56:12:68:8e 
      inet addr:{2nd IP address} Bcast:{2nd IP address} Mask:255.255.255.255 
      UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 

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: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) 

構成によると、すべてがうまくいくはずですが、2番目のIPに外部からアクセスできない、pingが要求のタイムアウトを取得していて、2番目のIPをどのドメインのAレコードに設定しても動作しません。第2のIPに公開するにはどうすればいいですか?

ありがとうございます。

答えて

0

問題は解決されましたが、実際にはファイアウォールは2番目のIPのすべてのポートをブロックしていました。私は許しました。

関連する問題