思科交换机配置
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
1、交换机管理VLAN,地址,用户和密码
Switch>enable #进入特权模式
Switch#configure terminal #进入全局模式
Switch(config)#hostname yyyy #命名yyyy
Switch(config)#enable password 123 #弱口令
Switch(config)#enable secret 123456 #使能密码
Switch(config)#interface vlan 1 #默认VLAN
Switch(config-if)#no shoutdown #使VLAN处于运行中
Switch(config-if)# ip address 192.168.3.254 255.255.255.0
Switch(config-if)#exit
Switch (config)#line vty 0 2 #开启TELNET登录,同时登录2人Switch (config-line)#password 123456
Switch (config-line)#login
telnet登录:同ip段登管理地址
2、建立vlan
Switch#config
Switch#configure ter
Switch#configure terminal
Switch(config)#vlan 80 #建立80 vlan,//也可以不建vlan直接加
入vlan,系统自己创建
Switch#interface vlan 80 #进入vlan
Switch(config-vlan)#exit
Switch(config)#interface range f0/1-5 #进入到1-5端口
Switch(config-if-range)#switchport mode access
Switch(config-if-range)#switchport access vlan 80 #1-5端口加入到vlan 80中
Switch(config-if-range)#exit
Switch(config)#exit
2、双工模式
Switch(config)#interface range f0/1-5
Switch(config)#duplex full
3、
恢复出厂设置:
Switch>en
Switch#erase startup-configuer
Switch#reload
3、在特权模式下查看配置
Switch#show version
Switch# show vlan
Switch# show running-configuer
Switch# show interface fastenther 0/1
Switch# show mac-address-table
Switch# show ip route
interface Port-channel 1 //进入虚拟的以太通道组1
switchport trunk encapsulation dot1q //给这个接口的trunk封装为802.1Q的帧格式switchport mode trunk //定义这个接口的工作模式为trunk
switchport trunk allowed vlan all //在这个trunk上允许所有的vlan通过
Interface gigabitethernet 0/1 //进入模块0上的吉比特以太口1
channel-group 1 mode on 把这个接口放到快速以太通道组1中
port-channel load-balance src-dst-ip //定义快速以太通道组的负载均衡方式(依*源和目的IP的方式)
4、删除VLAN
Switch(config-if)#no switchport access vlan 80 #先删接口
switch(config)#no int vlan 20 #再删除配置接口
Switch(config)#no vlan 80 #删除VLAN
4、查看端口信息
show ip int br
5、三层交换机实现不同vlan通信(和单臂路由差不多)
6、三层交机开启DHCP地址分配配置
路由器配置:
interface FastEthernet0/0
ip address 172.18.10.1 255.255.255.0
ip nat inside
duplex auto
speed auto
interface Vlan1
no ip address
shutdown
ip classless
ip route 172.18.20.0 255.255.255.0 172.18.10.10 ip route 172.18.30.0 255.255.255.0 172.18.10.10 ip route 172.18.60.0 255.255.255.0 172.18.10.10 ip route 172.18.70.0 255.255.255.0 172.18.10.10 ip route 172.18.80.0 255.255.255.0 172.18.10.10 ip route 172.18.90.0 255.255.255.0 172.18.10.10 access-list 1 permit 172.18.0.0 0.0.255.255
三层交换机的配置:
ip dhcp pool vlan20pool