On 2013-02-07 1:50 PM, Rafał Miłecki wrote:
> The problem is that in failsafe my ethernet driver works fine (I can
> ping router and the other way), but in normal mode (with virtual
> interfaces) it stops working. My intention is to create all virtual
> interfaces manually, to see where exactly my eth driver fails.
> 
> I've seen
> http://wiki.openwrt.org/doc/networking/start
> http://wiki.openwrt.org/doc/networking/network.interfaces
> http://wiki.openwrt.org/doc/uci/network
> but they don't explain what scripts/tools start the network.
> 
> Can you point me to them? How can I manually perform the same
> operations manually, one by one?
Network isn't being set up by scripts anymore. The 'netifd' package
manages the state of all network interfaces.
What's interesting about the output that you posted is that the tx
packet counter stays at 0, so there aren't that many possibilities about
what's going on. My guess is one of the following:

- link state is down
- tx packets are being dropped silently in the driver
- the MAC is locked up and tx packets are being held in the queue
  (though shouldn't that produce netdev tx timeout warnings?)

The important difference between failsafe and normal mode is probably
the bridge, as it enables promisc mode.

- Felix
_______________________________________________
openwrt-devel mailing list
[email protected]
https://lists.openwrt.org/mailman/listinfo/openwrt-devel

Reply via email to