Eu tenho uma configuração semelhante: ip estático em eth0
e dinâmico em wlan0
.
Este é o conteúdo do meu arquivo /etc/network/interfaces
:
# interfaces(5) file used by ifup(8) and ifdown(8)
# Please note that this file is written to be used with dhcpcd
# For static IP, consult /etc/dhcpcd.conf and 'man dhcpcd.conf'
# Include files from /etc/network/interfaces.d:
source-directory /etc/network/interfaces.d
auto lo
iface lo inet loopback
iface eth0 inet manual
allow-hotplug wlan0
iface wlan0 inet manual
wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
allow-hotplug wlan1
iface wlan1 inet manual
wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
Onde eu configuro o dhcp ou endereços estáticos está em /etc/dhcpcd.conf
interface eth0
static ip_address=192.168.20.40
static routers=192.168.20.1
nogateway
interface wlan0
static routers=192.168.1.1
static domain_name_servers=8.8.8.8 8.8.4.4
(eu adaptei o arquivo à sua configuração)
Você também tem que configurar o Wifi (SSID, senha, etc) em /etc/wpa_supplicant/wpa_supplicant.conf
(como eu suponho que você já fez)
NOTA : Eu estou usando jessie raspbian. Eu acho que nas versões anteriores (wheezy) configuração de rede é feita diferente
EDIT : configuração adicionada para o DNS