by ganeshh_iyer on Tue Feb 23, 2010 12:58 pm
Hi Kandan,
By default, there is only a single VLAN for all ports. This VLAN is called default. You cannot rename or delete VLAN 1.
If you talk about a management VLAN is nothing more than a VLAN that is used for in-band management of your network switching devices. In order to configure this on a switch you need to create a Switch Virtual Interface (SVI) that is mapped to that VLAN and then assign that virtual interface an IP address. On a Cisco switch it would look like the following.
Interface Vlan99
ip address 192.168.1.1 255.255.255.0
no shut
I also want to make something very clear. Your management VLAN does not have to be the same as your Native VLAN. Matter of fact, it is good practice to make sure that they are different. Your management VLAN should only carry in-band management traffic and should not be the default VLAN. By in-band management traffic I am refering to SSH or telnet (although telnet is not recommended because it is not secure). Traffic such as BPDUs, PagP, CDP, use the native VLAN and I would recommend setting that to something other than the default VLAN as well, but still seperate from your management VLAN.
Once that is done setup a simple access list on whatever device routes for the management VLAN so that only the computers you want to access those devices are permitted and all others are denied.
Hope to Help !!
Ganesh.H