您当前的位置:首页 > 电脑百科 > 网络技术 > 网络技术

RHEL7网络管理

时间:2020-06-06 15:10:26  来源:  作者:

ping检查网络连通性

ping 常常用来测试与目的主机的连通性。

可以ping通

[root@chao ~]# ping 172.16.1.254
PING 172.16.1.254 (172.16.1.254) 56(84) bytes of data.
64 bytes from 172.16.1.254: icmp_seq=1 ttl=128 time=0.529 ms
64 bytes from 172.16.1.254: icmp_seq=2 ttl=128 time=0.297 ms
64 bytes from 172.16.1.254: icmp_seq=3 ttl=128 time=0.135 ms
64 bytes from 172.16.1.254: icmp_seq=4 ttl=128 time=0.245 ms
64 bytes from 172.16.1.254: icmp_seq=5 ttl=128 time=0.214 ms
^C
--- 172.16.1.254 ping statistics ---
5 packets transmitted, 5 received, 0% packet loss, time 4001ms
rtt min/avg/max/mdev = 0.135/0.284/0.529/0.133 ms
[root@chao ~]# 

不可以ping通

[root@chao ~]# ping 172.16.1.250
PING 172.16.1.250 (172.16.1.250) 56(84) bytes of data.
From 172.16.1.16 icmp_seq=1 Destination Host Unreachable
From 172.16.1.16 icmp_seq=2 Destination Host Unreachable
From 172.16.1.16 icmp_seq=3 Destination Host Unreachable
From 172.16.1.16 icmp_seq=4 Destination Host Unreachable
From 172.16.1.16 icmp_seq=5 Destination Host Unreachable
From 172.16.1.16 icmp_seq=6 Destination Host Unreachable
From 172.16.1.16 icmp_seq=7 Destination Host Unreachable
From 172.16.1.16 icmp_seq=8 Destination Host Unreachable
^C
--- 172.16.1.250 ping statistics ---
9 packets transmitted, 0 received, +8 errors, 100% packet loss, time 8003ms
pipe 4

配置网络

设置ip

[root@chao ~]# ifconfig ens33:1 172.16.1.114 netmask 255.255.255.0 up

更改mac地址

[root@chao ~]# ifconfig ens33:1 hw ether 00:0c:29:0b:07:77

修改路由表

显示路由表

[root@chao ~]# route -n
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
0.0.0.0         172.16.1.254    0.0.0.0         UG    100    0        0 ens33
172.16.1.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

添加路由

[root@chao ~]# route add -net 172.16.2.0 netmask 255.255.255.0 gw 172.16.1.254

删除路由

[root@chao ~]# route del -net 172.16.2.0 netmask 255.255.255.0 

查看网络状态

查看所有端口

[root@chao ~]# netstat -a|head -4
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State      
tcp        0      0 0.0.0.0:sunrpc          0.0.0.0:*               LISTEN     
tcp        0      0 chao:domain             0.0.0.0:*               LISTEN     

查看tcp端口

[root@chao ~]# netstat -at
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State      
tcp        0      0 0.0.0.0:sunrpc          0.0.0.0:*               LISTEN     
tcp        0      0 chao:domain             0.0.0.0:*               LISTEN     
tcp        0      0 0.0.0.0:ssh             0.0.0.0:*               LISTEN     
tcp        0      0 localhos:x11-ssh-offset 0.0.0.0:*               LISTEN     
tcp        0     36 chao:ssh                172.16.1.100:57418      ESTABLISHED
tcp6       0      0 [::]:sunrpc             [::]:*                  LISTEN     
tcp6       0      0 [::]:ssh                [::]:*                  LISTEN     
tcp6       0      0 localhos:x11-ssh-offset [::]:*                  LISTEN

查看udp端口

[root@chao ~]# netstat -au
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State      
udp        0      0 chao:domain             0.0.0.0:*                          
udp        0      0 0.0.0.0:bootps          0.0.0.0:*                          
udp        0      0 localhost:323           0.0.0.0:*                          
udp6       0      0 localhost:323           [::]:*             

traceroute查看路由信息

[root@chao ~]# traceroute to www.baidu.com (103.235.46.39), 30 hops max, 60 byte packets
 1  gateway (172.16.1.254)  0.132 ms  0.062 ms  0.086 ms
 2  * * *
 3  * * *
 4  * * *
 5  * * *
 6  * * *
 7  * * *
 8  * * *
 9  * * *
10  * * *
11  * * *
12  * * *
13  * * *
14  * * *
15  * * *
16  * * *
17  * * *
18  * * *
19  * * *
20  * * *
21  * * *
22  * * *
23  * * *
24  * * *
25  * * *
26  * * *

telnet测试远程端口

[root@chao ~]# telnet 172.16.1.16 80

wget下载网络文件

[root@chao ~]# wget https://mirror.bit.edu.cn/Apache/httpd/httpd-2.4.43.tar.gz

https://www.linuxprobe.com/rhel-network-mgmt.html



Tags:RHEL7   点击:()  评论:()
声明:本站部分内容及图片来自互联网,转载是出于传递更多信息之目的,内容观点仅代表作者本人,如有任何标注错误或版权侵犯请与我们联系(Email:2595517585@qq.com),我们将及时更正、删除,谢谢。
▌相关推荐
Tomcat是Apache 软件基金会(Apache Software Foundation)的Jakarta 项目中的一个核心项目,由Apache、Sun 和其他一些公司及个人共同开发而成。由于有了Sun 的参与和支持,因为Tom...【详细内容】
2020-07-20  Tags: RHEL7  点击:(59)  评论:(0)  加入收藏
ping检查网络连通性ping 常常用来测试与目的主机的连通性。可以ping通[root@chao ~]# ping 172.16.1.254PING 172.16.1.254 (172.16.1.254) 56(84) bytes of data.64 bytes...【详细内容】
2020-06-06  Tags: RHEL7  点击:(71)  评论:(0)  加入收藏
1. 前言本文主要讲解红帽RHEL8和RHEL7有什么区别?我们将会从多层次多方向解释RHEL8和RHEL7有什么不同。对于CentOS8与CentOS7的不同点有哪些这类问题,本文同样也适用。很多人...【详细内容】
2019-12-11  Tags: RHEL7  点击:(143)  评论:(0)  加入收藏
▌简易百科推荐
写一个shell获取本机ip地址、网关地址以及dns信息。经常会遇到取本机ip、网关、dns地址,windows一个命令ipconfig /all全部获取到,但linux系统却并非如此。linux系统都自带ifc...【详细内容】
2021-12-27  K佬食古    Tags:shell   点击:(2)  评论:(0)  加入收藏
步骤1、配置 /etc/sysconfig/network-scripts/ifcfg-eth0 里的文件。it动力的CentOS下的ifcfg-eth0的配置详情:[root@localhost ~]# vim /etc/sysconfig/network-scripts/ifc...【详细内容】
2021-12-24  忆梦如风    Tags:网卡   点击:(10)  评论:(0)  加入收藏
1、查找当前目录下所有以.tar结尾的文件然后移动到指定目录find . -name “*.tar” -execmv {}./backup/ ;注解:find –name 主要用于查找某个文件名字,-exec 、xargs可...【详细内容】
2021-12-17  郭主任    Tags:运维   点击:(20)  评论:(0)  加入收藏
对于经常上网的朋友来说,除了手机购物上网,pc端玩网页游戏还是很多小伙伴首选的,但是有时候明明宽带链接上了,打开浏览器却出现上不了网的现象,下面小编要来跟大家说说电脑有网络...【详细内容】
2021-12-16  小白系统    Tags:网页无法打开   点击:(28)  评论:(0)  加入收藏
在访问像github、gitlab这样的外国网站时,很有可能会出现页面加载不出来或找不到页面的错误。这时候有的朋友就会以为是网络的问题,于是把Wifi断掉连上自己手机的热点,结果却还...【详细内容】
2021-12-15  启施技术IT狼叔    Tags:外网   点击:(16)  评论:(0)  加入收藏
网络地址来源:获取公网IP地址 https://ipip.yy.com/get_ip_info.phphttp://pv.sohu.com/cityjson?ie=utf-8http://www.ip168.com/json.do?view=myipaddress...【详细内容】
2021-12-15  韦廷华12    Tags:外网ip   点击:(15)  评论:(0)  加入收藏
准备好软件IPOP、用ENSP模拟一下华为交换机 启动交换机 <Huawei>sysEnter system view, return user view with Ctrl+Z.[Huawei]sysname FTPClient[FTPClient]interface vla...【详细内容】
2021-12-15  思源Edward    Tags:交换机   点击:(24)  评论:(0)  加入收藏
我们经常用到netstat命令查看主机连接状况,包括连接ip、端口、状态等,今天就练习下shell分析netsat结果。描述假设netstat命令运行的结果我们存储在nowcoder.txt里,格式如下:Pro...【详细内容】
2021-12-14  K佬食古    Tags:netstat   点击:(19)  评论:(0)  加入收藏
什么是滑动窗口?窗口是操作系统开辟的一块缓存空间,发送方在收到接收方ACK应答之前,必须在缓冲区保留已发送的数据,如果按期收到确认应答,数据就可以从缓冲区移除。什么是滑动窗...【详细内容】
2021-12-14  DifferentJava    Tags:TCP   点击:(30)  评论:(0)  加入收藏
概述日常管理华为路由设备过程中,难为会忘记设备登录密码,那么该如何重置设备登录密码吗?本期文章将全面向各位小伙伴总结分享。重置华为设备登录密码思路先行 采用console登录...【详细内容】
2021-12-10  onme0    Tags:   点击:(27)  评论:(0)  加入收藏
最新更新
栏目热门
栏目头条