4

If a switch gets rebooted and the settings haven't been "wr"d, when it comes back up things will be all wrong. I want to see what the current vlan settings are vs what has been "wr"d.

Thanks!!

Edit:

Er... I meant like the difference between current show int status and what will get set if the switch gets rebooted. Thanks!

cat pants
  • 2,273
  • 10
  • 35
  • 46

3 Answers3

6
show running-config

and

show startup-config
Lucas Kauffman
  • 16,880
  • 9
  • 58
  • 93
3

Show running-config vs. show startup-config. As long as the switch is in vtp transparent mode the vlan info will show up.

murisonc
  • 2,968
  • 2
  • 21
  • 31
0

Some IOSes have a diff tool included:

Router# show archive config differences running-config startup-config
+ip subnet-zero
+ip name-server 10.4.4.4
+voice dnis-map 1
 +dnis 111
interface Ethernet1/0
 +no ip address
 +shutdown
+ip default-gateway 10.5.5.5
+ip classless
+access-list 110 deny ip any host 10.1.1.1
+access-list 110 deny ip any host 10.1.1.2
+access-list 110 deny ip any host 10.1.1.3
+snmp-server community private RW
-no ip subnet-zero
interface Ethernet1/0
 -ip address 10.7.7.7 255.0.0.0
-no ip classless
-snmp-server community public RO
petrus
  • 5,297
  • 26
  • 42