九色国产,午夜在线视频,新黄色网址,九九色综合,天天做夜夜做久久做狠狠,天天躁夜夜躁狠狠躁2021a,久久不卡一区二区三区

打開APP
userphoto
未登錄

開通VIP,暢享免費電子書等14項超值服

開通VIP
思科Cisco 2960系列交換機配置命令

配置密碼:

2960>en ;第一次密碼為空 
2960h#conf t ;進入全局配置模式 
2960(config)#hostname swa ;設置交換機名 
2960(config)#enable secret aaa ;設置特權加密口令為 aaa 
2960(config)#enable password aax ;設置特權非密口令為 aax 
2960(config)#line console 0 ;進入控制臺口(Rs232) 
2960(config-line)#password aa ;設置登錄口令aa 
2960(config-line)#login ;登錄要求口令驗證 
2960(config-line)#line vty 0 4 ;進入虛擬終端virtual tty 
2960(config-line)#password a ;設置登錄口令a 
2960(config-line)#login ;登錄要求口令驗證 
2960(config-line)#exit ;返回上一層 
2960(config)#exit ;返回上一層 
2960#sh run ;看配置信息 
2960#exit ;返回命令

配置Vlan

新建一個Vlan的命令

Switch>enable     進入特權模式

Switch#configure terminal      進入全局配置模式

Switch (config)# vlan vlan-id     創(chuàng)建一個Vlan或者進入Vlan配置模式

Switch (config-vlan)# name vlan-name 給Vlan命名(取消設置:no name)

Switch (config-vlan)# mtu mtu-size 設置最大通訊量(取消設置:no mtu)

Switch (config-vlan)#remote-span    開啟遠程流量監(jiān)控(關閉:no remote-span)

Switch (config-vlan)# end 回到特權模式

Switch#show vlan {name vlan-name | id vlan-id}        查看當前配置

Switch#copy running-config startup config 保存配置

刪除Vlan的命令

Switch>enable     進入特權模式

Switch#configure terminal      進入全局配置模式

Switch (config)# no vlan vlan-id       刪除Vlan

Switch (config)# end 回到特權模式

Switch#show vlan brief    查看刪除情況

Switch#copy running-config startup config 保存配置

端口加入特定Vlan的命令

Switch>enable     進入特權模式

Switch#configure terminal      進入全局配置模式

Switch (config)# interface interface-id    進入端口配置

Switch (config-if)# switchport mode access     將接口的模式設為訪問模式

Switch (config-if)# switchport access vlan vlan-id 將端口加入指定的Vlan(恢復端口默認配置:default interface interface-id)

Switch (config-if)# end       回到特權模式

Switch#show running-config interface interface-id     查看端口模式

Switch#show interfaces interface-id switchport 查看端口詳細配置

Switch#copy running-config startup-config 保存配置

批量端口加入特定Vlan的命令

int range fa0/1 - 10

switchport   access   VLan   V2

將特定端口設為trunk

2960-01(config)#default interface fastEthernet 0/1    端口恢復默認值    

2960-01(config)#interface fastethernet0/1            進入端口模式

2960-01(config-if)#switchport mode trunk           設置端口為trunk模式

2960-01(config-if)#switchport nonegotiate          將接口設置為不協商模式

2960-01(config-if)end

2960-01#wr

啟用snmp

Switch>enable     進入特權模式

Switch#configure terminal      進入全局配置模式

Switch (config)# snmp-server community string [view view-name] [ro | rw] [access-list-number]

(關閉snmp: no snmp-server)

(刪除團體字符: no snmp-server community string)    配置snmp團體字符并開啟snmp代理服務

String: 團體口令字符(所有SNMP命令中只有設置團體口令的snmp-server community是必須的,其它的都是可選的.)

View: view 可以用于限定哪些MIB分支不能用本community-string存取預先用snmp-server view定義

ro | rw: ro獲得MIB對象信息;rw獲得并可以修改MIB對象信息

access-list-number:訪問列表號

Switch (config)#access-list access-list-number {deny |

permit} source [source-wildcard]     配置拒絕或者允許訪問snmp代理服務的IP地址,訪問列表號為上一步指定的列表號

Switch (config)#end    回到特權模式

Switch#show running-config 查看配置

Switch#copy running-config startup-config 保存配置

cisco2960口令恢復

交換機口令恢復的步驟

⒈串口線連接到到交換機的console口。

⒉先按住交換機面板上的mode鍵,然后打開電源。

⒊初始化flash

>flash_init

⒋更名含有password的配置文件。

>rename flash:config.text flash:config.old

⒌啟動交換機。

>boot

⒍進入特權模式。

>enable

⒎此時開機是已忽略password。

#rename flash:config.old flash:config.text

⒏copy配置文件到當前系統(tǒng)中。

#copy flash:config.text system:running-config

⒐修改口令。

#configure terminal

#enable secret

⒑保存配置。

#write

===================================================================================================
(一)使能口令(enable password),口令以明文顯示 
使能密碼 (enbale secret), 口令以密文顯示 
Switch.> /*用戶直行模式提示符 
Switch.>enable /*進入特權模式 
Switch.# /*特權模式(進入前要輸入密文) 
Switch.#config terminal /*進入全局配置模式 
Switch.(config)# /*配置模式提示符 
Switch.(config)# hostname Pconline /*設置主機名Pconline 
Pconline(config)# enable password cisco3560 /*設置使能口令為pconline 
Pconline(config)# enable secret cisco3560 /*設置使能密碼為network 
Pconline(config)# line vty 0 15 /*設置虛擬終端線 
Pconline(config-line)# login /*設置登陸驗證 
Pconline(config-line)# password cisco3560 /*設置虛擬終端登陸密碼 
二、 交換機VLAN設置 
Switch.> /*用戶直行模式提示符 
Switch.>enable /*進入特權模式 
switch#vlan database ; 進入VLAN設置 
switch(vlan)# vlan 2 ; 建VLAN 2 
switch(vlan)#no vlan 2 ; 刪vlan 2 
switch(config)#int f0/1 ; 進入網絡端口1 
switch(config)#int giga0/1 ; 進入匯聚千兆口1 
switch(config-if)# duplex {auto | full | half} 設置端口為---自動/全雙工/半雙工 
switch(config-if)#switchport mode trunk ; 當前端口設置為匯聚口 
switch(config-if)#switchport mode access ; 當前端口設置為接入模式 
switch(config-if)#switchport trunk allowed vlan 1,2 ;設置1,2號口允許的vlan組 
switch(config-if)#switchport trunk vlan 2 ; 設置1號口允許的vlan 
switch(config-if)#switchport access vlan 2 ; 當前端口加入vlan 2 
switch(config-if)#switchport trunk encap dot1q ; 設置vlan 中繼 
cisco網絡中,交換機在局域網中最終穩(wěn)定狀態(tài)的接口類型主要有四種: 
access/ trunk/ multi/ dot1q-tunnel。 
1、access: 主要用來接入終端設備,如PC機、服務器、打印服務器等。 
2、trunk: 主要用在連接其它交換機,以便在線路上承載多個vlan。 
3、multi: 在一個線路中承載多個vlan,但不像trunk,它不對承載的數據打標簽。主要用于接入支持多vlan的服務器或者一些網絡分析設備?,F在基本不使用此類接口,在cisco的網絡設備中,也基本不支持此類接口了。 
4、dot1q-tunnel: 用在Q-in-Q隧道配置中。 
switch(config)#vtp domain ; 設置發(fā)vtp域名 
switch(config)#vtp password ; 設置發(fā)vtp密碼 
switch(config)#vtp mode server ;設置發(fā)vtp模式 
switch(config)#vtp mode client ;設置發(fā)vtp模式 
三. 交換機設置IP地址 
switch(config)#interface vlan 1 進入vlan 1 
switch(config-if)#ip address 132.37.48.3 255.255.255.0; 設置交換機管理IP 
switch(config)#ip default-gateway 132.37.48.1 ;設置交換機默認網關 
switch(config)#end; 退出當前模式 
Switch#conf t 進入特權模式 
Switch(config)# interface fa0/5 
Switch(config-if)# shutdown 關閉端口 
Switch(config-if)# no shutdown 打開端口 
四. 交換機顯示命令 
特權模式下: 
switch#write ; 保存配置信息 
switch#show vtp ; 查看vtp配置信息 
switch#show run ; 查看當前配置信息 
switch#show vtp ; 查看交換機vtp信息 
switch#show vlan ; 查看vlan配置信息 
switch#show interface ; 查看端口信息 
Switch#show interfaces fastethernet 0/1 switchport ;顯示二層端口的狀態(tài),可以用來決定此口是否為二層或三層口。 switch#show int f0/0 ; 查看指定端口信息 
sw1924_b#show ip; 查看上述設置環(huán)境 
sw1924_b#show versi;查看交換機的版本等信息 
sw1924_b#show running-config;查看交換機的當前運行配置等全部信息 
sw1924_b#show int e0/1;查看交換機的第1個端口信息 
基于端口的MAC地址綁定 
Switch#config terminal #進入配置模式 
Switch(config)# Interface fastethernet 0/1 #進入具體端口配置模式 
Switch(config-if)#Switchport port-secruity #配置端口安全模式 
Switch(config-if )switchport port-security mac-address MAC(主機的MAC地址) 
#配置該端口要綁定的主機的MAC地址 
Switch(config-if )no switchport port-security mac-address MAC(主機的MAC地址) 
#刪除綁定主機的MAC地址 

====================================================================================================

配置步驟 注釋 
配置密碼 
Switch>en 特權模式 
Switch#conf t 配置模式 
Switch(config)#host SAT2960 改變設備名稱 
Switch(config)#ena se cisco 特權口令 
Switch(config)#line vty 0 15 修改遠程登陸口令 
Switch(config-line)#login             
Switch(config-line)#password cisco 
Switch(config-line)#line con 0 修改串口登陸口令 
Switch(config-line)#login             
Switch(config-line)#password noco 
Switch(config-line)#exit 
Switch(config)#exit 
Switch# 
創(chuàng)建VLAN (特權模式下用vlan database命令) 
SAT2960#vlan database 
SAT2960(vlan)#vlan 2 name Marketing 創(chuàng)建并命名 
VLAN 2 modified: 
Name: Marketing 
SAT2960(vlan)#apply 應用 
APPLY complete 
SAT2960(vlan)#(Ctrl+C) 退出 
SAT2960#sh vlan brief 驗證 
設置IP信息 
默認情況下,VLAN1是管理VLAN,所有接口均是VLAN1的成員 
SAT2960(config)#int vlan1 進入管理VLAN 
SAT2960(config-if)#ip address 172.16.10.16 255.255.255.0 
SAT2960(config-if)#no shut 打開接口 
SAT2960(config-if)#exit 
SAT2960(config)#ip default-gateway 172.16.10.1 
SAT2960(config)# 
SAT2960交換機配置文件的擦除: 
SAT2960交換機配置文件是存儲在NVRAM中的,使用copy run start 來保存當前運行的配置到NVRAM中,擦除SAT2960 里面的start-config文件,使用命令:
SAT2960#erase start-config
SAT2960#reload

配置端口描述:(使用 description 命令)
SAT2960(config)#int fa 0/1
SAT2960(config-if)#description haha
SAT2960(config-if)#exit
可以使用show interface 和 show running-config 命令來查看這些描述信息;

給VLAN分配端口: 
SAT2960(config-if)#int f0/2 
SAT2960(config-if)#switchport access vlan 2 
SAT2960(config-if)#int f0/3 
SAT2960(config-if)#switchport access vlan 3 
SAT2960(config-if)#int f0/4 
SAT2960(config-if)#switchport access vlan 4 
SAT2960(config-if)#exit 
SAT2960(config)#exit 
驗證配置信息,如下: 
SAT2960#sh vlan brief 
配置中繼端口——打trunk 
SAT2960(config)#int f0/12 
SAT2960(config-if)#switchport mode trunk 
SAT2960(config-if)#(ctrl+c) 
SAT2960# 
驗證配置信息: 
SAT2960#sh run 
保存設置 
SAT2960#wr mem 
或者 
SAT2960#copy running-config startup-config 

常用調試命令           
a、顯示所有配置命令:Switch#show run           
b、顯示所有接口狀態(tài):Switch#show ip int brief           
c、顯示所有VLAN的信息:Switch#show vlan brief


========================================================


本站僅提供存儲服務,所有內容均由用戶發(fā)布,如發(fā)現有害或侵權內容,請點擊舉報。
打開APP,閱讀全文并永久保存 查看更多類似文章
猜你喜歡
類似文章
Cisco交換機配置學習
史上最詳細全中文 Cisco 3560交換機使用手冊
CISCO 三層交換機VLAN的配置
CISOC交換機基本配置命令全集
Cisco、華為、Juniper網絡技術 隨著Vlan中的Trunk技術在園區(qū)網中的應用
二層交換機基本配置
更多類似文章 >>
生活服務
熱點新聞
分享 收藏 導長圖 關注 下載文章
綁定賬號成功
后續(xù)可登錄賬號暢享VIP特權!
如果VIP功能使用有故障,
可點擊這里聯系客服!

聯系客服