Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Cisco Switch

Status
Not open for further replies.

duster123

Technical User
Jun 21, 2006
168
GB
I have a Cisco 6509 switch. Im really not knowleageble with cisco product but i have a project to complete by the end of today. here is my task i need to know the commands to:

1. naming a port name
ex. i want to put a server called "NewYork01" on a specific port. i want the port to be exculsive dedicated to that server.

2. Setting the Port Speed.
ex. i want the port to be operating at maximum speed.

3. Ensure the port is duplex

I need help. Thanks
 
Are you running native (IOS only) or hybrid (catos and IOS layer 3) for code ???
 
enable
config t
int ge1/1 (could be any blade/interface, you'll need to figure that out)
desc NewYork01
duplex (full, auto, half)
speed (10, 100, 1000, auto)

 
for example i wanted to put newyork01 on blade 3 port 31 operating at full duplex would this be the correct syntax ?

enable
config t
int 3/31
desc NewYork01
duplex(full)
speed(100)

 
Yes, however you need to find out what kind of interface it is. Is it a FE (fast ethernet) or a GE (gigabit ethernet). If you type the command "show interface status," it will show all of your interfaces as well as the type. Then put it in to the config.

enable
config t
int FE3/31
desc NewYork01
duplex(full)
speed(100)
 
***CORRECTION****
Yes, however you need to find out what kind of interface it is. Is it a FE (fast ethernet) or a GE (gigabit ethernet). If you type the command "show interface status," it will show all of your interfaces as well as the type. Then put it in to the config. If it were a Gigabit interface it would be:

enable
config t
int GI3/31
desc NewYork01
duplex(full)
speed(100)
 
the show interface and show interface status command only show me the switch ip address and subnet and broadcast. in using version 6.1 (3)
 
This is the reply i get when i do the show interface command

Uptime is 8 days, 19 hours, 44 minutes
Catalyst6509> sh interface
sl0: flags=51<UP,POINTOPOINT,RUNNING>
slip 0.0.0.0 dest 0.0.0.0
sc0: flags=63<UP,BROADCAST,RUNNING>
vlan 1 inet xxx.xxx.xxx.xxx netmask 255.255.255.0 broadcast xxx.xxx.xxx.xxx
 
show interface status" should give you an output like this:


LVPSWC003#show int status

Port Name Status Vlan Duplex Speed Type
Gi1/1 Trunk to LVPSWC004 connected trunk full 1000
Gi1/2 Trunk to LVPSWC004 connected trunk full 1000
Gi2/1 Trunk to LVPSWC004 connected trunk full 1000
Gi2/2 Trunk to LVPSWC004 connected trunk full 1000
Gi4/1 connected trunk full 1000 1000BaseT
Gi4/2 connected trunk full 1000 1000BaseT
Gi4/3 connected trunk full 1000 1000BaseT
Gi4/4 connected trunk full 1000 1000BaseT
Gi6/1 LVPXMLAPP001 connected 2000,2001 a-full a-100 10/100/1000BaseT
Gi6/2 lvpupa001 connected 2102 a-full a-1000 10/100/1000BaseT
Gi6/3 LVPFTP002 notconnect 2000,2001 full auto 10/100/1000BaseT
Gi6/4 LVPDNX001 connected 2000,2001 full 100 10/100/1000BaseT
Gi6/5 LVPVBA022 connected 2000,2001 a-full a-1000 10/100/1000BaseT
Gi6/6 LVPVBA032 connected 2000,2001 a-full a-1000 10/100/1000BaseT
Gi6/7 LVPVBA036 connected 2000,2001 a-full a-1000 10/100/1000BaseT
 
that wat i get. when i type sh int status i get show interface reply.
 
from your output I can see that you are in "hybrid mode"

you need to do the following'

set port name 3/31 NewYork01
set port speed 3/31 100
set port duplex 3/31 full

then issue the "show port
 
im not sure if modules have been added. I wasnt the one who initially set up the switch
 
Catalyst6509> (enable) sh mod
Mod Slot Ports Module-Type Model Sub Status
--- ---- ----- ------------------------- ------------------- --- -------
1 1 2 1000BaseX Supervisor WS-X6K-SUP2-2GE yes ok
15 1 1 Multilayer Switch Feature WS-F6K-MSFC2 no ok
2 2 2 1000BaseX Supervisor WS-X6K-SUP2-2GE yes standby
16 2 1 Multilayer Switch Feature WS-F6K-MSFC2 no ok
3 3 48 10/100BaseTX Ethernet WS-X6248-RJ-45 no ok
4 4 48 10/100BaseTX Ethernet WS-X6248-RJ-45 no ok
5 5 48 10/100BaseTX Ethernet WS-X6248-RJ-45 no ok
6 6 48 10/100BaseTX Ethernet WS-X6248-RJ-45 no ok
7 7 48 10/100BaseTX Ethernet WS-X6248-RJ-45 no ok
8 8 48 10/100BaseTX Ethernet WS-X6348-RJ-45 no ok

Mod Module-Name Serial-Num
--- ------------------- -----------
1 SAD053301LB
15 SAD053201VS
2 SAD0531056W
16 SAD053204AZ
3 SAD0403051J
4 SAD0403052A
5 SAD040305AH
6 SAD040305GG
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top