华为路由 VRP

[]:interface GigabitEthernet 0/0/0
[0/0/0]:ip address 192.168.1.254  255.255.255.0
或者
[0/0/0]:ip add 192.168.1.254 24
[0/0/0]:display current-configuraiton
[0/0/0]:display this
[0/0/0]:undo ip address【如果ip配错的话,undo可以撤销】
[0/0/0]:int g 0/0/1
[0/0/1]:ip add 192.168.23.2【路由的另一个接口】
R3:
[R3]:int g 0/0/0
[R3-GigabitEthernet0/0/0]:ip add 192.168.23.3 24
[R3]:ping 192.168.23.2 【Ping通,OK】
开通R3的telnet,使得可以远程登到R3上
[R3]:user-interface vty 0 4
[R3-ui-vty0-4]:authentication-mode password
Huawei123
<R2>:telnet 192.168.23.3

cli的配置是保存在内存中的=》save=>启动配置=>保存到flash中:vrpcfg.zip
清空配置:

删除配置
<R2>:reset saved-configuration
备份:
<R2>copy flash:/vrpcfg.zip flash:/vrpcfg.bak
查看某个接口的配置:
:dis cu int g 0/0/1

PC 可以ping通192.168.1.254[接口1],192.168.23.2可以ping通192.168.23.3,但是192.168.1.254ping不通192.168.23.3

查看路由表:
display ip routing-table
优先级:数字越小,优先级越高

直连路由:路由器本地接口所在网段
静态路由:手工配置的路由条目
动态路由:路由器之间动态学习到的路由

你可能感兴趣的:(huawei)