this is my curent settings on the pineapple (/etc/config/network)
config 'interface' 'loopback'
option 'ifname' 'lo'
option 'proto' 'static'
option 'ipaddr' '127.0.0.1'
option 'netmask' '255.0.0.0'
config 'interface' 'lan'
option 'ifname' 'eth0'
option 'type' 'bridge'
option 'proto' 'static'
option 'netmask' '255.255.255.0'
option 'macaddr' ''
option 'ip6addr' ''
option 'gateway' ''
option 'ip6gw' ''
option 'ipaddr' '192.168.10.1'
option 'dns' ''
and in your script
IFACE="wlan0" #Interface connected to the internet (gateway) to share, EG wlan0,eth1,usb0,ppp0,etc
WiFiMODE="1" #Use WiFi For Internet Gateway (Will create a DeAuth Rule so you dont own yourself) EG 0,1
fonIP="192.168.10.2" #IP for ethernet interface facing the Fon, the dhcp.conf is below to change subnet.
FONIFACE="eth0" #Ethernet interface facing the Jasager/Fon router, EG eth0,eth1,eth2
WIFACE="wlan0" #Wireless Interface to attack with, EG wlan0,ath0,wifi0
MIFACE="mon0" #Monitor Interface for Attacks from airmon-ng
and dhcp
subnet 192.168.10.0 netmask 255.255.255.0 {
interface $FONIFACE;
range 192.168.10.3 192.168.10.254;
option routers $fonIP;
option subnet-mask 255.255.255.0;
option broadcast-address 192.168.10.255;
option domain-name-servers $fonIP;
option domain-name \"$DomainName\";
allow unknown-clients;
/etc/resolv.conf nameserver 4.2.2.2
dnsmasq disabled
im using backtrack 5
do you need anything else?