Hi, ich mache so ziemlich das selbe nur umgedreht ich schleife von Wlan nach eth durch. So sehen meine configs aus:
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
auto eth0
iface eth0 inet static
address 192.168.3.1
netmask 255.255.255.0
broadcast 192.168.3.255
# The primary network interface
auto wlan0
iface wlan0 inet dhcp
wpa-ssid irgendwasBlödes
wpa-psk SuperGeheim
# vorhandene Regeln und Ketten zuerst löschen (Restart-Funktionalität)
up /sbin/iptables -F
up /sbin/iptables -X
up /sbin/iptables -t nat -F
# Maskieren der LAN-Schnittstelle, Port-Forwarding & Nat aktivieren
up iptables -A FORWARD -o wlan0 -s 192.168.0.0/24 -m conntrack --ctstate NEW -j ACCEPT
up iptables -A FORWARD -m conntrack --ctstate ESTABLISHED,RELATED -j ACCEPT
up iptables -t nat -A POSTROUTING -o wlan0 -j MASQUERADE
up sysctl -w net.ipv4.ip_forward=1
# hostapd und dnsmasq neu starten
up /etc/init.d/hostapd restart
up /etc/init.d/dnsmasq restart
cat /etc/dnsmasq.conf
# DHCP-Server aktiv für Interface
interface=eth0
#interface=mon.wlan0
# DHCP-Server nicht aktiv für Interface
no-dhcp-interface=wlan0
# IP-Adressbereich / Lease-Time
dhcp-range=interface:eth0,192.168.3.20,192.168.3.200,infinite
cat /etc/hostapd/hostapd.conf
interface=wlan0
driver=nl80211
ssid=TEST
hw_mode=g
channel=6
macaddr_acl=0
auth_algs=1
ignore_broadcast_ssid=0
wpa=3
wpa_passphrase=SuperGeheim
wpa_key_mgmt=WPA-PSK
wpa_pairwise=TKIP
rsn_pairwise=CCMP
Mit ein wenig anpassen sollte das klappen (Ips und Interface). Alles was bei mir wlan0 ist muss bei dir eth0 sein und umgekehrt. Installiert ist dnsmasq & hostapd.