OS X Yosemite를 실행하는 iMac에서 VirtualBox를 사용하여 Ubuntu Server 14.04를 설정하고 있습니다. 나는 네트워크 정보 설정에 대해 거의 알지 못하며 Ubuntu를 인터넷에 연결할 수 없습니다 (서버에 SSH로 연결할 수는 있지만). 고정 IP가 있는 브리지 어댑터를 사용하고 싶습니다. 아래에는 몇 가지 유용한(희망하는) 정보가 있습니다. 다른 내용을 포함해야 하는지 알려주세요.
내 현재 /etc/network/interfaces
파일:
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet static
address 10.0.1.251
netmask 255.255.255.0
gateway 10.0.1.1
dns-nameservers 8.8.8.8 8.8.4.4
결과 ifconfig
:
eth0 Link encap:Ethernet HWaddr 08:00:27:13:0c:ba
inet addr:10.0.1.251 Bcast:10.0.1.255 Mask:255.255.255.0
inet6 addr: fe80::a00:27ff:fe13:cba/64 Scope:Link
inet6 addr: 2601:444:c000:33f4:a00:27ff:fe13:cba/64 Scope:Global
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:920 errors:0 dropped:0 overruns:0 frame:0
TX packets:539 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:84566 (84.5 KB) TX bytes:75947 (75.9 KB)
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:61 errors:0 dropped:0 overruns:0 frame:0
TX packets:61 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:5752 (5.7 KB) TX bytes:5752 (5.7 KB)
8.8.8.8 ping 시도 결과:
PING 8.8.8.8 (8.8.8.8) 56(84) bytes of data.
From 10.0.1.251 icmp_seq=1 Destination Host Unreachable
From 10.0.1.251 icmp_seq=2 Destination Host Unreachable
From 10.0.1.251 icmp_seq=3 Destination Host Unreachable
From 10.0.1.251 icmp_seq=4 Destination Host Unreachable
From 10.0.1.251 icmp_seq=5 Destination Host Unreachable
From 10.0.1.251 icmp_seq=6 Destination Host Unreachable
^C
--- 8.8.8.8 ping statistics ---
8 packets transmitted, 0 received, +6 errors, 100% packet loss, time 6999ms
pipe 4
다른 웹사이트에 ping을 시도하면 결국 다음 ping: unknown host www.google.com
과 같은 메시지가 표시될 때까지 해당 웹사이트가 멈춥니다.
이 문제의 원인은 무엇이며, 해결하려면 어떻게 해야 합니까? 다른 유용한 정보를 포함할 수 있는지 알려주세요.
감사해요