码迷,mamicode.com
首页 > 系统相关 > 详细

linux下查看路由的命令

时间:2020-04-08 10:09:12      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:pts   ati   nat   命令使用   link   via   rip   irb   des   

  • 使用netstat -r命令显示路由表
    [root@centos2 network-scripts]# netstat -r
    Kernel IP routing table
    Destination Gateway Genmask Flags MSS Window irtt Iface
    default gateway 0.0.0.0 UG 0 0 0 ens33
    192.168.58.0 0.0.0.0 255.255.255.0 U 0 0 0 ens33
    192.168.122.0 0.0.0.0 255.255.255.0 U 0 0 0 virbr0

  • 使用route -n命令
    [root@centos2 network-scripts]# route -n
    Kernel IP routing table
    Destination Gateway Genmask Flags Metric Ref Use Iface
    0.0.0.0 192.168.58.254 0.0.0.0 UG 100 0 0 ens33
    192.168.58.0 0.0.0.0 255.255.255.0 U 100 0 0 ens33
    192.168.122.0 0.0.0.0 255.255.255.0 U 0 0 0 virbr0
  • 使用ip route命令
    [root@centos2 network-scripts]# ip route
    default via 192.168.58.254 dev ens33 proto dhcp metric 100
    192.168.58.0/24 dev ens33 proto kernel scope link src 192.168.58.149 metric 100
    192.168.122.0/24 dev virbr0 proto kernel scope link src 192.168.122.1
  • 以上三个命令都可以显示主机的路由表信息。

    在windows中,显示路由route print; netstat -r两个命令使用。

    linux下查看路由的命令

    标签:pts   ati   nat   命令使用   link   via   rip   irb   des   

    原文地址:https://blog.51cto.com/liu008qing/2485546

    (0)
    (0)
       
    举报
    评论 一句话评论(0
    登录后才能评论!
    © 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
    迷上了代码!