linux(Ubuntu/Centos) iproute 路由IP地址等命令集合,查看端口链接
Centos 安装
yum install iproute iproute-doc
- 1
Ubuntu 安装
apt-get install iproute iproute-doc
- 1
风.fox
| 说明 | net-tools | iproute2 |
|---|---|---|
| 邻居 | arp -na arp |
ip neigh |
| 地址和链路配置 | ifconfig | ip link ip addr |
| 显示全部接口信息 显示IP |
ifconfig -a | ip addr show |
| 帮助 | ifconfig –help | ip help |
| 显示摘要信息 | ifconfig -s | ip -s link |
| 启动指定网络设备/网卡 | ifconfig eth0 up | ip link set eth0 up |
| 组播 | ipmaddr | ip maddr |
| ip隧道 | iptunnel | ip tunnel |
| 统计 | netstat | ss |
| 显示网络界面信息表单 | netstat -i | ip -s link |
| 显示多重广播功能群组组员名单 | netstat -g | ip maddr |
| 列出监听服务状态 | netstat -l | ss -l |
| 路由表 | netstat -r route |
ip route |
| 添加路由 | route add | ip route add |
| 删除路由 | route del | ip route del |
| 查看路由状态 | route -n | ip route show |
| 增删VLAN | vconfig | ip link |
显示当前监听端口
ss -pltn
- 1
以下全部是转载
ip地址管理
1.显示ip地址
ip a
ip address show
ip addr show dev eth0
ip a sh eth0
- 1
- 2
- 3
- 4
2.增加删除地址
ip address add 192.0.2.1/24 dev eth0
ip addr del 192.0.2.2/24 dev eth0
- 1
- 2
3.显示接口统计
ip -s link ls eth0
- 1
网卡和链路配置
4.显示链路
ip link show
ip link sh eth0
- 1
- 2
4.修改接口状态
ip link set eth0 up
ip link s gre01 down
- 1
- 2
路由表管理
5.显示路由表
ip route
ip ro show dev gre01
- 1
- 2
6.增加新路由
ip route add 10.2.2.128/27 dev gre01
- 1
7.增加默认路由
ip route add default via 192.168.1.1
- 1
8.修改默认路由
ip route chg default via 192.168.1.2
- 1
9.删除默认路由
ip route del default
- 1
隧道配置
10.增加删除GRE隧道
ip tunnel add gre01 mode gre local 10.1.1.1 remote 20.2.2.1 ttl 255
ip tunnel del gre01
- 1
- 2
11.IPIP隧道
ip tunl a ipip01 mode ipip local 10.1.1.1 remote 20.2.2.1 ttl 255
- 1
12.显示隧道
ip tunnel show
- 1
13.显示隧道统计
ip -s tunl ls gre01
- 1
邻居和arp表管理
13.查看arp表
ip neigh show
- 1
14.手工增加删除arp项
ip neighbor add 10.2.2.2 dev eth0
ip neigh del 10.2.2.1 dev eth0
- 1
- 2
socket统计
15.显示当前监听
ss -l
- 1
15.显示当前监听的进程
ss -p
- 1
查看端口链接
lsof -n -i4TCP:80 | grep LISTEN # Verified on macOS Sierra
lsof -n -iTCP:80 | grep LISTEN
lsof -n -i:80 | grep LISTEN
- 1
- 2
- 3
为了不显示端口的俗称,你可以加P参数:
lsof -nP -i4TCP:$PORT | grep LISTEN # Verified on macOS Sierra
lsof -nP -iTCP:$PORT | grep LISTEN
lsof -nP -i:$PORT | grep LISTEN
- 1
- 2
- 3
来自:
http://www.jianshu.com/p/125fbe9dc1d2
http://blog.csdn.net/kevin3101/article/details/52368860
http://linoxide.com/linux-command/use-ip-command-linux/
http://colobu.com/2017/07/11/show-connections-in-MACOS/
linux(Ubuntu/Centos) iproute 路由IP地址等命令集合,查看端口链接的更多相关文章
- Linux(CentOS)修改IP地址
登陆连接centos系统,输入 ifconfig 可以查看到当前本机的IP地址信息 一 临时修改IP地址: 1.假如查询IP为1.118,输入 ifconfig eth0 (默认是第一个网卡) 后面接 ...
- ubuntu 查本机 ip地址的命令是什么, 详细信息的?
使用ifconfig命令即可.你一敲进去都出来了
- 【liunx】使用xshell连接虚拟机上的CentOS 7,使用xhell连接本地虚拟机上的Ubuntu, 获取本地虚拟机中CentOS 7的IP地址,获取本地虚拟机中Ubuntu 的IP地址,Ubuntu开启22端口
注意,如果想用xshell去连接本地虚拟机中的linux系统,需要本地虚拟机中的系统是启动的才能连接!!!!! ============================================ ...
- Linux系统下如何设置IP地址?
Linux系统下如何设置IP地址?我们可以通过命令设定IP的方法,不过此方法的前提条件是用户需root权限.在linux系统的 /etc/sysconfig/network-script/ifcfg- ...
- ssh远程连接docker中linux(ubuntu/centos)
ssh远程连接docker中linux(ubuntu/centos) https://www.jianshu.com/p/9e4d50ddc57e centos docker pull centos: ...
- Ubuntu配置和修改IP地址
Ubuntu配置和修改IP地址 1.修改配置文件/etc/network/interfacesroot@ubuntu:~# sudo gedit /etc/network/interfaces 添加以 ...
- Linux环境下如何配置IP地址、MAC地址
Linux环境下如何配置IP地址.MAC地址 1.配置IP地址 进入配置IP地址路径,进行修改即可 cd /etc/network vim interface 加入以下内容: iface eth0 i ...
- Linux下获取本机IP地址的代码
Linux下获取本机IP地址的代码,返回值即为互联网标准点分格式的字符串. #define ETH_NAME "eth0" //获得本机IP地址 char* GetLocalAdd ...
- CentOS 修改固定IP地址
CentOS 修改固定IP地址 参考地址:https://www.cnblogs.com/technology-huangyan/p/9146699.htmlhttps://blog.csdn.net ...
随机推荐
- 040--JavaScript
一.JavaScript的两种引入方式 {#1 直接编写#} <script> alert('hello Galileo') </script> {#2 导入文件#} < ...
- ORACLE PL/SQL 实例精解之第三章 PL/SQL中的SQL
3.1 在PL/SQL中使用DML 在PL/SQL语块中,两种变量赋值a. := 初始化.b. select into语法,PL/SQL语块的声明部分被声明的变量,后期可以使用选择语句进行赋值. 3. ...
- K
https://codeforces.com/gym/101982/attachments K 打表暴力 /*#include<bits/stdc++.h> using namespace ...
- C++笔试题(七)
微软研究院是一个听起来就牛B的地方啊,反正我是进不去,不过不妨碍我看看他的笔试题到底是怎么样的.下面四道题就是微软研究院的笔试题目,题后附有我的解答.微软研究院(亚洲)的网址是:http://rese ...
- 安装 statconn 使R与c#交互
很久以前完成过,但是最近重新折腾发现全忘了,所以记下来. 1.安装 R 2.安装 R studio 3.去 http://rcom.univie.ac.at/download.html 下载 stat ...
- bzoj 1823: [JSOI2010]满汉全席【2-SAT+tarjan】
因为每种食材只有一份,所以两个评委的如果有要求同一种食材的两种做法就是不可行,用这个来建立2-SAT模型 然后跑tarjan判可行性即可 #include<iostream> #inclu ...
- BERT的几个可能的应用
BERT是谷歌公司于2018年11月发布的一款新模型,它一种预训练语言表示的方法,在大量文本语料(维基百科)上训练了一个通用的"语言理解"模型,然后用这个模型去执行想做的NLP ...
- 图论之最小生成树之Kruskal算法
Kruskal算法,又称作为加边法,是配合并查集实现的. 图示: 如图,这是一个带权值无向图我们要求它的最小生成树. 首先,我们发现在1的所有边上,连到3的边的边权值最小,所以加上这条边. 然后在3上 ...
- Nginx(四) nginx+consul+upasync 在ubnutu18带桌面系统 实现动态负载均衡
1.1 什么是动态负载均衡 传统的负载均衡,如果Upstream参数发生变化,每次都需要重新加载nginx.conf文件,因此扩展性不是很高,所以我们可以采用动态负载均衡,实现Upstream可配置化 ...
- 数据库sql 使用 lag 和OVER 函数和 like 使用 小技巧
1. sample 1: Lag()就是取当前顺序的上一行记录.结合over就是分组统计数据的.Lag()函数,就是去上N行的字段的数据. SQL> select * from x; A---- ...