zoukankan      html  css  js  c++  java
  • 计算机网络技术-路由-静态路由 学习笔记

    路由-静态路由 学习笔记(需结合PPT课件)

    静态路由

    • 配置命令
      • HW:ip route-static 192.168.1.0 24 g0/0/0 192.168.2.2
      • HW:ip route-static 192.168.1.0 24 192.168.2.2
      • HW 优先级:ip route-static 192.168.1.0 24 g0/0/0 192.168.2.2 9
      • COSCO:ip route 192.168.1.0 255.255.255.0 192.168.2.2
      • COSCO 优先级:ip route 192.168.1.0 255.255.255.0 192.168.2.2 9
    • 黑洞路由
      • null 0 下一跳为null 0直接丢包
      • HW:ip route-static 192.168.0.0 24 null 0
    • 浮动路由
      • ip route-static 192.168.100.0 24 172.16.13.3
      • ip route-static 192.168.100.0 24 172.16.12.2 preference 61
      • 在网段一样的情况下加载最优的路由(优先值、度量值)
      • 做备用的
      • 下一跳的接口down之后才会切换
    • 常用命令
      • HW
        • 查看配置 dis cur
        • 查看特定配置 dis cur |in ip rout
        • 查看接口情况 dis ip int br
        • 查看数据三层路径 tracert 114.114.114.114
      • CISCO
        • 查看配置 sh run
        • 查看特定配置 sh run |in ip rout
        • 查看接口情况 sh ip int br
        • 查看数据三层路径 traceroute 114.114.114.114
  • 相关阅读:
    Docker 安装 MySQL
    Docker安装
    Thymeleaf语法总结
    SpringBoot总结之事务和AOP
    SpringBoot总结之Spring Data Jpa
    SpringBoot总结之属性配置
    Spring总结之SpringMvc下
    Spring总结之SpringMvc上
    Spring总结之事务
    在什么情况下使用@ResponseBody 注解?
  • 原文地址:https://www.cnblogs.com/rgz-blog/p/12638673.html
Copyright © 2011-2022 走看看