Hello! I want to configure ubunu rk3288-firefly as wifi ap (self connected via rj-45) to share internet to mobile devices.
My /etc/hostapd/hostapd.conf for hidden “cuiq” ssid:
interface=wlan0
driver=nl80211
ssid=cuiq
country_code=RU
hw_mode=g
channel=11
macaddr_acl=0
ignore_broadcast_ssid=0
auth_algs=1
wpa=3
wpa_key_mgmt=WPA-PSK
wpa_passphrase=abcd1234
wpa_pairwise=TKIP
rsn_pairwise=CCMP
My /etc/default/isc-dhcp-server:
INTERFACES="wlan0"
My /etc/dhcp/dhcpd.conf:
ddns-update-style none;
log-facility local7;
subnet 10.10.0.0 netmask 255.255.255.0 {
range 10.10.0.2 10.10.0.16;
option domain-name-servers 195.64.192.35, 195.64.222.2;
option routers 10.10.0.1;
}
My /etc/network/interfaces:
source-directory /etc/network/interfaces.d
allow-hotplug wlan0
iface wlan0 inet static
address 10.10.0.1
netmask 255.255.255.0
wpa-driver nl80211
wpa-ssid cuiq
wpa-psk sdfsoo043040kgkk9kd25bc3c15b293063291216a5a0d55ef4e0d1541bd37964
allow-hotplug eth0
iface eth0 inet static
address 172.23.218.6
netmask 255.255.255.0
gateway 172.23.218.1
hwaddress 9c:eb:e8:0c:d8:04
dns-nameservers 195.64.192.35 195.64.222.2
And nothing is working. FireFly doesn’t share internet. What am I doing wrong? Please help me