Banana Pi R64 no Internet connection

Hi, i'm an absolute newby, but i try to run in this project. So my problem is, that i dont get an internet connection to my R64.

FritzBox -> WAN Banana PI -> Banana PI LAN -> Laptop
192.168.65.1 -> 192.168.65.230 -> 192.168.66.230 -> 192.168.66.2

I want to install LuCi but without internet no LuCi.

I hope someone can help me to get access to the internet.

BR,
Stefan

As you are already using the fritzbox as internet router, connecting the BPi's WAN to one of its LAN ports should allow it to get a WAN address (and internet connectivity) with the default configuration (DHCP client on WAN); yes, double-NAT isn't ideal, but it will suffice to get you internet access (and opkg functionality) quickly. If in doubt, a factory reset of the OpenWrt BPi should do the job (as there doesn't appear to be an overlap between WAN- and LAN subnets).

1 Like

Thats not working.

Here is my network config. Maybe can anybody see what is wrong.

config interface 'loopback'
        option device 'lo'
        option proto 'static'
        option ipaddr '127.0.0.1'
        option netmask '255.0.0.0'

config globals 'globals'
        option ula_prefix 'fd70:57a1:5823::/48'

config device
        option name 'br-lan'
        option type 'bridge'
        list ports 'lan1'
        list ports 'lan2'
        list ports 'lan3'
        list ports 'lan4'

config interface 'lan'
        option device 'br-lan'
        option proto 'static'
        option ipaddr '192.168.66.230'
        option netmask '255.255.255.0'
        option ip6assign '60'

config interface 'wan'
        option device 'wan'
        option proto 'static'
        option ipaddr '192.168.65.230'
        option netmask '255.255.255.0'
        list dns '192.168.65.25'

config interface 'wan6'
        option device 'wan'
        option proto 'dhcpv6'

I would suggest using DHCP client on WAN (hint, factory reset), but you're at the very least missing the gateway definition.

1 Like

this way?

option gateway: '192.168.65.1'

It works. Thx.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.