2

How to change mac from static to dynamic in mac-address-table (switch)?I find this official source but still not understand what options I must choose.

Something like this:

switch(config)# mac-address-table static 12ab.47dd.ff89 vlan 3 interface fastethernet 2/1 auto-learn

Anton Putov
  • 123
  • 5

1 Answers1

7

You can't change a static entry to dynamic. Just delete the static entry and the switch will add its own dynamic entry when that host sends a frame.

Use the "no" syntax to delete an address. E.g.:

no mac-address-table static 12ab.47dd.ff89 vlan 3
Dan
  • 15,430
  • 1
  • 36
  • 67
longneck
  • 23,082
  • 4
  • 52
  • 86