華爲經常使用命令

一、在命令行界面上,執行display current-configuration命令,
並拷貝全部顯示信息到TXT文本文件中,從而將配置文件備份到維護終端的硬盤中。

二、備份配置文件到cfcard中
<Quidway> save config.cfg
<Quidway> copy config.cfg backup.cfg

三、tftp
<Quidway> tftp 10.110.24.254 put cfcard:/config.cfg backup.cfg

dir flash: ---------------查看flash文件

display this
reset saved-configuration /重啓後生效;reboot

////////////////////////////////////////////////設置密碼
user-inter console 0
   authentication-mode password
   set authentication password cipher
/////////////////////////////////////////////////設置密碼
//////////////////////////////////////////////設置用戶名和密碼
system-view
user-inter console 0
   authen-mode aaa
aaa
 local-user hw password cipher hw
 local-user hw service-type terminal
///////////////////////////////////////////設置用戶名和密碼
display interface brief


//////////////////////////////////////////////交換機接口配置IP
交換機不能直接在物理接口上配置ip,須要將接口劃入vlan,再在vlan接口配置IP
vlan 10
inter g0/0/0
   port hybid pv vlan 10
   port hybid untag vlan 10
inter vlan 10
   ip add 192.168.x.x

//////////////////////////////////////////////交換機接口配置IP

//////////////////////////////////////////////配置RIP
rip 10
   version 2
   undo summary
   network 192.168.x.x

//////////////////////////////////////////////配置RIP
//////////////////////////////////////////////配置OSPF
router id x.x.x.x
ospf xx(默認1)
   area 0
      network 192.168.x.0 0.0.0.255
       import-route direct(引入外部路由:直連 rip 等)
rip
   import-route ospf cost (引入外部路由:直連 ospf 等)
//////////////////////////////////////////////配置OSPF
//////////////////////////////////////////////配置VLAN
當過來的數據的vlan和個人交換機的pvid的vlan一致時,發送時會將vlan的tag去掉;到達第2個交換機時候加上tag,而後從第2個交換機發出數據時候去掉tag;
修改默認的PVID號:port trunk pvid vlan 10

display vlan(相似cisco的show vlan brief)
將2層接口劃入到vlan
interface GigabitEthernet0/0/2
port link-type access
port default vlan 10
interface GigabitEthernet0/0/24
port link-type trunk
port trunk allow-pass vlan 2 to 4094(配置接口爲trunk時候,默認禁止全部vlan,所以要開啓容許的vlan;cisco默認容許全部的vlan)

////混雜端口hybird
inter g0/0/2
   port link-type hybrid (默認就是這個,能夠不用打)
   port trunk pvid vlan 10
   port hybrid untagged vlan 10 30
inter g0/0/1
   port link-type hybrid
   port hybrid pvid vlan 20
   port hybrid untagged vlan 20 30
inter g0/0/3
   port link-type hybrid
   port hybrid pvid vlan 30
   port hybrid untagged vlan 10 20 30
配置後client1和client2都能和client3通信,可是client1和client2不能通信
理由:收到的vlan和交換機的接口pvid一致後去掉tag(如g0/0/1的vlan爲20,而sw1的高g0/0/1的pvid也是20)
////混雜端口hybird



//////////////////////////////////////////////配置VLAN

/////////////////////////////////////////////單臂路由
wKioL1NbKv2jFf2pAABVyD-qQ9g681.png
ide

AR1:
interface GigabitEthernet0/0/1.10
control-vid 10 dot1q-termination(這句在打上dot1q termination vid 10後默認有)
dot1q termination vid 10
ip address 192.168.10.254 255.255.255.0
arp broadcast enable
interface GigabitEthernet0/0/1.20
dot1q termination vid 20
ip address 192.168.20.254 255.255.255.0
arp broadcast enable
interface GigabitEthernet0/0/1.30
dot1q termination vid 30
ip address 192.168.30.254 255.255.255.0
arp broadcast enable

SW1:
interface GigabitEthernet0/0/1
port link-type trunk
port trunk allow-pass vlan 10 20 30
interface GigabitEthernet0/0/2
port link-type access
port default vlan 10
interface GigabitEthernet0/0/3
port link-type access
port default vlan 20
interface GigabitEthernet0/0/4
port link-type access
port default vlan 30

CLIENT:




client1 client2  client3能互通。。。
/////////////////////////////////////////////單臂路由
/////////////////////////////////////////////啓動SVI接口
SW:
wKiom1NbKvHTYArZAABe-78J0I0245.png
ui

vlan batch 10 20
inter vlan 10
   ip add 192.168.10.254
inter vlan 20
   ip add 192.168.20.254
interface GigabitEthernet0/0/1
port link-type access
port default vlan 10
interface GigabitEthernet0/0/2
port link-type access
port default vlan 10
interface GigabitEthernet0/0/3
port link-type access
port default vlan 20
client 9和7都是vlan10,client8是vlan20,網關分別指向對應的SVI的IP後,能互通
/////////////////////////////////////////////啓動SVI接口









this

相關文章
相關標籤/搜索