0

I have setup some bridge interface with 4 ethernet port. My problem is, when they detect some network topology change, the bridge really need a lot of time to have done it.

Is there any solution, so the bridge can detect topology change faster ?

Ben Pilbrow
  • 12,041
  • 5
  • 36
  • 57
  • So... what OS (if a software bridge), what switch vendor? What model? Are you talking topology change as in a spanning-tree change or simply an access port going up or down? – MikeyB Jul 29 '11 at 18:51

1 Answers1

1

Usually it is spanning tree protocol causing this. You can either disable it and risk bridge loops (your network will be down) or better find how to configure the interfaces to do fast checks (portfast in cisco).

some hints here: http://www.cisco.com/en/US/products/hw/switches/ps700/products_tech_note09186a00800b1500.shtml

niry
  • 155
  • 7
  • is it mean, more ethernet port I used in bridge network, it would take longer the process ? –  Mar 17 '10 at 08:58
  • 1
    Portfast disables spanning tree protocol on those ports, which is probably not what you want on bridge ports. Have a look at Rapid Spanning Tree Protocol (RSTP), which takes about 15 seconds or so. – Martijn Heemels Jun 10 '10 at 23:19
  • I would recommend MST above RSTP - it's cross-vendor and ought to be universal for decent switches these days. – MikeyB Jul 29 '11 at 18:50