1. 程式人生 > >【華為網絡設備】基本操作命令

【華為網絡設備】基本操作命令

華為路由器 配置命令 d

1、基本查看命令

disp int g0/0/0 #查看G0/0/0網口信息

disp ip routing-table #查看路由表

disp cu #查看當前配置

disp saved-configuration #查看已保存配置

dir flash #查看flash上的文件目錄


2、路由器作為FTP Server

system-view #進入系統視圖

ftp server enable #ftp功能打開

aaa #進入aaa配置模式

local-user AR password cipher huawei #設置加密密碼huawei

local-user AR ftp-directory flash: #FTP文件存放在flash:根目錄

local-user AR service-type ftp #啟動ftp模式

local-user AR privilege level 15 #操作等級設置為15


3、在路由器上設置靜態路由器

sys #進入系統視圖

[RTA]ip route-static 0.0.0.0 0.0.0.0 1.1.4.2 #在RTA上配置IPV4缺省路由器

[RTB]ip route-static 1.1.1.0 255.255.255.0 1.1.4.1 #在RTB上配置IPV4靜態路由器

[RTB]ip route-static 1.1.3.0 255.255.255.0 1.1.4.6 #在RTB上配置IPV4靜態路由器

[RTC]ip route-static 0.0.0.0 0.0.0.0 1.1.4.5 在RTC上配置IPV4缺省路由器


4、RIP基本配置

rip #進入rip配置

version 2 #選擇RIP版本2

network 10.0.0.0 #宣告10網段

rip metricin 2 #度量值加2

undo summary #關閉匯總

summary always #在水平分割、毒性轉發時進行匯總


5、OSPF配置

ospf 1 router-id 1.1.1.1 #設置ospf進程ID為1,路由器ID為1.1.1.1

area 0 #設置為區域0中

network 192.168.1.0 0.0.0.255 #宣告192.168.1.0字段

disp ospf peer #查看鄰居相關屬性

ospf cost 20 #OSPF開銷20

bandwidth-reference 10000 #調整帶寬參考值,從而改變接口開銷,單位Mbit/s

ospf dr-priority 100 #配置接口的OSPF優先級

reset ospf process #清楚OSPF進程

ospf authentication-mode md5 1 huawei #ospf 1使用md5加密,密碼為huawei

terminal debugging #進入debug

debugging ospf packet #置頂調試OSPF報文

silent-interface LoopBack 1 #被動接口

interface s1/0/0

ospf timer hello 20 #修改hello計時器20

ospf timer dead 90 #修改dead計時器90


6、DHCP接口地址池配置

dhcp enable #dhcp功能打開

int g0/0/0 #進入g0/0/0端口

dhcp select interface #使用dhcp分配ip

dhcp server dns-list 10.1.1.2 #dhcp在列表10.1.1.2選擇

dhcp server excluded-ip-address 10.1.1.2 #dhcp排查10.1.1.2

dhcp server lease day 3 #租期3天

disp ip pool #查看ip池

ip pool pool2 #設置一個ip池名為pool2

netmask 1.1.1.0 mask 24 #宣告1.1.1.0

gateway-list 1.1.1.1 #指定網關1.1.1.1

lease day 10 #租期10天

quit #退出上一級

dhcp select global #設置為全球dhcp




【華為網絡設備】基本操作命令