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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Cisco 4006 Sup III config

Status
Not open for further replies.

tcp1518

IS-IT--Management
Joined
Feb 11, 2003
Messages
1
Location
US
Hello,

I have two Cisco 4006 sup III switches that a client purchased and they have asked me to configure them. I do not have a default config and was curious if anyone can provide me one. The two switches will be connected via the gige ports. There will be two VLAN's created for this install...one for the business side, one for cad...

Thanks
 
Well considering your problem description is missing quite a few details...I'll just give you want you asked for. Here is a sample configuration to get you started. This is for Catalyst switch runing Native code (SUP III or IV)

config t
service password-encryption
!
hostname (insert name of switch here)
!
enable secret (insert secret password here)
!
ip domain-name (insert domain name)
ip name-server (insert DNS server address)
!
interface Loopback0
ip address A.B.C.D E.F.G.H
!
interface GigabitEthernet1/1
description Connection to (other switch name)
switchport access vlan #
switchport trunk encapsulation dot1q
switchport mode dynamic desirable
!
interface GigabitEthernet1/2
description Connection to (other switch name)
switchport access vlan #
switchport trunk encapsulation dot1q
switchport mode dynamic desirable
!
interface FastEthernet2/1
switchport access vlan #
switchport mode access
duplex full
speed 100
spanning-tree portfast
spanning-tree guard root
!
(copy the above interface command for each interface that you have/want in vlans)
!
interface Vlan1
no ip address
!
interface Vlan995 <---(only using as example)
description TEST VLAN 995
ip address A.B.C.D E.F.G.H
no shutdown
!
router eigrp 1 <----(Which ever routing protocol you want to use)
network A.B.C.D
!
banner motd #

(insert your banner here)

#
!
line con 0
password (your password)
line vty 0 4
password (your password)
!
vlan database
vtp mode server
vtp domain (name of your vtp domain)
vlan # name (name your vlan)
exit
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top