<em id="0a85b"><option id="0a85b"></option></em>

<abbr id="0a85b"></abbr>

      <nobr id="0a85b"></nobr>
        <tr id="0a85b"></tr>
        9久久伊人精品综合,亚洲一区精品视频在线,成 人免费va视频,国产一区二区三区黄网,99国产精品永久免费视频,亚洲毛片多多影院,精品久久久无码人妻中文字幕,无码国产欧美一区二区三区不卡
        學習啦>學習電腦>電腦入門>

        思科交換機的基本配置

        時間: 志藝942 分享

          隨著Internet的高速發展,網絡規模不斷膨脹,對于從事網絡專業的學生熟練掌握路由器和交換機的配置已顯得十分重要。接下來是小編為大家收集的思科交換機的基本配置方法,希望能幫到大家。

          思科交換機的基本配置的方法

          一、交換機的基本配置

          Author:chenchao in ZJNU

          從本篇文章開始,將連載大概8-9篇自己學習交換與路由的實驗報告,但是怕自己能力不行,會出現錯誤,所以,先載兩篇文章,依次為:交換機的基本配置;路由器基本配置。本篇為交換機的基本配置,使用的仿真軟件是Cisco的一款免費軟件:Cisco Packet Tracer。想學習的可以在百度自行下載。

          下面開始附上實驗過程:

          實驗環境:

          Cisco 2950交換機1臺,Console電纜1根,PC機一臺,網線1根。連接如下圖所示:

          實驗步驟:

          一、 交換機的帶外配置;

          1、 在用戶模式、特權模式、全局模式、接口模式之間轉換;

          Switch>enable

          Switch#configure terminal

          Enter configuration commands, one perline. End with CNTL/Z.

          Switch(config)#interface FastEthernet 0/1

          Switch(config-if)#exit

          Switch(config)#exit

          Switch#

          %SYS-5-CONFIG_I: Configured from console byconsole

          Switch#exit

          Switch con0 is now available

          Press RETURN to get started.

          Switch>

          2、將交換機的名稱改為“student”;

          Switch(config)#hostname student

          student(config)#

          3、 為交換機各個模式設置密碼“cisco”;

          特權模式下的密碼保護

          student#enable

          student#configure t

          Enter configuration commands, one perline. End with CNTL/Z.

          student(config)#enable password cisco

          student(config)#enable secret cisco1

          遠程登錄口令設置

          student#configure t

          Enter configuration commands, one perline. End with CNTL/Z.

          student(config)#line console 0

          student(config-line)#line vty 0 4

          student(config-line)#password cisco2

          student(config-line)#login

          student(config-line)#

          student#

          4、為交換機制定一個IP地址10.10.10.X/24;

          student#config

          Configuring from terminal, memory, ornetwork [terminal]?

          Enter configuration commands, one perline. End with CNTL/Z.

          student(config)#interface vlan 1

          student(config-if)#ip address 10.10.10.1255.0.0.0

          5、開啟交換機的Telnet服務功能,建立Telnet用戶admin,口令cisco,并制定只能從10.10.10.y/24登錄Telnet服務器;

          student#

          student#configure t

          Enter configuration commands, one perline. End with CNTL/Z.

          student(config)#user admin password 0 cisco

          student(config)#

          6、 查看配置情況;

          student>enable

          Password:

          student#show running-c

          Building configuration...

          hostname student

          !

          enable secret 5 class="main">

        思科交換機的基本配置

        時間: 志藝942 分享

          enable password cisco

          !

          !

          username admin password 0 cisco

          interface Vlan1

          ipaddress 10.10.10.1 255.0.0.0

          !

          !

          line con 0

          !

          line vty 0 4

          password cisco2

          login

          line vty 5 15

          login

          !

          !

          End

          二、交換機的端口配置:

          1、 配置接口的描述、關閉借口、啟動接口、配置接口的速度為100Mbps、配置接口工作模式為全雙工、配置接口的流程控制;

          student#configure terminal

          Enter configuration commands, one perline. End with CNTL/Z.

          student(config)#interface FastEthernet0/1

          student(config-if)#shutdown

          %LINK-5-CHANGED: Interface FastEthernet0/1,changed state to administratively down

          %LINEPROTO-5-UPDOWN: Line protocol onInterface FastEthernet0/1, changed state to down

          %LINEPROTO-5-UPDOWN: Line protocol onInterface Vlan1, changed state to down

          student(config-if)#

          student(config-if)#exit

          student(config)#interface FastEthernet0/1

          student(config-if)#no shutdown

          %LINK-5-CHANGED: Interface FastEthernet0/1,changed state to up

          %LINEPROTO-5-UPDOWN: Line protocol onInterface FastEthernet0/1, changed state to up

          %LINEPROTO-5-UPDOWN: Line protocol onInterface Vlan1, changed state to up

          student(config-if)#speed 100

          student(config-if)#duplex full

          %LINK-5-CHANGED: Interface FastEthernet0/1,changed state to down

          %LINEPROTO-5-UPDOWN: Line protocol onInterface FastEthernet0/1, changed state to down

          %LINEPROTO-5-UPDOWN: Line protocol onInterface Vlan1, changed state to down

          student(config-if)#

          2、 配置接口FastEthernet0/10為Access口;

          student#

          student#configure terminal

          Enter configuration commands, one perline. End with CNTL/Z.

          student(config)#interface FastEthernet0/10

          student(config-if)#switchport mode access

          student(config-if)#

          3、 配置接口FastEthernet0/12為Trunk口;

          student#

          student#configure t

          Enter configuration commands, one perline. End with CNTL/Z.

          student(config)#interface fastethernet0/12

          student(config-if)#switchport mode Trunk

          student(config-if)#end

          4、 查看配置情況;

          !

          interface FastEthernet0/1

          duplex full

          speed100

          !

          interface FastEthernet0/2

          !

          interface FastEthernet0/9

          !

          interface FastEthernet0/10

          switchport mode access

          !

          interface FastEthernet0/11

          !

          interface FastEthernet0/12

          switchport mode trunk

          !

          student#show running-c

          Building configuration...

          Current configuration : 1275 bytes

          !

          version 12.1

          no service timestamps log datetime msec

          no service timestamps debug datetime msec

          no service password-encryption

          !

          hostname student

          !

          enable secret 5 class="main">

        思科交換機的基本配置

        時間: 志藝942 分享

          enable password cisco

          !

          !

          username admin password 0 cisco

          !

          !

          interface FastEthernet0/1

          duplex full

          speed 100

          !

          interface FastEthernet0/2

          !

          interface FastEthernet0/3

          !

          interface FastEthernet0/4

          !

          interface FastEthernet0/5

          !

          interface FastEthernet0/6

          !

          interface FastEthernet0/7

          !

          interface FastEthernet0/8

          !

          interface FastEthernet0/9

          !

          interface FastEthernet0/10

          switchport mode access

          !

          interface FastEthernet0/11

          !

          interface FastEthernet0/12

          switchport mode trunk

          !

          interface FastEthernet0/13

          !

          interface FastEthernet0/14

          !

          interface FastEthernet0/15

          !

          interface FastEthernet0/16

          !

          interface FastEthernet0/17

          !

          interface FastEthernet0/18

          !

          interface FastEthernet0/19

          !

          interface FastEthernet0/20

          !

          interface FastEthernet0/21

          !

          interface FastEthernet0/22

          !

          interface FastEthernet0/23

          !

          interface FastEthernet0/24

          !

          interface GigabitEthernet1/1

          !

          interface GigabitEthernet1/2

          !

          interface Vlan1

          ipaddress 10.10.10.1 255.0.0.0

          !

          !

          line con 0

          !

          line vty 0 4

          password cisco2

          login

          line vty 5 15

          login

          !

          !

          end

        看了“思科交換機的基本配置”還想看:

        1.思科交換機的基本配置詳解

        2.思科交換機基本配置實例講解

        3.Cisco交換機基本配置方法

        4.思科交換機配置教程詳解

        5.Cisco交換機常用配置命令總結

        6.Cisco常用的路由器交換機配置命令

        2743403 主站蜘蛛池模板: 一道本AV免费不卡播放| 国语精品国内自产视频| 国产欧洲欧洲久美女久久| 久久人人爽人人爽人人av| 免费区欧美一级猛片| 免费观看成年欧美1314www色| 一级毛片免费观看不卡视频| 久久精品国产精品亚洲综合| 国偷自产一区二区三区在线视频| 国产欧美另类精品久久久| 亚洲自偷自偷偷色无码中文| 久久男人av资源站| 亚洲性日韩一区二区三区| 成午夜福利人试看120秒| 国产AV国片精品有毛| 免费人成网站视频在线观看| 色综合久久中文字幕综合网| 久久亚洲精品11p| 秋霞人妻无码中文字幕| 99精品国产在热久久| 无码人妻aⅴ一区二区三区蜜桃| 国产精品伊人久久综合网| 激情五月开心婷婷深爱| 日本久久精品一区二区三区| 亚洲综合国产一区二区三区| 久久国产精品无码网站| 国产精品久久久久久福利| 国产午夜精品福利视频| www成人国产高清内射| 亚洲va欧美va国产综合| 午夜视频免费试看| 丝袜美腿诱惑之亚洲综合网| 亚洲国产在一区二区三区| 久久人人妻人人爽人人爽| 蜜桃av噜噜一区二区三区香| 亚洲av色夜色精品一区| 肥臀浪妇太爽了快点再快点| 日本丰满熟妇videossexhd| 国产乱子伦一区二区三区四区五区| 国产极品粉嫩福利姬萌白酱| 日本一区二区三区有码视频|