網工路由交換相關配置
思科2950交換機相關配置
基本操作
2950(config)#int vlan1
2950(config-if)#ip address 192.168.1.100 255.255.255.0 (VLAN1里面設置IP地址)
2950(config)#ip default-gateway 192.168.1.1 (設置默認網關)
2950(config)#ip name-server 192.168.1.1 (設置域名服務器)
2950(config)#ip domain-name wqs.com (設置域名)
端口配置
2950(config)#int f0/1 (進入接口)
2950(config-if)#speed 100 (設置該接口速率為100Mb/s)
2950(config-if)#duplex ?
auto Enable AUTO duplex configuration
full Force full duplex operation
half Force half-duplex operation2950(config-if)#description to_router1
2950(config-if)#description to_router1 (設置端口描述)
2950#show interfaces fastethernet1 [status] (查看端口配置結果和狀態)
MAC地址表相關命令
2950(config)#mac-address-table aging-time 100 (設置超時時間為100S)
2950(config)#mac-address-table permanent 000.0c01.bbcc f0/3 (加入永久地址)
2950(config)#mac-address-table restricted static 0000.0c02.bbcc f0/6 f0/7 (加入靜態地址)
2950#show mac-address-table (查看整個MAC地址表)
2950#clear mac-address-table restricted static (清除限制性MAC址表)
VTP的配置
2950#vlan database (進入VLAN配置模式)
2950(vlan)#vtp ? (查看VTP的子命令)
domain Set the name of the VTP administrative domain.
client Set the device to client mode.
server Set the device to server mode.
transparent Set the device to transparent mode.
password Set the password for the VTP administrative domain.
2950(vlan)#vtp domain server (設置本交換機為SEVER模式)
2950(vlan)#vtp domain wqs (設置域名)
2950(vlan)#vtp pruning (啟動修剪模式)
2950#show vtp status (查看VTP設置信息)
配置VLAN TRUNK端口
2950(config)#int f0/11 (進入F端口)
2950(config-if)#switchport mode trunk (設置該端口為TRUNK模式)
2950(config-if)#switchport trunk encapsulation {dot1q | isl | negotiate }(設置TRUNK封裝)
創建VLAN
2950#vlan database (進入VLAN配置模式)
2950(vlan)#vlan 2 (創建VLAN 2)
VLAN 2 added:
Name:VLAN0002 (系統默認名)
2950(vlan)#vlan 3 name wg_bisheng (創建VLAN 3,名為網工必勝)
VLAN 3 added:
Name:wg_bisheng
2950(config)#int f0/9 (進入接口配置模式)
2950(config-if)#switchport mode access (設置該接口為ACCESS模式)
2950(config-if)#switchport access vlan 2 (把端口9分配給VLAN2)
2950(config-if)#int f0/8
2950(config-if)#switchport mode access
2950(config-if)#switchport access vlan 3
2950(config-if)#
生成樹協議的配置
生成樹負載均衡實現方法(感謝黑客天使提醒)
1 使用STP端口權值實現。
2 使用STP路徑值實現
2950(config)#int f0/11
2950(config-if)#spanning-tree vlan 2 port-priority 10 (將VLAN2的端口權值設為10)
2950(config-if)#spanning-tree vlan 2 cost 30 (設置VLAN2生成樹路徑值為30)
路由器的一些設置
|
|