檢視及配置交換機管理位址

2021-09-23 15:46:03 字數 4248 閱讀 9949

交換機是目前用於組建區域網的主要裝置,交換機根據mac位址表實現資料幀的**,通過檢視mac位址表更加有利於交換機工作原理的理解;通過檢視cisco裝置鄰居資訊來了解網路拓撲;通過telnet方式遠端訪問、配置交換機,這種方式要求此交換機已配置有ip位址。

檢視交換機mac位址表

檢視cisco裝置鄰居資訊

交換機位址配置及預設閘道器

網路拓撲,如圖-1所示。

圖-1

pc>ipconfig

fastethernet0 connection:(default port)

link-local ipv6 address…: fe80::2d0:97ff:fed2:2db0

//pc1的mac位址 ip address…: 192.168.1.1 //pc1的ip位址

subnet mask…: 255.255.255.0 default

gateway…: 0.0.0.0

pc>ipconfig

fastethernet0 connection:(default port)

link-local ipv6 address…: fe80::2d0:bcff:fe56:ab31

//pc2的mac位址 ip address…: 192.168.1.2 //pc2的ip位址

subnet mask…: 255.255.255.0 default

gateway…: 0.0.0.0 2)pc1通過ping命令測試與pc2的連通性: pc>ping

192.168.1.2

pinging 192.168.1.2 with 32 bytes of data:

reply from 192.168.1.2: bytes=32 time=2ms ttl=128 reply from

192.168.1.2: bytes=32 time=0ms ttl=128 reply from 192.168.1.2: bytes=32 time=3ms ttl=128 reply from 192.168.1.2: bytes=32 time=0ms

ttl=128

switch#show mac-address-table 

mac address table

-------------------------------------------

vlan mac address type ports

---- ----------- -------- -----

1 00d0.97d2.2db0 dynamic fa0/1

1 00d0.bc56.ab31 dynamic fa0/2

router>enable router#configure terminal router(config)#inte***ce

fastethernet 0/0 router(config-if)#ip address 192.168.1.254

255.255.255.0 router(config-if)#no shutdown

switch#show cdp neighbors 

capability codes: r - router, t - trans bridge, b - source route bridge

s - switch, h - host, i - igmp, r - repeater, p - phone

device id local intrfce holdtme capability platform port id

router fas 0/3 179 r c2600 fas 0/0

執行「int vlan1」(或inte***ce vlan1)指令進入交換機的vlan1介面配置,再執行「ip add

192.168.1.10 255.255.255.0」配置ip位址(ip add指令相當於ip address),執行「no shutdown」啟用此介面,如下所示:

switch(config)# int vlan1  	//進入vlan1介面

switch(config-if)# ip add 192.168.1.10 255.255.255.0 //配置ip位址

switch(config-if)# no shutdown //啟用介面

%link-5-changed: inte***ce vlan1, changed state to up

%lineproto-5-updown: line protocol on inte***ce vlan1, changed state to up

switch#configure terminal 

switch(config)#ip default-gateway 192.168.1.254

直接執行「end」指令返回特權模式:

switch(config-if)# end //返回特權模式

switch#

%sys-5-config_i: configured from console by console

switch#show running-config 

building configuration...

current configuration : 1026 bytes

!version 12.1

no service timestamps log datetime msec

no service timestamps debug datetime msec

no service password-encryption

!hostname switch!!

!spanning-tree mode pvst

!inte***ce fastethernet0/1

!inte***ce fastethernet0/2

!inte***ce fastethernet0/3

!inte***ce fastethernet0/4

inte***ce fastethernet0/5

!inte***ce fastethernet0/6

!inte***ce fastethernet0/7

!inte***ce fastethernet0/8

!inte***ce fastethernet0/9

!inte***ce fastethernet0/10

!inte***ce fastethernet0/11

!inte***ce fastethernet0/12

!inte***ce fastethernet0/13

!inte***ce fastethernet0/14

!inte***ce fastethernet0/15

!inte***ce fastethernet0/16

!inte***ce fastethernet0/17

!inte***ce fastethernet0/18

!inte***ce fastethernet0/19

!inte***ce fastethernet0/20

!inte***ce fastethernet0/21

!inte***ce fastethernet0/22

!inte***ce fastethernet0/23

!inte***ce fastethernet0/24

!inte***ce vlan1

ip address 192.168.1.10 255.255.255.0 //ip位址與配置一致

!ip default-gateway 192.168.1.254 //閘道器位址與配置一致!!

!!line con 0

!line vty 0 4

login

line vty 5 15

login!!

end

cisco配置交換機管理位址和預設閘道器

配置交換機遠端管理位址和預設閘道器 拓撲圖如下 1 配置pc0 2 配置sw1交換機 switch config no ip domain lookup 關閉網域名稱解析 switch config line exec timeout 0 0 與交換機保持連線的時延,這裡的設定是與路由器永遠保持連線...

交換機配置snmp及檢視snmp配置資訊

1 檢視配置 1 檢視snmp配置的總的大概情況輸入 display current configuration 2 檢視snmp trap的配置情況輸入 display snmp agent trap all 4 檢視介面的vlan配置 display port vlan 5 檢視交換機lldp是...

交換機的配置與管理

交換機的管理方式分為兩種 帶內管理 帶外管理。通過交換機的 console 埠管理交換機屬於帶外管理,這種管理方式不占用交換機的網路埠,第一次配置交換機必須利用 console 埠進行配置。交換機的命令列操作模式主要包括 使用者模式 exec模式 switch 特權模式 switch 全域性配置模式...