當前位置:首頁 » 數據倉庫 » 思科裡面如何配置交換機
擴展閱讀
webinf下怎麼引入js 2023-08-31 21:54:13
堡壘機怎麼打開web 2023-08-31 21:54:11

思科裡面如何配置交換機

發布時間: 2023-05-21 03:29:08

⑴ 在思科模擬器上如何進行交換機的基本配置

樓主,你好x0dx0ax0dx0a在模擬器上添加思科交換機x0dx0ax0dx0a進行CLI輸入x0dx0ax0dx0a用戶模式hostname# ;x0dx0a特權模式hostname(config)# ;x0dx0a全局配置模式hostname(config-if)# ;x0dx0ax0dx0a交換機口令設置:x0dx0aswitch>enable ;進入特權模式x0dx0aswitch#config terminal ;進入全局配置模式x0dx0aswitch(config)#hostname csico ;設置交換機的主機名x0dx0aswitch(config)#enable secret csico1 ;設置特權加密口令x0dx0aswitch(config)#enable password csico8 ;設置特權非密口令x0dx0aswitch(config)#line console 0 ;進入控制台口x0dx0aswitch(config-line)#line vty 0 4 ;進入虛擬終端x0dx0aswitch(config-line)#login ;虛擬終端允許登錄x0dx0aswitch(config-line)#password csico6 ;設置虛擬終端登錄口令csico6x0dx0aswitch#exit ;返回命令x0dx0a交換機VLAN創建,刪除,埠屬性的設置,配置trunk埠,將某埠加入vlan中,配置VTP:x0dx0aswitch#vlan database ;進入VLAN設置x0dx0aswitch(vlan)#vlan 2 ;建VLAN 2x0dx0aswitch(vlan)#vlan 3 name vlan3 ;建VLAN 3並命名為vlan3x0dx0aswitch(vlan)#no vlan 2 ;刪vlan 2x0dx0aswitch(config)#int f0/1 ;進入埠1x0dx0aswitch(config)#speed ? 查看speed命令的子命令x0dx0aswitch(config)#speed 100 設置該埠速率為100mb/s (10/auto)x0dx0aswitch(config)#plex ? 查看plex的子命令x0dx0aswitch(config)#plex full 設置該埠為全雙工(auto/half)x0dx0aswitch(config)#description TO_PC1 這是該埠描述為TO_PC1x0dx0aswitch(config-if)#switchport access vlan 2 ;當前端口加入vlan 2x0dx0aswitch(config-if)#switchport mode trunk ;設置為trunk模式(access模式)x0dx0aswitch(config-if)#switchport trunk allowed vlan 1,2 ;設置允許的vlanx0dx0aswitch(config-if)#switchport trunk encap dot1q ;設置vlan 中繼x0dx0aswitch(config)#vtp domain vtpserver ;設置vtp域名相同x0dx0aswitch(config)#vtp password ;設置發vtp密碼x0dx0aswitch(config)#vtp server ;設置vtp伺服器模式x0dx0aswitch(config)#vtp client ;設置vtp客戶機模式x0dx0ax0dx0a交換機設置IP地址,默認網關,域名,域名伺服器,配置和查看MAC地址表:x0dx0aswitch(config)#interface vlan 1 ;進入vlan 1x0dx0aswitch(config-if)#ip address 192.168.1.1 255.255.255.0 ;設置IP地址x0dx0aswitch(config)#ip default-gateway 192.168.1.6 ;設置默認網關x0dx0aswitch(config)#ip domain-name cisco.com 設置域名x0dx0aswitch(config)#ip name-server 192.168.1.18 設置域名伺服器x0dx0aswitch(config)#mac-address-table? 查看mac-address-table的子命令x0dx0aswitch(config)#mac-address-table aging-time 100 設置超時時間為100msx0dx0aswitch(config)#mac-address-table permanent 0000.0c01.bbcc f0/3 加入永久地址在f0/3埠x0dx0aswitch(config)#mac-address-table restricted static 0000.0c02.bbcc f0/6 f0/7 加入靜態地址目標埠f0/6源埠f0/7x0dx0aswitch(config)#endx0dx0aswitch#show mac-address-table 查看整個MAC地址表x0dx0aswitch#clear mac-address-table restricted static 清除限制性靜態地址x0dx0a交換機顯示命令:x0dx0aswitch#write ;保存配置信息x0dx0aswitch#show vtp ;查看vtp配置信息x0dx0aswitch#show run ;查看當前配置信息x0dx0ax0dx0aswitch#show vlan ;查看vlan配置信息x0dx0aswitch#show interface ;查看埠信息x0dx0aswitch#show int f0/0 ;查看指定埠信息x0dx0aswitch#show int f0/0 status;查看指定埠狀態x0dx0aswitch#dir flash: ;查看快閃記憶體

⑵ 在思科模擬器上怎麼進行交換機的基本配置

當創建vlan時,必須要決定是否使用VTP,使用VTP,能使配置在一個或多個交換機上被改變時,那些改變會自動傳送給在同一個VTP域中的其他交換機。VTP 被組織成管理域(VTP Domain),相同域中的交換機能共享VLAN 信息。根據交換機在VTP 域中的作用不同,VTP 可以分為三種模式:伺服器模式(Server),客戶機模式(Client),透明模式。。。

1、首先,打開思科模擬器軟體,連接三台交換機的連接線,將所有交換機互相連接起來,一台當伺服器,一台當客戶機,另外一台當透明模式。

2、把三台交換機的配置清除干凈,重啟交換機,配置命令為:

復制內容到剪貼板 S1#flash:vlan.dat S1#erasestartup-config S1#reload

配置S1 為VTP server,配置命令為:

復制內容到剪貼板 S1(config)#vtpmodeserver

3、配置S3 為VTP transparent,配置命令是:

復制內容到剪貼板 S3#vlandatabase S3(vlan)#vtptransparent S3(vlan)#vtppasswordcisco(配置交換機的密碼)

4、配置S2 為VTP client,配置命令是:

復制內容到剪貼板 S2(config)#vtpmodeclient SettingdevicetoVTPCLIENTmode. S2(config)#vtpdomainVTP-TEST DomainnamealreadysettoVTP-TEST. S2(config)#vtppasswordcisco

5、在S1 上創建VLAN,檢查S2、S3 上的VLAN 信息,配置命令是:

復制內容到剪貼板 S1(config)#vlan2 S1(config)#vlan3

查看s1,s2,s3的`VLAN配置信息。命令是:

復制內容到剪貼板 S1#showvlan S2#showvlan S3#showvlan

6、查看VTP 信息,查看交換機的vtp詳細信息和版本等信息:

復制內容到剪貼板 S1#showvtpstatus

注意事項:

1、要成功配置vtp伺服器,應確認 配置的所有交換機都已設置為默認設置。

2、在網路中配置至少兩台vtp伺服器交換機。

3、確保所有的交換機都配置相同的vtp協議版本。

4、配置交換機的vtp模式一定要在交換機的特權配置模式下配置。

如何配置Cisco交換機的IP地址

大家知道如何配置Cisco交換機的IP地址的方法么?接下來是我為大家收集的如何配置Cisco交換機的IP地址方法,希望能幫到大家。
如何配置Cisco交換機的IP地址的方法
1. 計算機命令:

PCA login: root ;使用root用戶

password: linux ;口令是linux

# shutdown -h now ;同init 0 關機

# logout

# login

# ifconfig ;顯示IP地址

# ifconfig eth0 netmask ;設置IP地址

# ifconfig eht0 netmask down ; 刪除IP地址

# route add 0.0.0.0 gw

# route del 0.0.0.0 gw

# route add default gw ;設置網關

# route del default gw ;刪除網關

# route ;顯示網關

# ping

# telnet

2. 交換機支持的命令:

交換機基本狀態:

switch: ;交換機的ROM狀態

rommon> ;路由器的ROM狀態

hostname> ;用戶模式

hostname# ;特權模式

hostname(config)# ;全局配置模式

hostname(config-if)# ;介面狀態

交換機口令設置:

switch>enable ;進入特權模式

switch#config terminal ;進入全局配置模式

switch(config)#hostname ;設置交換機的主機名

switch(config)#enable secret xxx ;設置特權加密口令

switch(config)#enable password xxa ;設置特權非密口令

switch(config)#line console 0 ;進入控制台口

switch(config-line)#line vty 0 4 ;進入虛擬終端

switch(config-line)#login ;允許登錄

switch(config-line)#password xx ;設置登錄口令xx

switch#exit ;返回命令

交換機VLAN設置:

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-if)#switchport access vlan 2 ;當前埠加入vlan 2

switch(config-if)#switchport mode trunk ;設置為干線

switch(config-if)#switchport trunk allowed vlan 1,2 ;設置允許的vlan

switch(config-if)#switchport trunk encap dot1q ;設置vlan 中繼

switch(config)#vtp domain ;設置發vtp域名

switch(config)#vtp password ;設置發vtp密碼

switch(config)#vtp mode server ;設置發vtp模式

switch(config)#vtp mode client ;設置發vtp模式

交換機設置IP地址:

switch(config)#interface vlan 1 ;進入vlan 1

switch(config-if)#ip address ;設置IP地址

switch(config)#ip default-gateway ;設置默認網關

switch(config)#no shutdown

switch#dir flash: ;查看快閃記憶體

交換機顯示命令:

switch#write ;保存配置信息

switch#show vtp ;查看vtp配置信息

switch#show run ;查看當前配置信息

switch#show vlan ;查看vlan配置信息

switch#show interface ;查看埠信息

switch#show int f0/0 ;查看指定埠信息

3. 路由器支持的命令:

路由器顯示命令:

router#show run ;顯示配置信息

router#show interface ;顯示介面信息

router#show ip route ;顯示路由信息

router#show cdp nei ;顯示鄰居信息

router#reload ;重新起動

路由器口令設置:

router>enable ;進入特權模式

router#config terminal ;進入全局配置模式

router(config)#hostname ;設置交換機的主機名

router(config)#enable secret xxx ;設置特權加密口令

router(config)#enable password xxb ;設置特權非密口令

router(config)#line console 0 ;進入控制台口

router(config-line)#line vty 0 4 ;進入虛擬終端

router(config-line)#login ;要求口令驗證

router(config-line)#password xx ;設置登錄口令xx

router(config)#(Ctrl+z) ; 返回特權模式

router#exit ;返回命令

路由器配置:

router(config)#int s0/0 ;進入Serail介面

router(config-if)#no shutdown ;激活當前介面

router(config-if)#clock rate 64000 ;設置同步時鍾

router(config-if)#ip address ;設置IP地址

router(config-if)#ip address second ;設置第二個IP

router(config-if)#int f0/0.1 ;進入子介面

router(config-***if.1)#ip address ;設置子介面IP

router(config-***if.1)#encapsulation dot1q ;綁定vlan中繼協議

router(config)#config-register 0x2142 ;跳過配置文件

router(config)#config-register 0x2102 ;正常使用配置文件

router#reload ;重新引導

路由器文件操作:

router# running-config startup-config ;保存配置

router# running-config tftp ;保存配置到tftp

router# startup-config tftp ;開機配置存到tftp

router# tftp flash: ;下傳文件到flash

router# tftp startup-config ;下載配置文件

ROM狀態:

Ctrl+Break ;進入ROM監控狀態

rommon>confreg 0x2142 ;跳過配置文件

rommon>confreg 0x2102 ;恢復配置文件

rommon>reset ;重新引導

rommon> xmodem: flash: ;從console傳輸文件

看了“如何配置Cisco交換機的IP地址”還想看:

1. 思科cisco怎麼配置WEB網管

2. cisco交換機設置

3. 思科IP-MAC地址綁定怎麼配置

4. 交換機如何配置telnet

5. cisco交換機怎麼配置vlan

⑷ 思科交換機怎麼給埠配置ip

1、在思科模擬器上找到Cisco 2960交換機一台,PC 2台,直通線若干條,進行連接配置。

注意事項:

交換機根據工作位置的不同,可以分為廣域網交換機和區域網交換機。廣域的交換機就是一種在通信系統中完成信息交換功能的設備,它應用在數據鏈路層。交換機臘察有多個埠,每個埠都具有橋接功能,可以連接一個區域網或一台高性能伺服器或工作站。實際上,交換機有時被稱為多埠網橋。

⑸ 思科模擬器交換機的基本配置方法

交換機具有轉化和接受資料的動能,在區域網中是不能沒有的重要裝置的睜枝,在生活中,交換機和路弊絕由器一樣重要。接下來是我為大家收集的方法,希望能幫到大家。

首先找出一台2811類的路由器和一台2960類的交換機和3台pc,利用直通線使各個裝置相互連線起來,如下圖所示:

為交換機配置主機名,命令為:

Switch>enable

Switch#conf terminal

Enter configuration mands, one per line. End with CNTL/Z.

Switchconfig#hostname S1

如下圖所示:

為交換機配置密碼,命令為:

悉卜敏S1config#enable secret cisco

S1config#line vty 0 15

S1config-line#password cisco

S1config-line#login

如下圖所示

配置交換機埠安全,配置命令是:

S1config#int f0/1

S1config-if#shutdown

S1config-if#switch mode access

S1config-if#switch port-securitiy

如下圖所示

檢查交換機的Mac地址表,命令是:

S1#show mac-address-table,如下圖所示:

檢視埠安全的設定情況,用命令為:show port-security,如下圖所示:

⑹ Cisco交換機如何設置設置步驟有哪些

1 , 設置交換機名稱

(config)#hostname hostname

2,設置log存放路徑

(config)#logging 10.7.68.68 //將log檔文件存在10.7.68.68

(config)#spanning-tree mode rapid-pvst // 設定 spanning-tree 的模式是 rapid-pvst

3,設置errdisable

(config)#errdisable recovery cause all //開啟errdiable 恢復的原因

(config)#errdisable recovery interval 300 //errdisable後300秒恢復

4,設置snmp-server

(config)#snmp-server community askeymis RO //設置簡單網路管理協議字元串為只讀

5, 設置vtp

(config)#vtp domain askey // 設定VTP domain 名稱

(config)vtp mode transparent // 設定 VTP 模式為透明模式

Vlan

1,創建Vlan

(config)#vlan 180 //創建Vlan ID號為180

(config-vlan)#name askey //Vlan 名稱為液友askey

2,刪除Vlan

(config)#no vlan 180

#show vlan brief //查看交換機當前Vlan 號及Vlan 下有哪些埠

3,配置管理IP

(config)#int vlan 180

(config-if)#ip address 192.168.1.251 255.255.255.0 //設置管理IP地址

(config)#ip default-gateway 192.168.1.254 //設置默認路由,供其他網段訪問

4,將埠劃至Vlan 180

4.1單一埠劃分

(config)#int f0/1 //進入埠f0/1

(config-if)#sw mode access //設置訪問模式檔埋行

(cofnig-if)#sw ac vlan 180 //將其埠劃入Vlan 180

4.2多埠劃分

(config)#int range f0/1 _ 24 //埠范圍為1-24

(config-if-range)#sw mode access

(config-if-range)#sw ac vlan 180

埠配置

1,埠配置

(cofnig)#interface FastEthernet0/1

(config-if)#switchport access vlan 33 // 劃分VLAN

(config-if)# switchport mode access

(config-if)# switchport port-security maximum 2 //設定埠只允許接入2個PC

(config-if)# switchport port-security // 啟用埠安全

(config-if)# switchport port-security violation restrict // 發生違例 埠進errdisable,並記錄

(config-if)# storm-control broadcast level 0.80 //控制廣播包的突發百分比

(config-if)# storm-control action shutdown //暴風控制的違例時埠進入errdisable

(config-if)# storm-control action trap //產行嘩生snmp trap(抑制)消息來通告發生過量流量的情況

(config-if)# spanning-tree portfast // 配置介面為portfast模式

(config-if)# spanning-tree bpguard enable // 啟用bpuguard 防護

(config-if)# spanning-tree guard root // 啟用根橋防護

設置時間與同步

1 , 開啟debug與log記錄時間的服務

(config)#Service timestamps debug datetime localtime //開啟debug記錄時顯示的時間

(config)#Service timestamps log datetime localtime //開啟log記錄時顯示的時間

2,設置時間與時區

(config)# Clock timezone TAIWAN 8 //設置時區

(config)# Clock set 12:16:50 nov 27 2008 //設置時間(月,日,年)

#Show clock //查看交換機當前的時間

3,設置ntp server 實現時間同步

(config)# ntp server 10.1.71.249 //設置交換機與ntp server 實現時間同步

#show ntp stauts //查看交換機是否同步

Clock is synchronized, stratum 3, reference is 10.1.71.249(同步)

nominal freq is 119.2092 Hz, actual freq is 119.2093 Hz, precision is 2**17

reference time is CCD89F21.ECA0C247 (12:22:57.924 TAIWAN Thu Nov 27 2008)

clock offset is 8.4785 msec, root delay is 399.51 msec

root dispersion is 937.29 msec, peer dispersion is 885.30 msec

Password

1,開啟明文密碼加密服務

(config)#service password-encryption //將明文密碼加密

2,設置控制台密碼

(config)#line consloe 0 //進入控制台

(config-line)#login //登錄

(config-line)#password cisco //設置密碼

3,設置enable密碼

(config)#enable password cisco

(config)#enable secret password cisco //給密碼加密碼 ,優先順序高於enable password

4,設置Telnet 密碼

(config)#line vty 0 4 //進入vty模式

(config-line)#login

(config-line)#password cisco //設置密碼

(config-line)#exec-timeout 5 0 //telnet 5分鍾超時。