2019-04-23 12:56:17 +08:00
|
|
|
|
[#]: collector: (lujun9972)
|
2019-04-28 11:23:25 +08:00
|
|
|
|
[#]: translator: (warmfrog)
|
2019-04-23 12:56:17 +08:00
|
|
|
|
[#]: reviewer: ( )
|
|
|
|
|
[#]: publisher: ( )
|
|
|
|
|
[#]: url: ( )
|
|
|
|
|
[#]: subject: (Four Methods To Check The Default Gateway Or Router IP Address In Linux?)
|
|
|
|
|
[#]: via: (https://www.2daygeek.com/check-find-default-gateway-or-router-ip-address-in-linux/)
|
|
|
|
|
[#]: author: (Magesh Maruthamuthu https://www.2daygeek.com/author/magesh/)
|
|
|
|
|
|
2019-04-28 13:48:15 +08:00
|
|
|
|
在 Linux 中检查默认网关或者路由 IP 地址的四个方法?
|
|
|
|
|
==============================================
|
2019-04-23 12:56:17 +08:00
|
|
|
|
|
2019-04-28 13:48:15 +08:00
|
|
|
|
你应该意识到你的默认网关是你的路由器的 IP 地址。
|
2019-04-23 12:56:17 +08:00
|
|
|
|
|
2019-04-28 13:48:15 +08:00
|
|
|
|
典型地这是在安装过程中由操作系统自动检测的,如果没有,你可能需要改变它。
|
2019-04-23 12:56:17 +08:00
|
|
|
|
|
2019-04-28 13:48:15 +08:00
|
|
|
|
如果你的系统不能 ping 自身,那么很可能是一个网关问题,你必须修复它。
|
2019-04-23 12:56:17 +08:00
|
|
|
|
|
2019-04-28 13:48:15 +08:00
|
|
|
|
在网络中,当你有多个网络适配器或路由器时,这种情况可能会发生。
|
2019-04-23 12:56:17 +08:00
|
|
|
|
|
2019-04-28 13:48:15 +08:00
|
|
|
|
一个网关是一个路由器扮演着一个入口点角色,从一个网络传递网络数据到另一个网络。
|
2019-04-23 12:56:17 +08:00
|
|
|
|
|
2019-04-28 13:48:15 +08:00
|
|
|
|
下面是一些可能帮助你收集到的与该话题相似的一些信息。
|
2019-04-23 12:56:17 +08:00
|
|
|
|
|
|
|
|
|
* **[9 Methods To Check Your Public IP Address In Linux Command Line][1]**
|
|
|
|
|
* **[How To Enable (UP) And Disable (DOWN) A Network Interface Port (NIC) In Linux?][2]**
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-04-28 13:48:15 +08:00
|
|
|
|
这可以通过下面的四个命令完成。
|
2019-04-23 12:56:17 +08:00
|
|
|
|
|
2019-04-28 13:48:15 +08:00
|
|
|
|
* **`route 命令`** route 命令被用来显示和操作 IP 路由表。
|
|
|
|
|
* **`ip 命令:`** IP 命令类似于 ifconfig, 非常熟悉赋值静态 IP 地址,路由 & 默认网关,等等。
|
|
|
|
|
* **`netstat 命令`** netstat (“network statistics”)是一个命令行工具来显示网络连接相关的信息(包括入口和出口的)例如路由表,伪装连接,多播成员和很多网络接口。
|
|
|
|
|
* **`routel 命令`** routel 命令被用来以好看的输出格式列出路由。
|
2019-04-23 12:56:17 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-04-28 13:48:15 +08:00
|
|
|
|
### 1)在 Linux 中如何使用 route 命令检查默认的网关或者路由 IP 地址?
|
2019-04-23 12:56:17 +08:00
|
|
|
|
|
2019-04-28 13:48:15 +08:00
|
|
|
|
route 命令被用来显示和操作 IP 路由表。
|
2019-04-23 12:56:17 +08:00
|
|
|
|
|
2019-04-28 13:48:15 +08:00
|
|
|
|
它主要用于通过一个已经配置的接口给特定的主机或者网络设置静态的路由。
|
2019-04-23 12:56:17 +08:00
|
|
|
|
|
2019-04-28 13:48:15 +08:00
|
|
|
|
当 add 或者 del 选项被使用时,route 修改路由表。没有这些选项,route 显示路由表的当前内容。
|
2019-04-23 12:56:17 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
# route
|
|
|
|
|
or
|
|
|
|
|
# route -n
|
|
|
|
|
|
|
|
|
|
Kernel IP routing table
|
|
|
|
|
Destination Gateway Genmask Flags Metric Ref Use Iface
|
|
|
|
|
default www.routerlogin 0.0.0.0 UG 600 0 0 wlp8s0
|
|
|
|
|
192.168.1.0 0.0.0.0 255.255.255.0 U 600 0 0 wlp8s0
|
|
|
|
|
```
|
|
|
|
|
|
2019-04-28 13:48:15 +08:00
|
|
|
|
### 2)如何在 Linux 中使用 ip 命令检查默认网关或者路由 IP 地址?
|
2019-04-23 12:56:17 +08:00
|
|
|
|
|
2019-04-28 13:48:15 +08:00
|
|
|
|
**[IP 命令][3]** 相似于 ifconfig,非常熟悉配置静态 IP 地址,路由 & 默认网关,等等。
|
2019-04-23 12:56:17 +08:00
|
|
|
|
|
2019-04-28 13:48:15 +08:00
|
|
|
|
ifconfig 命令因为多年没有维持被遗弃了,即使它仍然在大多数 Linux 分发版上可获得。
|
2019-04-23 12:56:17 +08:00
|
|
|
|
|
2019-04-28 13:48:15 +08:00
|
|
|
|
ifconfig 命令已经被 IP 命令替代了,IP 命令是非常强大的,只要一个命令就能执行几个网络管理任务。
|
2019-04-23 12:56:17 +08:00
|
|
|
|
|
2019-04-28 13:48:15 +08:00
|
|
|
|
IP 命令工具附带在 iproute2 包中。默认 iproute2 预安装在主要的 Linux 分发版中。
|
2019-04-23 12:56:17 +08:00
|
|
|
|
|
2019-04-28 13:48:15 +08:00
|
|
|
|
如果没有,你可以在你的终端中在包管理器的帮助下通过输入 iproute2 并安装它。
|
2019-04-23 12:56:17 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
# ip r
|
|
|
|
|
or
|
|
|
|
|
# ip route
|
|
|
|
|
or
|
|
|
|
|
# ip route show
|
|
|
|
|
|
|
|
|
|
default via 192.168.1.1 dev wlp8s0 proto dhcp metric 600
|
|
|
|
|
192.168.1.0/24 dev wlp8s0 proto kernel scope link src 192.168.1.6 metric 600
|
|
|
|
|
```
|
|
|
|
|
|
2019-04-28 13:48:15 +08:00
|
|
|
|
### 3)如何在 Linux 中使用 netstat 命令检查默认网关或者路由 IP 地址?
|
2019-04-23 12:56:17 +08:00
|
|
|
|
|
2019-04-28 13:48:15 +08:00
|
|
|
|
netstat 代表 Network Statistics,是一个命令行工具来显示网络连接相关的信息(包括入口和出口的)例如路由表,伪装连接,多播成员和很多网络接口。
|
2019-04-23 12:56:17 +08:00
|
|
|
|
|
2019-04-28 13:48:15 +08:00
|
|
|
|
它列出所有的 tcp, udp 套接字连接和 unix 套接字连接。
|
2019-04-23 12:56:17 +08:00
|
|
|
|
|
2019-04-28 13:48:15 +08:00
|
|
|
|
它在网络中被用来诊断网络问题并判断网络中的交通总量来作为性能测量指标。
|
2019-04-23 12:56:17 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
# netstat -r
|
|
|
|
|
|
|
|
|
|
Kernel IP routing table
|
|
|
|
|
Destination Gateway Genmask Flags MSS Window irtt Iface
|
|
|
|
|
default www.routerlogin 0.0.0.0 UG 0 0 0 wlp8s0
|
|
|
|
|
192.168.1.0 0.0.0.0 255.255.255.0 U 0 0 0 wlp8s0
|
|
|
|
|
```
|
|
|
|
|
|
2019-04-28 13:48:15 +08:00
|
|
|
|
### 4)如何在 Linux 中使用 routel 命令检查默认网关或者路由 IP 地址?
|
2019-04-23 12:56:17 +08:00
|
|
|
|
|
2019-04-28 13:48:15 +08:00
|
|
|
|
它用来以好看的输出格式列出路由信息。这些程序是一系列你可以用来替代 iproute2 的帮助脚本。
|
2019-04-23 12:56:17 +08:00
|
|
|
|
|
2019-04-28 13:48:15 +08:00
|
|
|
|
routel 脚本以一种被认为更容易解释并且等价于 route 输出列表的格式来输出路由信息。
|
2019-04-23 12:56:17 +08:00
|
|
|
|
|
2019-04-28 13:48:15 +08:00
|
|
|
|
如果 routef 脚本不加任何参数,将仅仅简单的将路由表清空。小心!这意味着删除所有的路由,让你的网络不再可用。
|
2019-04-23 12:56:17 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
# routel
|
|
|
|
|
target gateway source proto scope dev tbl
|
|
|
|
|
default 192.168.1.1 dhcp wlp8s0
|
|
|
|
|
192.168.1.0/ 24 192.168.1.6 kernel link wlp8s0
|
|
|
|
|
127.0.0.0 broadcast 127.0.0.1 kernel link lo local
|
|
|
|
|
127.0.0.0/ 8 local 127.0.0.1 kernel host lo local
|
|
|
|
|
127.0.0.1 local 127.0.0.1 kernel host lo local
|
|
|
|
|
127.255.255.255 broadcast 127.0.0.1 kernel link lo local
|
|
|
|
|
192.168.1.0 broadcast 192.168.1.6 kernel link wlp8s0 local
|
|
|
|
|
192.168.1.6 local 192.168.1.6 kernel host wlp8s0 local
|
|
|
|
|
192.168.1.255 broadcast 192.168.1.6 kernel link wlp8s0 local
|
|
|
|
|
::1 kernel lo
|
|
|
|
|
fe80::/ 64 kernel wlp8s0
|
|
|
|
|
::1 local kernel lo local
|
|
|
|
|
fe80::ad00:2f7e:d882:5add local kernel wlp8s0 local
|
|
|
|
|
ff00::/ 8 wlp8s0 local
|
|
|
|
|
```
|
|
|
|
|
|
2019-04-28 13:48:15 +08:00
|
|
|
|
如果你只想打印默认的网关那么使用下面的格式。
|
|
|
|
|
|
2019-04-23 12:56:17 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
# routel | grep default
|
|
|
|
|
default 192.168.1.1 dhcp wlp8s0
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
via: https://www.2daygeek.com/check-find-default-gateway-or-router-ip-address-in-linux/
|
|
|
|
|
|
|
|
|
|
作者:[Magesh Maruthamuthu][a]
|
|
|
|
|
选题:[lujun9972][b]
|
2019-04-28 13:48:15 +08:00
|
|
|
|
译者:[warmfrog](https://github.com/warmfrog)
|
2019-04-23 12:56:17 +08:00
|
|
|
|
校对:[校对者ID](https://github.com/校对者ID)
|
|
|
|
|
|
|
|
|
|
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出
|
|
|
|
|
|
|
|
|
|
[a]: https://www.2daygeek.com/author/magesh/
|
|
|
|
|
[b]: https://github.com/lujun9972
|
|
|
|
|
[1]: https://www.2daygeek.com/check-find-server-public-ip-address-linux/
|
|
|
|
|
[2]: https://www.2daygeek.com/enable-disable-up-down-nic-network-interface-port-linux-using-ifconfig-ifdown-ifup-ip-nmcli-nmtui/
|
|
|
|
|
[3]: https://www.2daygeek.com/ip-command-configure-network-interface-usage-linux/
|