Centos/Linux下如何查看网关地址/Gateway地址

简介:

Centos/Linux下如何查看网关地址/Gateway地址? Linux下查看网关的命令还是很多的,不过如果IP是DHCP获取,那么有些命令是不适用的,当然也有通用的查询网关命令.



1.ifconfig -a 和 cat /etc/resolv.conf  (主要查看ip/netmask和dns)


2.netstat -rn


3.cat /etc/sysconfig/network


4.cat /etc/sysconfig/network-scripts/ifcfg-eth0


5.traceroute 第一行就是自己的网关


6.ip route show


7.route -n


以上几个是比较常用的查询网关的命令。下面是范例:


[root@localhost]# netstat -rn

Kernel IP routing table

Destination     Gateway         Genmask         Flags   MSS Window  irtt Iface

184.82.152.96   0.0.0.0         255.255.255.248 U         0 0          0 eth0

169.254.0.0     0.0.0.0         255.255.0.0     U         0 0          0 eth0

0.0.0.0         184.82.152.97   0.0.0.0         UG        0 0          0 eth0


 

[root@localhost]# cat /etc/sysconfig/network-scripts/ifcfg-eth0

# Intel Corporation 82567V-2 Gigabit Network Connection

DEVICE=eth0

BOOTPROTO=none

HWADDR=00:1c:c0:f8:a1:ac

ONBOOT=yes

NETMASK=255.255.255.248

IPADDR=184.82.152.98

GATEWAY=184.82.152.97

TYPE=Ethernet


 

[root@localhost]# ip route show

184.82.152.96/29 dev eth0  proto kernel  scope link  src 184.82.152.98 

169.254.0.0/16 dev eth0  scope link 

default via 184.82.152.97 dev eth0



[root@localhost]# route -n

Kernel IP routing table

Destination     Gateway         Genmask         Flags Metric Ref    Use Iface

184.82.152.96   0.0.0.0         255.255.255.248 U     0      0        0 eth0

169.254.0.0     0.0.0.0         255.255.0.0     U     0      0        0 eth0

0.0.0.0         184.82.152.97   0.0.0.0         UG    0      0        0 eth0


 


[root@localhost]#  ifconfig -a

eth0      Link encap:Ethernet  HWaddr 00:1C:C0:F8:A1:AC  

          inet addr:184.82.152.98  Bcast:184.82.152.103  Mask:255.255.255.248


8、开启/关闭IPv6功能:

[root@ ~]# ifconfig

eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500

        inet 192.168.112.141  netmask 255.255.255.0  broadcast 192.168.112.255

        inet6 fe80::bf36:72fd:ae66:3183  prefixlen 64  scopeid 0x20<link>

        ether 00:0c:29:0b:28:95  txqueuelen 1000  (Ethernet)

        RX packets 18149  bytes 1189590 (1.1 MiB)

        RX errors 0  dropped 0  overruns 0  frame 0

        TX packets 2382  bytes 219015 (213.8 KiB)

        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0


lo: flags=73<UP,LOOPBACK,RUNNING>  mtu 65536

        inet 127.0.0.1  netmask 255.0.0.0

        inet6 ::1  prefixlen 128  scopeid 0x10<host>

        loop  txqueuelen 1  (Local Loopback)

        RX packets 68  bytes 5908 (5.7 KiB)

        RX errors 0  dropped 0  overruns 0  frame 0

        TX packets 68  bytes 5908 (5.7 KiB)

        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0


[root@ ~]#


[root@ ~]#echo 1 >/proc/sys/net/ipv6/conf/all/disable_ipv6 #"1"表示关闭,"0"表示开启

[root@ ~]# ifconfig

eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500

        inet 192.168.112.141  netmask 255.255.255.0  broadcast 192.168.112.255

        ether 00:0c:29:0b:28:95  txqueuelen 1000  (Ethernet)

        RX packets 18316  bytes 1203647 (1.1 MiB)

        RX errors 0  dropped 0  overruns 0  frame 0

        TX packets 2474  bytes 229999 (224.6 KiB)

        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0


lo: flags=73<UP,LOOPBACK,RUNNING>  mtu 65536

        inet 127.0.0.1  netmask 255.0.0.0

        loop  txqueuelen 1  (Local Loopback)

        RX packets 68  bytes 5908 (5.7 KiB)

        RX errors 0  dropped 0  overruns 0  frame 0

        TX packets 68  bytes 5908 (5.7 KiB)

        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0


[root@ ~]# 

echo 1 >/proc/sys/net/ipv6/conf/all/disable_ipv6 #"1"表示关闭,"0"表示开启 该方法是临时生效,一旦机器重启就失效,如果要使系统永久生效,则需要修改grub文件,

具体操作如下:

wKiom1k4yW-xOhweAABgHL9HqHw253.png

然后执行命令"grub2-mkconfig  -o /boot/grub2/grub.cfg",重启系统,再验证ipv6模块是否启用


wKioL1k4yhuz3hh-AABbFJjtBNE909.png

[root@server02 ~]# lsmod|grep ipv6

[root@server02 ~]# 

[root@server02 ~]# ifconfig

eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500

        inet 192.168.112.141  netmask 255.255.255.0  broadcast 192.168.112.255

        ether 00:0c:29:0b:28:95  txqueuelen 1000  (Ethernet)

        RX packets 409  bytes 40194 (39.2 KiB)

        RX errors 0  dropped 0  overruns 0  frame 0

        TX packets 299  bytes 41149 (40.1 KiB)

        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0


lo: flags=73<UP,LOOPBACK,RUNNING>  mtu 65536

        inet 127.0.0.1  netmask 255.0.0.0

        loop  txqueuelen 1  (Local Loopback)

        RX packets 4  bytes 340 (340.0 B)

        RX errors 0  dropped 0  overruns 0  frame 0

        TX packets 4  bytes 340 (340.0 B)

        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0


[root@server02 ~]# 

通过以上操作即达到永久禁止ipv6模块使用。





      本文转自027ryan  51CTO博客,原文链接:http://blog.51cto.com/ucode/1893181,如需转载请自行联系原作者






相关文章
|
3月前
|
Linux 网络安全 Python
linux centos上安装python3.11.x详细完整教程
这篇文章提供了在CentOS系统上安装Python 3.11.x版本的详细步骤,包括下载、解压、安装依赖、编译配置、解决常见错误以及版本验证。
1443 1
linux centos上安装python3.11.x详细完整教程
|
1月前
|
负载均衡 Java 应用服务中间件
Gateway服务网关
Gateway服务网关
52 1
Gateway服务网关
|
2月前
|
Web App开发 搜索推荐 Unix
Linux系统之MobaXterm远程连接centos的GNOME桌面环境
【10月更文挑战第21天】Linux系统之MobaXterm远程连接centos的GNOME桌面环境
362 4
Linux系统之MobaXterm远程连接centos的GNOME桌面环境
|
2月前
|
Linux 网络安全 数据安全/隐私保护
Linux系统之Centos7安装cockpit图形管理界面
【10月更文挑战第12天】Linux系统之Centos7安装cockpit图形管理界面
101 1
Linux系统之Centos7安装cockpit图形管理界面
|
2月前
|
Web App开发 网络协议 Linux
linux命令总结(centos):shell常用命令汇总,平时用不到,用到就懵逼忘了,于是专门写了这篇论文,【便持续更新】
这篇文章是关于Linux命令的总结,涵盖了从基础操作到网络配置等多个方面的命令及其使用方法。
77 1
linux命令总结(centos):shell常用命令汇总,平时用不到,用到就懵逼忘了,于是专门写了这篇论文,【便持续更新】
|
18天前
|
负载均衡 Java API
项目中用的网关Gateway及SpringCloud
Spring Cloud Gateway 是一个功能强大、灵活易用的API网关解决方案。通过配置路由、过滤器、熔断器和限流等功能,可以有效地管理和保护微服务。本文详细介绍了Spring Cloud Gateway的基本概念、配置方法和实际应用,希望能帮助开发者更好地理解和使用这一工具。通过合理使用Spring Cloud Gateway,可以显著提升微服务架构的健壮性和可维护性。
24 0
|
2月前
|
Linux Docker 容器
Centos安装docker(linux安装docker)——超详细小白可操作手把手教程,包好用!!!
本篇博客重在讲解Centos安装docker,经博主多次在不同服务器上测试,极其的稳定,尤其是阿里的服务器,一路复制命令畅通无阻。
1641 4
Centos安装docker(linux安装docker)——超详细小白可操作手把手教程,包好用!!!
|
2月前
|
网络协议 Linux 开发工具
linux系统配置固定地址
linux系统配置固定地址
|
3月前
|
负载均衡 Java 网络架构
实现微服务网关:Zuul与Spring Cloud Gateway的比较分析
实现微服务网关:Zuul与Spring Cloud Gateway的比较分析
148 5
|
2月前
|
存储 网络协议 Linux
AWS实操-EC2-创建购买linux(centos)EC2服务器
AWS实操-EC2-创建购买linux(centos)EC2服务器