Hi,
I need help configuring a connection between two OpenWrt 24.10 devices.
- Flint 2 - acts as the main router and supports two internet connections, DSL and Fiber, using MultiWan Manager.
- BT HomeHub - only works as a DSL modem, but I have access to the WebUI and would like to use it as a switch for VLAN1.
Below is the connection diagram:
Everything works correctly except for the ability to use the HH as a switch, meaning access to a PC device, e.g., from the Flint or another device on the LAN. The connection can be established, but there is significant packet loss, with an ICMP of around 40%. It looks like some packets go through, then some don't, then some more go through, and so on. Connection from Flint to the HH, both via WebUI and SSH, works without any problems. Using tcpdump, I found that the packet loss occurs between Flint lan.1 (all of them are visible) and HH wan.1 (not all of them are arriving).
Flint:
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 packet_steering '1'
config device
option name 'br-lan'
option type 'bridge'
option ipv6 '0'
list ports 'lan1.1'
list ports 'lan2'
list ports 'lan3'
list ports 'lan4'
list ports 'lan5'
config interface 'lan'
option device 'br-lan.1'
option proto 'static'
option ipaddr '192.168.2.2'
option netmask '255.255.255.0'
option ip6assign '60'
list dns '192.168.2.2'
option delegate '0'
config interface 'wan'
option device 'eth1'
option proto 'pppoe'
option username 'XXXXXXXXXXXXXXXXX'
option password 'XXXXXXXXXXXXXXXXX'
option ipv6 '0'
option peerdns '0'
list dns '1.1.1.1'
list dns '8.8.8.8'
option metric '1'
config interface 'wandsl'
option proto 'pppoe'
option device 'lan1.35'
option ipv6 '0'
option username 'XXXXXXXXXXXXXXXXX'
option password 'XXXXXXXXXXXXXXXXX'
option metric '2'
option peerdns '0'
list dns '1.1.1.1'
list dns '8.8.8.8'
config device
option type '8021q'
option ifname 'lan1'
option vid '35'
option name 'lan1.35'
option ipv6 '0'
config device
option type '8021q'
option ifname 'lan1'
option vid '1'
option name 'lan1.1'
option ipv6 '0'
config bridge-vlan
option device 'br-lan'
option vlan '1'
list ports 'lan1.1:u*'
list ports 'lan2:t*'
list ports 'lan3:u*'
list ports 'lan4:t*'
list ports 'lan5:u*'
config bridge-vlan
option device 'br-lan'
option vlan '3'
list ports 'lan2:t'
list ports 'lan4:t'
config interface 'iot'
option proto 'static'
option device 'br-lan.3'
option ipaddr '192.168.3.2'
option netmask '255.255.255.0'
HH:
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 'fd6d:138e:88a0::/48'
option packet_steering '1'
config atm-bridge 'atm'
option vpi '0'
option vci '35'
option encaps 'llc'
option payload 'bridged'
option nameprefix 'dsl'
option atmdev '1'
option unit '1'
config dsl 'dsl'
option annex 'a'
option ds_snr_offset '0'
option line_mode 'vdsl'
config device
option name 'br-lan'
option type 'bridge'
option ipv6 '0'
list ports 'lan1'
list ports 'lan2'
list ports 'lan3'
list ports 'lan4'
list ports 'wan.1'
config device
option name 'lan1'
option macaddr 'c8:91:f9:10:fa:cc'
config device
option name 'lan2'
option macaddr 'c8:91:f9:10:fa:cc'
config device
option name 'lan3'
option macaddr 'c8:91:f9:10:fa:cc'
config device
option name 'lan4'
option macaddr 'c8:91:f9:10:fa:cc'
config interface 'lan'
option device 'br-lan'
option proto 'static'
option ipaddr '192.168.2.1'
option netmask '255.255.255.0'
option ip6assign '60'
option delegate '0'
option gateway '192.168.2.2'
list dns '192.168.2.2'
config device
option name 'dsl0'
option macaddr 'c8:91:f9:10:fa:cd'
option ipv6 '0'
config device
option type '8021q'
option ifname 'wan'
option vid '35'
option name 'wan.35'
option ipv6 '0'
config device
option type '8021q'
option ifname 'wan'
option vid '1'
option name 'wan.1'
option ipv6 '0'
config device
option type 'bridge'
option name 'br-wan'
option ipv6 '0'
list ports 'dsl0.35'
list ports 'wan.35'
config interface 'wan'
option proto 'none'
option device 'br-wan'
config device
option type '8021q'
option ifname 'dsl0'
option vid '35'
option name 'dsl0.35'
option ipv6 '0'
Thanks in advance for your help.


