To change the subnet for the management VLAN:
configure terminal
!
interface vlan 1
ip address xxx.xxx.xxx.xxx mmm.mmm.mmm.mmm
no shut
!
ip default-gateway yyy.yyy.yyy.yyy
!
end
!
wr
To move the management to another vlan instead of vlan 1:
configure terminal
!
interface vlan 1
shut
!
interface vlan 411
ip address xxx.xxx.xxx.xxx mmm.mmm.mmm.mmm
no shut
!
end
!
wr
A L2 switch will only allow a single IP address. If vlan 1 isn't shutdown, the switch tries to place the IP there. Also, if the management vlan is moved and someone then does a no shutdown on interface vlan1, the ip address moves to vlan 1. Just a couple "gotchas".
HTH.