how to configure the SFP ports
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-24-2012 07:48 AM - edited 03-07-2019 06:53 AM
How i can configure the SFP Ports on my 4500 SERIES CHASSIS with other SFP ports on the connecting switch. I want to connect 15 switches via GLC=SX=MM to my 4506E sfp card. Please i need help.
- Labels:
-
Other Switching
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-24-2012 08:05 AM
here is configuration guide
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-24-2012 10:54 AM
two possible ways...you can configure them as a l3 link or a l2 link....
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-25-2012 04:02 AM
@
thanks a lot for replying. I really appreciate that but how it will look like i mean it will automatically detect by the switch or i have to make it active because i am depending on all my SFP connections. can i make them trunk or no swictch port for InterVlan routing. Like normaly we do,
# int ge0/0
#switch port mode ?
Awaiting your reply

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-25-2012 06:11 AM
Hi Oliver,
You have to configure interfaces for the kind of connection you want them to be. By default they will only have "no ip address" configuration. E.g. trunk interface:
Switch(config)# interface fastethernet 2/1
Switch(config-if)# shutdown
Switch(config-if)# switchport mode dynamic desirable
Switch(config-if)# switchport trunk encapsulation dot1q
Switch(config-if)# no shutdown
Switch(config-if)# end
Here is the guide for configuring L2 interfaces (including decription of modes - "switchport mode ..."):
If you want to make interface a L3 one, you have to enable routing globally ("ip routing"), configure "no switchport" on it and set up ip address:
Switch(config)# ip routing
Switch(config)# interface fastethernet 2/1
Switch(config-if)# no switchport
Switch(config-if)# ip address 10.1.1.1 255.255.255.248
Switch(config-if)# no shutdown
Switch(config-if)# end
Switch#
Here is the guide with more details on it:
Kind Regards,
Ivan
**Please grade this post if you find it useful.
Ivan
