Link to home
Start Free TrialLog in
Avatar of acoleman12
acoleman12

asked on

Cisco Catalyst 3560G Configuration

Hi,

I am trying to learn cisco and have been tasked to configure a (Cisco Catalyst 3560G) switch. We currently have four VLANs here and this particular switch needs to go on VLAN 3.

Please help..

Thanks!
Avatar of Jimmy Larsson, CISSP, CEH
Jimmy Larsson, CISSP, CEH
Flag of Sweden image

first you need to create your vlan:s

conf t
vlan 3
vlan 4
vlan 5

If the connection to this switch from other switches is a trunk (carrying multiple vlans) you do something like this on the uplink port:

conf t
int g0/24
 switchport mode trunk
 switchport trunk allowed vlan all
 no shut
end

All ports connected to vlan3 can be configured like this

int range gi0/1 - 23
 switchport access vlan3
 spanning-tree portfast edge
 no shut
end

If your uplink-port is not a trunk you can connect that cable to any port configured as "switchport access vlan 3".

These guidelines are as vague as the question. Give us more information and you will get a more accurate answer. :-)

/Kvistofta



Avatar of acoleman12
acoleman12

ASKER

I'm sorry about that.....

Basically, this is what I want to accomplish..

We have a core switch that already has 4 VLANs setup on it. I will be running a cat5e cable from the core switch to the new gig switch.

I would like to know how to get the new switch setup from the beginning and also make it apart of VLAN3..This will include setting up the uplink/trunk port as well.

I hope this will explain better..
The previous poster gave you that information- that was config commands for your new switch. the first part of the config sets up the vlans. the 2nd part sets up the uplink to pass all vlans on a trunk. the 3rd part puts the access ports onto vlan 3.
ASKER CERTIFIED SOLUTION
Avatar of Les Moore
Les Moore
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial