eth0은 자동으로 구성되지 않습니다

eth0은 자동으로 구성되지 않습니다

ubuntu 12.10 인스턴스를 시작하면 eth0이 구성되지 않습니다.

davidparks21@MySqlDB:~$ cat /run/network/ifstate
lo=lo

수동으로 편집 ifstate하고 추가 eth0=eth0하고 올바르게 구성 하면 service restart networking우리 eth0둘 다 만족합니다.

하지만 다시 시작한 후 구성이 손실되므로 수동으로 편집 ifstate하고 다시 추가한 후 네트워크를 다시 시작해야 합니다.

여기서 어떤 구성이 누락되었을 수 있습니까?


root@prodweb1:~# cat /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

# The primary network interface
auto eth0
iface eth0 inet static
 address 10.1.3.10
 netmask 255.255.0.0
 broadcast 10.1.255.255
 gateway 10.1.0.1
 dns-nameservers 8.8.8.8
 dns-nameservers 8.8.4.4

답변1

재부팅 시 시작하려면 아래와 같이 eth0항목을 추가해야 합니다 ./etc/network/interfaceseth0

auto eth0
iface eth0 inet dhcp

답변2

시작 시 eth0과 관련된 오류 메시지가 있습니까? (와 함께 보세요 dmesg)

시작 구성이 실행 중일 때 이더넷 카드용 드라이버가 로드되지 않을 수 있습니다.

관련 정보