用安装镜像进入rescue模式 chroot /mnt/sysimage/ rescue模式不会自动配置网络,需要手动配置。使用ip link命令。 ip link set dev xxxx up ip addr add xx.xx.xx.xx/24 dev xxxx ip route add de ...
分类:
其他好文 时间:
2020-08-15 22:33:45
阅读次数:
124
出现这个问题,控制台会报[NavigationDuplicated {_name: "NavigationDuplicated", name: "NavigationDuplicated"}]。其原因在于Vue-router在3.1之后把$router.push()方法改为了Promise。所以假如... ...
分类:
其他好文 时间:
2020-08-12 15:52:30
阅读次数:
52
一、准备1、一台可以访问互联网的云服务器,已经安装了服务商提供的Centos操作系统。2、有控制台权限,可以访问控制台(或者叫VNC)二、操作1、查询云服务器的信息ifconfig//获取IP和子网掩码route-n//获取网关cat/etc/resolv.conf//获取DNS,或者用其他公共DNS服务器2、编辑grub配置文件,增加以下启动项menuentry‘NetInstall‘{setr
分类:
其他好文 时间:
2020-08-09 11:52:53
阅读次数:
86
HUAWEI--filter-policy 路由过滤, 相当于cisco中的distribute-list 其原理都是一样的,和ACL或者是prefix-list相组合,其控制权在ACL/prefix-list 不管是本地运行的协议,还是重分布的协议,都可以使用, 但是要记住一条,只针对路由条目,而 ...
分类:
其他好文 时间:
2020-08-08 22:33:57
阅读次数:
79
一.OSPF配置1.在R1,R2,R3上配置接口ip<r1>system-view[r1]interfaceGigabitEthernet0/0/0[r1-GigabitEthernet0/0/0]ipaddress10.1.1.124<r2>system-view[r2]interfaceGigabitEthernet0/0/0[r2-GigabitEthernet0/0
分类:
其他好文 时间:
2020-08-05 21:01:23
阅读次数:
95
There are n cities connected by m flights. Each flight starts from city u and arrives at v with a price w. Now given all the cities and flights, toget ...
分类:
其他好文 时间:
2020-08-05 10:29:42
阅读次数:
73
一.路由分类直连路由静态路由(基本静态路由,等价静态路由,活动静态路由,缺省静态路由)动态路由(RIP,OSPF,ISIS,BGP)二.直连路由直连路由是路由器的直连网段生成的。当路由器的接口配置了IP地址,并且接口处于开启状态时,路由器就会生成一条接口IP对应网段的直连路由。1.配置直连路由2.在R1上配置接口IP[r1]interfaceGigabitEthernet0/0/0[r1-Giga
分类:
其他好文 时间:
2020-08-04 18:22:25
阅读次数:
241
https://blog.51cto.com/sweetpotato/1410762 1、配置步骤 1、配置loopback接口地址: //用于产生路由器的Router ID Router(config)#interface loopback 0 Router(config-if)#ip addre ...
分类:
其他好文 时间:
2020-07-31 16:35:19
阅读次数:
105
1、启动设备,设置PC1和PC2的IP地址、子网掩码和网关 2、配置SW1信息: <Huawei>undo terminal monitor 关闭弹窗 <Huawei>system-view 进入系统试图 [Huawei]user-interface console 0 [Huawei-ui-con ...
分类:
其他好文 时间:
2020-07-30 21:44:55
阅读次数:
88
Flask简单使用 1、定义路由 @app.route('/')是装饰器,定义如下: app.route(rule, options) rule参数:是绑定URL与函数。 options参数:是可选参数。 2、run() 函数来让应用运行在本地服务器上。定义如下 : app.run(host, po ...
分类:
其他好文 时间:
2020-07-29 21:55:38
阅读次数:
87