博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Linux基础网络设置
阅读量:6035 次
发布时间:2019-06-20

本文共 2096 字,大约阅读时间需要 6 分钟。

查看Linux网络参数

  • ifconfig—-查看网络接口
> [root@localhost ~]# ifconfigeth1      Link encap:Ethernet  HWaddr 00:0C:29:33:4A:0C inet addr:192.168.4.115 Bcast:192.168.4.255 Mask:255.255.255.0 inet6 addr: fe80::20c:29ff:fe33:4a0c/64 Scope:Link UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:8133 errors:0 dropped:0 overruns:0 frame:0 TX packets:5861 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:818322 (799.1 KiB) TX bytes:835205 (815.6 KiB) lo Link encap:Local Loopback inet addr:127.0.0.1 Mask:255.0.0.0 inet6 addr: ::1/128 Scope:Host UP LOOPBACK RUNNING MTU:16436 Metric:1 RX packets:14 errors:0 dropped:0 overruns:0 frame:0 TX packets:14 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:0 RX bytes:946 (946.0 b) TX bytes:946 (946.0 b)
  • hostname—-查看主机名
[root@localhost ~]# hostnamelocalhost
  • route—-查看路由表
[root@localhost ~]# routeKernel IP routing tableDestination     Gateway         Genmask         Flags Metric Ref    Use Iface192.168.4.0 * 255.255.255.0 U 1 0 0 eth1 default localhost 0.0.0.0 UG 0 0 0 eth1
  • netstat—查看网络连接情况  -a 所有, -n 数字, -r路由表,-l监听,-t TCP, -u UDP, -p 进程号
[root@localhost ~]# netstat -antput Active Internet connections (servers and established) Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name tcp 0 0 0.0.0.0:875 0.0.0.0:* LISTEN 2262/rpc.rquotad tcp 0 0 0.0.0.0:111 0.0.0.0:* LISTEN 1963/rpcbind tcp 0 0 0.0.0.0:33073 0.0.0.0:* LISTEN - tcp 0 0 0.0.0.0:40337 0.0.0.0:* LISTEN 2266/rpc.mountd tcp 0 0 0.0.0.0:53586 0.0.0.0:* LISTEN 2010/rpc.statd tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 2345/sshd tcp 0 0 127.0.0.1:631 0.0.0.0:* LISTEN 2084/cupsd tcp 0 0 127.0.0.1:25 0.0.0.0:* LISTEN 2590/master tcp 0 0 0.0.0.0:35161 0.0.0.0:* LISTEN 2266/rpc.mountd tcp 0 0 0.0.0.0:2049 0.0.0.0:* LISTEN - tcp 0 0 0.0.0.0:42759 0.0.0.0:* LISTEN 2266/rpc.mountd tcp 0 0 0.0.0.0:3306 0.0.0.0:* LISTEN 3041/mysqld tcp 0 756 192.168.4.115:22 192.168.4.105:52347 ESTABLISHED 2788/sshd tcp 0 0 :::111 :::* LISTEN 1963/rpcbind tcp 0 0 :::53461 :::* LISTEN 2266/rpc.mountd tcp 0 0 :::22 :::* LISTEN 2345/sshd tcp 0 0 ::1:631 :::*

转载地址:http://culhx.baihongyu.com/

你可能感兴趣的文章
java程序:set改造成map
查看>>
C++ 排序函数 sort(),qsort()的使用方法
查看>>
OC语言Block和协议
查看>>
使用xpath时出现noDefClass的错误(找不到某个类)
查看>>
OutputCache祥解
查看>>
【推荐】最新国外免费空间网站Hostinger
查看>>
.Net规则引擎介绍 - REngine
查看>>
微信消息回复C#
查看>>
JVM学习03_new对象的内存图讲解,以及引出static方法(转)
查看>>
I深搜
查看>>
c++面向对象的编程
查看>>
ArcMap概化之消除真曲线
查看>>
[禅悟人生]谦虚有助于自我消融
查看>>
MFC之自绘控件
查看>>
算法提高 道路和航路 SPFA 算法
查看>>
Golang 如何从socket读出所有数据
查看>>
iOS开发使用半透明模糊效果方法整理
查看>>
一道图论小题目
查看>>
Hibernate拦截器(Interceptor)与事件监听器(Listener)
查看>>
关于android im
查看>>