Altere a placa ethernet padrão

3

Tenho uma placa ethernet Ubuntu Server 14.04 e 2.

Agora eu uso apenas a eth1 e, por isso, quero alterar minha configuração porque agora não consigo acessar a Internet com meu servidor.

Eu mudei o arquivo / etc / network / interfaces

# The primary network interface for Internet
auto eth1
iface eth1 inet static
        address 192.168.1.254
        network 192.168.1.0
        netmask 255.255.255.0
        broadcast 192.168.1.255
        gateway 192.168.1.1
        dns-nameservers 109.88.203.3,62.197.111.140

# The secondary network interface for local network
auto eth0
iface eth0 inet static
address 192.168.0.201
network 192.168.0.0
netmask 255.255.255.0
broadcast 192.168.0.255
dns-nameservers 192.168.1.254

Eu também mudei o arquivo /etc/dhcp/dhclient.conf e adicione a linha:

supersede routers 192.168.1.1

Se eu correr

ping 8.8.8.8

Funciona

PING 8.8.8.8 (8.8.8.8) 56(84) bytes of data.
64 bytes from 8.8.8.8: icmp_req=1 ttl=43 time=20.5 ms
64 bytes from 8.8.8.8: icmp_req=2 ttl=43 time=18.2 ms
64 bytes from 8.8.8.8: icmp_req=3 ttl=43 time=18.5 ms
64 bytes from 8.8.8.8: icmp_req=4 ttl=43 time=21.9 ms
^C
--- 8.8.8.8 ping statistics ---
4 packets transmitted, 4 received, 0% packet loss, time 3004ms
rtt min/avg/max/mdev = 18.238/19.803/21.928/1.523 ms

Mas quando eu executo o sudo apt-get update ele não funciona:

W: Failed to fetch http://ppa.launchpad.net/xorg-edgers/ppa/ubuntu/dists/precise/main/i18n/Translation-en  Something wicked happened resolving 'ppa.launchpad.net:http' (-5 - No address associated with hostname)

O que posso fazer?

Obrigado antecipadamente.

    
por Blowdesign 10.01.2017 / 21:22

1 resposta

2

Tudo bem,

Eu mudei o arquivo / etc / network / interfaces

# The primary network interface for Internet
auto eth1
iface eth1 inet dhcp

Agora está tudo bem

    
por Blowdesign 10.01.2017 / 21:37