Hi all, I'm having a weird issue involving using a cell modem. Essentially, I have two three bridge interfaces in total. Without the added third "cell" interface, the br-vlan interface comes up fine. Once I add in the PPP related interfaces, it no longer works.
Here's my network file:
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 'fd37:8453:da23::/48'
config device
option name 'br-lan'
option type 'bridge'
list ports 'eth0.1'
config interface 'lan'
option device 'br-lan'
option proto 'static'
option netmask '255.255.255.0'
option ip6assign '60'
option ipaddr '192.168.5.7'
config device
option name 'br-vlan'
option type 'bridge'
list ports 'eth0.3'
config interface 'vlan'
option device 'br-vlan'
option proto 'static'
option netmask '255.255.255.0'
option ipaddr '192.168.6.7'
option ip6assign '60'
config device
option name 'eth0.2'
option macaddr '0c:cf:89:6f:9b:f8'
config interface 'wan'
option device 'eth0.2'
option proto 'dhcp'
config interface 'wan6'
option proto 'dhcpv6'
option device 'eth0.2'
config interface 'cell'
option type 'bridge'
option ifname 'ppp0'
option proto 'static'
option ipaddr 'my modem address'
option netmask '255.255.255.0'
option gateway 'ptp address'
option dns 'ptp address'
config interface 'wan2'
option ifname 'ppp0'
option proto 'ppp'
option device '/dev/ttyUSB2'
option speed '921600'
option file '/etc/ppp/peers/att-QBG95'
option connect '/usr/sbin/chat -v -f /etc/ppp/peers/att-QBG95-chat'
option ipv6 'auto'
config switch
option name 'switch0'
option reset '1'
option enable_vlan '1'
config switch_vlan
option device 'switch0'
option vlan '1'
option ports '1 2 3 4 6t'
config switch_vlan
option device 'switch0'
option vlan '2'
option ports '0 6t'
config interface 'wwan'
option proto 'dhcp'
Once I do "service network restart", ipconfig shows this:
br-lan Link encap:Ethernet HWaddr 40:D6:3C:5D:1F:D6
inet addr:192.168.5.7 Bcast:192.168.5.255 Mask:255.255.255.0
inet6 addr: fe80::42d6:3cff:fe5d:1fd6/64 Scope:Link
inet6 addr: fd37:8453:da23::1/60 Scope:Global
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:10 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 B) TX bytes:1192 (1.1 KiB)
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:65536 Metric:1
RX packets:931 errors:0 dropped:0 overruns:0 frame:0
TX packets:931 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:75329 (73.5 KiB) TX bytes:75329 (73.5 KiB)
ppp-wan2 Link encap:Point-to-Point Protocol
inet addr:*redacted* P-t-P:*redacted* Mask:255.255.255.255
UP POINTOPOINT RUNNING NOARP MULTICAST MTU:1500 Metric:1
RX packets:11 errors:0 dropped:0 overruns:0 frame:0
TX packets:23 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:3
RX bytes:518 (518.0 B) TX bytes:834 (834.0 B)
wlan0 Link encap:Ethernet HWaddr 40:D6:3C:5D:1F:D6
inet6 addr: fe80::42d6:3cff:fe5d:1fd6/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:15 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 B) TX bytes:1952 (1.9 KiB)
any thoughts about what could be wrong? any help would be appreciated